mirror of
https://github.com/fmhy/edit.git
synced 2026-01-12 23:11:06 +11:00
Merge branch 'main' into main
This commit is contained in:
commit
b5c7eab95c
67 changed files with 10075 additions and 7267 deletions
8
.github/CONTRIBUTING.md
vendored
8
.github/CONTRIBUTING.md
vendored
|
|
@ -17,10 +17,10 @@ Here you'll find some general guidelines for those who would like to start contr
|
|||
|
||||
**Don't submit any of the following:**
|
||||
|
||||
- **💰️ Paid / Trial Sites** - We don't accept any paid or free trial only entries, with the exception of select paid [VPNs](/privacy#vpn) and [Debrid](/downloading#leeches-debrid).
|
||||
- **💰️ Paid / Trial Sites** - We don't accept any paid or free trial only entries, with the exception of select paid [VPNs](/privacy#vpn) and [Debrid](/downloading#debrid-leeches).
|
||||
- **🕹️ Emulators** - Already listed on [Index Sites](/gaming#emulators).
|
||||
- **🌐 Web Browsers** - Good open-source browsers are already listed, so we just accept [indexes](/internet-tools#browser-tools), privacy-focused, and good mobile ones.
|
||||
- **🔻 Leeches** - Unless it's not already listed on existing [Leech Lists](/downloading#leeches-debrid), don't submit these.
|
||||
- **🔻 Leeches** - Unless it's not already listed on existing [Leech Lists](/downloading#debrid-leeches), don't submit these.
|
||||
- **🐧 Linux Distros** - Already listed on [Index Sites](/linux-macos#linux-distros).
|
||||
- **🌍 Non-english Software** - We don't add non-english software sites (APKs, games, torrents, etc.) unless they have a very good reputation.
|
||||
- **🗂️ Coding Libraries** - There's too many of them and there are better places to find them.
|
||||
|
|
@ -33,7 +33,7 @@ Here you'll find some general guidelines for those who would like to start contr
|
|||
For submitting new links, follow these steps:
|
||||
|
||||
- Make sure it's not already in the wiki. The easiest way to do this is to check our [Single Page](https://api.fmhy.net/single-page) using `ctrl+f`.
|
||||
- Reach out via the feedback system, [GitHub](https://github.com/fmhy/edit), or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord).
|
||||
- Reach out via the feedback system, [GitHub](https://github.com/fmhy/edit), or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord). Note that we have to check sites ourselves, so using a issue, rather than pull request is easier.
|
||||
- You can optionally include socials, tools, or any other additional info alongside the entry.
|
||||
|
||||
### Reporting a Site
|
||||
|
|
@ -71,7 +71,7 @@ Instructions on various ways to edit the wiki and preview changes.
|
|||
|
||||
### GitHub Editor
|
||||
|
||||
You can use the build-in web editor in two ways:
|
||||
You can use the built-in web editor in two ways:
|
||||
|
||||
1. Find the file you want to edit, look for the edit icon (of a pencil) and click on it, then make your changes.
|
||||
|
||||
|
|
|
|||
2
.github/README.md
vendored
2
.github/README.md
vendored
|
|
@ -32,5 +32,5 @@ Here are a few ways you can get involved:
|
|||
## 🔔 Follow
|
||||
|
||||
<p>
|
||||
<a href="https://github.com/fmhy/FMHY/wiki/FMHY-Discord"><img width="30px" src="./assets/discord.svg" alt="Discord"></a> <a href="https://github.com/fmhy"><img width="30px" src="./assets/github.svg" alt="GitHub"></a> <a href="https://bsky.app/profile/fmhy.net"><img width="30px" src="./assets/bluesky.svg" alt="Bluesky"></a>
|
||||
<a href="https://github.com/fmhy/FMHY/wiki/FMHY-Discord"><img width="30px" src="./assets/discord.svg" alt="Discord"></a> <a href="https://github.com/fmhy"><img width="30px" src="./assets/github.svg" alt="GitHub"></a>
|
||||
</p>
|
||||
|
|
|
|||
29
.github/assets/nginx.conf
vendored
Normal file
29
.github/assets/nginx.conf
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
add_header X-Frame-Options "DENY";
|
||||
add_header X-Content-Type-Options "nosniff";
|
||||
add_header X-XSS-Protection "1; mode=block";
|
||||
add_header Referrer-Policy "no-referrer-when-downgrade";
|
||||
}
|
||||
|
||||
location ~* \.(?:css|js|jpg|jpeg|gif|png|svg|ico|woff2?)$ {
|
||||
expires 30d;
|
||||
add_header Cache-Control "public";
|
||||
}
|
||||
|
||||
error_log /var/log/nginx/error.log warn;
|
||||
access_log /var/log/nginx/access.log;
|
||||
}
|
||||
|
||||
gzip on;
|
||||
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
|
||||
gzip_min_length 1000;
|
||||
gzip_proxied any;
|
||||
gzip_vary on;
|
||||
|
|
@ -96,7 +96,7 @@ export default defineConfig({
|
|||
{
|
||||
find: /^.*VPSwitchAppearance\.vue$/,
|
||||
replacement: fileURLToPath(
|
||||
new URL('./theme/Appearance.vue', import.meta.url)
|
||||
new URL('./theme/components/ThemeDropdown.vue', import.meta.url)
|
||||
)
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -154,10 +154,6 @@ export const socialLinks: DefaultTheme.SocialLink[] = [
|
|||
{
|
||||
icon: 'reddit',
|
||||
link: 'https://reddit.com/r/FREEMEDIAHECKYEAH'
|
||||
},
|
||||
{
|
||||
icon: 'bluesky',
|
||||
link: 'https://bsky.app/profile/fmhy.net'
|
||||
}
|
||||
]
|
||||
|
||||
|
|
@ -165,26 +161,22 @@ export const nav: DefaultTheme.NavItem[] = [
|
|||
{ text: '📖 Glossary', link: 'https://rentry.org/The-Piracy-Glossary' },
|
||||
{
|
||||
text: '💾 Backups',
|
||||
link: 'https://github.com/fmhy/FMHY/wiki/Backups'
|
||||
link: '/other/backups'
|
||||
},
|
||||
{
|
||||
text: '🌱 Ecosystem',
|
||||
items: [
|
||||
{ text: '🌐 Search', link: '/posts/search' },
|
||||
{ text: '❓ FAQs', link: '/other/FAQ' },
|
||||
{ text: '🔖 Bookmarks', link: 'https://github.com/fmhy/bookmarks' },
|
||||
{ text: '✅ SafeGuard', link: 'https://github.com/fmhy/FMHY-SafeGuard' },
|
||||
{ text: '🚀 Startpage', link: 'https://fmhy.net/startpage' },
|
||||
{ text: '📋 snowbin', link: 'https://pastes.fmhy.net' },
|
||||
{
|
||||
text: '®️ Redlib',
|
||||
link: 'https://redlib.fmhy.net/r/FREEMEDIAHECKYEAH/wiki/index'
|
||||
},
|
||||
{ text: '🔎 SearXNG', link: 'https://searx.fmhy.net/' },
|
||||
{
|
||||
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://rentry.org/piracy'
|
||||
|
|
|
|||
|
|
@ -1,9 +1,12 @@
|
|||
<script setup lang="ts">
|
||||
import { useData } from 'vitepress'
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import Announcement from './components/Announcement.vue'
|
||||
import Sidebar from './components/SidebarCard.vue'
|
||||
import { useTheme } from './themes/themeHandler'
|
||||
|
||||
const { isDark } = useData()
|
||||
const { setMode } = useTheme()
|
||||
|
||||
const enableTransitions = () =>
|
||||
'startViewTransition' in document &&
|
||||
|
|
@ -12,6 +15,8 @@ const enableTransitions = () =>
|
|||
provide('toggle-appearance', async ({ clientX: x, clientY: y }: MouseEvent) => {
|
||||
if (!enableTransitions()) {
|
||||
isDark.value = !isDark.value
|
||||
// Sync with theme handler
|
||||
setMode(isDark.value ? 'dark' : 'light')
|
||||
return
|
||||
}
|
||||
|
||||
|
|
@ -26,6 +31,8 @@ provide('toggle-appearance', async ({ clientX: x, clientY: y }: MouseEvent) => {
|
|||
// @ts-expect-error
|
||||
await document.startViewTransition(async () => {
|
||||
isDark.value = !isDark.value
|
||||
// Sync with theme handler
|
||||
setMode(isDark.value ? 'dark' : 'light')
|
||||
await nextTick()
|
||||
}).ready
|
||||
|
||||
|
|
|
|||
|
|
@ -1,88 +1,262 @@
|
|||
<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
|
||||
import { useStorage } from '@vueuse/core'
|
||||
import { watch, onMounted, nextTick } from 'vue'
|
||||
import { useTheme } from '../themes/themeHandler'
|
||||
import { themeRegistry } from '../themes/configs'
|
||||
import type { Theme } from '../themes/types'
|
||||
import Switch from './Switch.vue'
|
||||
|
||||
type ColorNames = keyof typeof colors
|
||||
const selectedColor = useStorage<ColorNames>('preferred-color', 'swarm')
|
||||
|
||||
// Use the theme system
|
||||
const { amoledEnabled, setAmoledEnabled, setTheme, state, mode, themeName } = useTheme()
|
||||
|
||||
const colorOptions = Object.keys(colors).filter(
|
||||
(key) => typeof colors[key as keyof typeof colors] === 'object'
|
||||
) as Array<ColorNames>
|
||||
|
||||
const { css } = useStyleTag('', { id: 'brand-color' })
|
||||
// Preset themes (exclude dynamically generated color- themes)
|
||||
const presetThemeNames = Object.keys(themeRegistry).filter((k) => !k.startsWith('color-'))
|
||||
|
||||
const updateThemeColor = (colorName: ColorNames) => {
|
||||
const colorSet = colors[colorName]
|
||||
const getThemePreviewStyle = (name: string) => {
|
||||
const theme = themeRegistry[name]
|
||||
if (!theme) return {}
|
||||
const modeKey = (mode && (mode as any).value) ? (mode as any).value as keyof typeof theme.modes : 'light'
|
||||
const modeColors = theme.modes[modeKey]
|
||||
|
||||
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]};
|
||||
if (theme.preview) {
|
||||
// If preview is a URL or gradient, use it directly
|
||||
if (theme.preview.startsWith('http') || theme.preview.startsWith('data:')) {
|
||||
return { backgroundImage: `url(${theme.preview})`, backgroundSize: 'cover' }
|
||||
}
|
||||
return { background: theme.preview }
|
||||
}
|
||||
|
||||
.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]};
|
||||
if (modeColors?.brand && modeColors.brand[1] && modeColors.brand[2]) {
|
||||
return {
|
||||
background: `linear-gradient(135deg, ${modeColors.brand[1]} 0%, ${modeColors.brand[2]} 100%)`
|
||||
}
|
||||
`
|
||||
}
|
||||
|
||||
// Fallback to CSS var brand if present
|
||||
return { background: 'var(--vp-c-brand-1)' }
|
||||
}
|
||||
|
||||
// Initialize theme color
|
||||
updateThemeColor(selectedColor.value)
|
||||
const generateThemeFromColor = (colorName: ColorNames): Theme => {
|
||||
const colorSet = colors[colorName]
|
||||
|
||||
watch(selectedColor, updateThemeColor)
|
||||
return {
|
||||
name: `color-${colorName}`,
|
||||
displayName: normalizeColorName(colorName),
|
||||
modes: {
|
||||
light: {
|
||||
brand: {
|
||||
1: colorSet[500],
|
||||
2: colorSet[600],
|
||||
3: colorSet[800],
|
||||
soft: colorSet[400]
|
||||
},
|
||||
bg: '#f8fafc',
|
||||
bgAlt: '#eef2f5',
|
||||
bgElv: 'rgba(255, 255, 255, 0.8)',
|
||||
bgMark: 'rgb(226, 232, 240)',
|
||||
text: {
|
||||
1: '#0f172a',
|
||||
2: '#334155',
|
||||
3: '#64748b'
|
||||
},
|
||||
button: {
|
||||
brand: {
|
||||
bg: colorSet[500],
|
||||
border: colorSet[400],
|
||||
text: 'rgba(255, 255, 255)',
|
||||
hoverBorder: colorSet[400],
|
||||
hoverText: 'rgba(255, 255, 255)',
|
||||
hoverBg: colorSet[400],
|
||||
activeBorder: colorSet[400],
|
||||
activeText: 'rgba(255, 255, 255)',
|
||||
activeBg: colorSet[500]
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: `${colorSet[100]}`,
|
||||
border: `${colorSet[800]}`,
|
||||
text: `${colorSet[800]}`,
|
||||
textDeep: `${colorSet[900]}`
|
||||
},
|
||||
tip: {
|
||||
bg: '#D8F8E4',
|
||||
border: '#447A61',
|
||||
text: '#2D6A58',
|
||||
textDeep: '#166534'
|
||||
},
|
||||
warning: {
|
||||
bg: '#FCEFC3',
|
||||
border: '#9A8034',
|
||||
text: '#9C701B',
|
||||
textDeep: '#92400e'
|
||||
},
|
||||
danger: {
|
||||
bg: '#FBE1E2',
|
||||
border: '#B3565E',
|
||||
text: '#912239',
|
||||
textDeep: '#991b1b'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: colorSet[200]
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: `-webkit-linear-gradient(120deg, ${colorSet[400]} 30%, ${colorSet[500]})`,
|
||||
heroImageBackground: `linear-gradient(-45deg, ${colorSet[400]} 50%, ${colorSet[500]} 50%)`,
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
brand: {
|
||||
1: colorSet[400],
|
||||
2: colorSet[500],
|
||||
3: colorSet[600],
|
||||
soft: colorSet[300]
|
||||
},
|
||||
bg: '#1A1A1A',
|
||||
bgAlt: '#171717',
|
||||
bgElv: '#1a1a1acc',
|
||||
button: {
|
||||
brand: {
|
||||
bg: colorSet[400],
|
||||
border: colorSet[300],
|
||||
text: 'rgba(15, 23, 42)',
|
||||
hoverBorder: colorSet[300],
|
||||
hoverText: 'rgba(15, 23, 42)',
|
||||
hoverBg: colorSet[300],
|
||||
activeBorder: colorSet[300],
|
||||
activeText: 'rgba(15, 23, 42)',
|
||||
activeBg: colorSet[400]
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: `${colorSet[950]}`,
|
||||
border: `${colorSet[700]}`,
|
||||
text: `${colorSet[200]}`,
|
||||
textDeep: `${colorSet[200]}`
|
||||
},
|
||||
tip: {
|
||||
bg: '#0C2A20',
|
||||
border: '#184633',
|
||||
text: '#B0EBC9',
|
||||
textDeep: '#166534'
|
||||
},
|
||||
warning: {
|
||||
bg: '#403207',
|
||||
border: '#7E6211',
|
||||
text: '#F9DE88',
|
||||
textDeep: '#92400e'
|
||||
},
|
||||
danger: {
|
||||
bg: '#3F060A',
|
||||
border: '#7C0F18',
|
||||
text: '#F7C1BC',
|
||||
textDeep: '#991b1b'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: colorSet[800]
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: `-webkit-linear-gradient(120deg, ${colorSet[400]} 30%, ${colorSet[500]})`,
|
||||
heroImageBackground: `linear-gradient(-45deg, ${colorSet[400]} 50%, ${colorSet[500]} 50%)`,
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const normalizeColorName = (colorName: string) =>
|
||||
colorName.replaceAll(/-/g, ' ').charAt(0).toUpperCase() +
|
||||
colorName.slice(1).replaceAll(/-/g, ' ')
|
||||
|
||||
onMounted(async () => {
|
||||
// Don't auto-apply color theme - only apply when user explicitly selects
|
||||
// Wait for next tick to ensure theme handler is fully initialized
|
||||
await nextTick()
|
||||
})
|
||||
|
||||
watch(selectedColor, async (color) => {
|
||||
const theme = generateThemeFromColor(color)
|
||||
themeRegistry[`color-${color}`] = theme
|
||||
// Explicitly set the theme to override any previous selection
|
||||
await nextTick()
|
||||
console.log('Setting theme to:', `color-${color}`)
|
||||
console.log('Current themeName:', themeName ? themeName.value : undefined, 'mode:', mode ? (mode as any).value : undefined)
|
||||
setTheme(`color-${color}`)
|
||||
console.log('After setTheme, themeName:', themeName ? themeName.value : undefined)
|
||||
})
|
||||
|
||||
const toggleAmoled = () => {
|
||||
setAmoledEnabled(!amoledEnabled.value)
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<!-- Color picker generated themes (render first) -->
|
||||
<div v-for="color in colorOptions" :key="color">
|
||||
<button
|
||||
:class="[
|
||||
'inline-block w-6 h-6 rounded-full transition-all duration-200'
|
||||
'inline-block w-6 h-6 rounded-full transition-all duration-200 border-2',
|
||||
selectedColor === color
|
||||
? 'border-slate-200 dark:border-slate-400 shadow-lg'
|
||||
: 'border-transparent'
|
||||
]"
|
||||
@click="selectedColor = color"
|
||||
:title="normalizeColorName(color)"
|
||||
>
|
||||
<span
|
||||
class="inline-block w-6 h-6 rounded-full"
|
||||
:style="{ backgroundColor: colors[color][500] }"
|
||||
/>
|
||||
class="inline-block w-full h-full rounded-full"
|
||||
:style="{ backgroundColor: colors[color][500], backgroundSize: 'cover', backgroundPosition: 'center', backgroundRepeat: 'no-repeat' }"
|
||||
></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Preset themes (render at the end) -->
|
||||
<div v-for="t in presetThemeNames" :key="t">
|
||||
<button
|
||||
:class="[
|
||||
'inline-block w-6 h-6 rounded-full transition-all duration-200 border-2',
|
||||
(themeName && themeName.value === t)
|
||||
? 'border-slate-200 dark:border-slate-400 shadow-lg'
|
||||
: 'border-transparent'
|
||||
]"
|
||||
@click="setTheme(t)"
|
||||
:title="themeRegistry[t].displayName"
|
||||
>
|
||||
<span
|
||||
class="inline-block w-full h-full rounded-full"
|
||||
:style="Object.assign({ backgroundSize: 'cover', backgroundPosition: 'center', backgroundRepeat: 'no-repeat' }, getThemePreviewStyle(t))"
|
||||
></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-2 text-sm text-$vp-c-text-2">
|
||||
Selected: {{ normalizeColorName(selectedColor) }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -145,36 +145,28 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
</template>
|
||||
<template v-else>
|
||||
<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"
|
||||
class="mt-2 p-4 border-2 border-solid bg-$vp-c-bg-alt border-$vp-c-divider rounded-xl col-span-3 transition-colors duration-250"
|
||||
>
|
||||
<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"
|
||||
>
|
||||
<div class="w-10 h-10 rounded-full flex items-center justify-center bg-$vp-c-brand-3">
|
||||
<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`
|
||||
? `i-lucide:mail w-6 h-6 text-$vp-c-text-1`
|
||||
: `i-lucide:mail-x w-6 h-6 text-$vp-c-text-1`
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="flex-grow flex items-start md:items-center gap-3 flex-col md:flex-row"
|
||||
>
|
||||
<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 class="font-semibold text-$vp-c-text-1">Got feedback?</div>
|
||||
<div class="text-sm text-$vp-c-text-2">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"
|
||||
class="inline-block text-center rounded-full px-4 py-2.5 text-sm font-medium border-2 border-solid text-$vp-c-text-1 border-$vp-c-divider"
|
||||
@click="toggleCard()"
|
||||
>
|
||||
Share Feedback
|
||||
|
|
@ -199,7 +191,7 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
<button
|
||||
v-for="item in feedbackOptions"
|
||||
:key="item.value"
|
||||
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"
|
||||
class="bg-$vp-c-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>
|
||||
|
|
@ -240,9 +232,10 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
</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"
|
||||
class="btn btn-primary"
|
||||
:disabled="isDisabled"
|
||||
@click="handleSubmit()"
|
||||
:style="isDisabled ? {} : { 'background-color': 'var(--vp-button-brand-bg)', 'border-color': 'var(--vp-button-brand-border)', color: 'var(--vp-button-brand-text)' }"
|
||||
>
|
||||
Send Feedback 📩
|
||||
</button>
|
||||
|
|
@ -284,14 +277,14 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
}
|
||||
|
||||
.btn-primary {
|
||||
color: #fff;
|
||||
background-color: var(--vp-c-brand);
|
||||
border-color: var(--vp-c-brand);
|
||||
color: var(--vp-button-brand-text);
|
||||
background-color: var(--vp-button-brand-bg);
|
||||
border-color: var(--vp-button-brand-border);
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: var(--vp-c-brand-darker);
|
||||
border-color: var(--vp-c-brand-darker);
|
||||
background-color: var(--vp-button-brand-hover-bg);
|
||||
border-color: var(--vp-button-brand-hover-border);
|
||||
}
|
||||
|
||||
.heading {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
<script setup lang="ts">
|
||||
import Field from './CardField.vue'
|
||||
import ColorPicker from './ColorPicker.vue'
|
||||
import ThemeSelector from './ThemeSelector.vue'
|
||||
import InputField from './InputField.vue'
|
||||
import ToggleStarred from './ToggleStarred.vue'
|
||||
</script>
|
||||
|
|
@ -26,6 +27,12 @@ import ToggleStarred from './ToggleStarred.vue'
|
|||
</template>
|
||||
</InputField>
|
||||
|
||||
<ColorPicker />
|
||||
<div class="mt-4">
|
||||
<ColorPicker />
|
||||
</div>
|
||||
|
||||
<div class="mt-6 pt-6 border-t border-$vp-c-divider">
|
||||
<ThemeSelector />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
184
docs/.vitepress/theme/components/ThemeDropdown.vue
Normal file
184
docs/.vitepress/theme/components/ThemeDropdown.vue
Normal file
|
|
@ -0,0 +1,184 @@
|
|||
<script setup lang="ts">
|
||||
import { ref, computed, onMounted, onUnmounted } from 'vue'
|
||||
import { useTheme } from '../themes/themeHandler'
|
||||
import type { DisplayMode } from '../themes/types'
|
||||
|
||||
const { mode, setMode, state, amoledEnabled, setAmoledEnabled } = useTheme()
|
||||
|
||||
const isOpen = ref(false)
|
||||
const dropdownRef = ref<HTMLElement | null>(null)
|
||||
|
||||
interface ModeChoice {
|
||||
mode: DisplayMode
|
||||
label: string
|
||||
icon: string
|
||||
isAmoled?: boolean
|
||||
}
|
||||
|
||||
const modeChoices: ModeChoice[] = [
|
||||
{ mode: 'light', label: 'Light', icon: 'i-ph-sun-duotone' },
|
||||
{ mode: 'dark', label: 'Dark', icon: 'i-ph-moon-duotone' },
|
||||
{ mode: 'dark', label: 'AMOLED', icon: 'i-ph-moon-stars-duotone', isAmoled: true }
|
||||
]
|
||||
|
||||
const currentChoice = computed(() => {
|
||||
const current = (mode && (mode as any).value) ? (mode as any).value : 'light'
|
||||
if (current === 'dark' && amoledEnabled.value) {
|
||||
return modeChoices[2] // AMOLED option
|
||||
}
|
||||
return modeChoices.find(choice => choice.mode === current && !choice.isAmoled) || modeChoices[0]
|
||||
})
|
||||
|
||||
const toggleDropdown = () => {
|
||||
isOpen.value = !isOpen.value
|
||||
}
|
||||
|
||||
const selectMode = (choice: ModeChoice) => {
|
||||
if (choice.isAmoled) {
|
||||
setMode('dark')
|
||||
setAmoledEnabled(true)
|
||||
} else {
|
||||
setMode(choice.mode)
|
||||
setAmoledEnabled(false)
|
||||
}
|
||||
isOpen.value = false
|
||||
}
|
||||
|
||||
const isActiveChoice = (choice: ModeChoice) => {
|
||||
const current = (mode && (mode as any).value) ? (mode as any).value : 'light'
|
||||
if (choice.isAmoled) {
|
||||
return current === 'dark' && amoledEnabled.value
|
||||
}
|
||||
return choice.mode === current && !choice.isAmoled && !amoledEnabled.value
|
||||
}
|
||||
|
||||
const handleClickOutside = (event: MouseEvent) => {
|
||||
if (dropdownRef.value && !dropdownRef.value.contains(event.target as Node)) {
|
||||
isOpen.value = false
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
document.addEventListener('click', handleClickOutside)
|
||||
})
|
||||
|
||||
onUnmounted(() => {
|
||||
document.removeEventListener('click', handleClickOutside)
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div ref="dropdownRef" class="theme-dropdown">
|
||||
<button
|
||||
type="button"
|
||||
class="theme-dropdown-toggle"
|
||||
:title="currentChoice.label"
|
||||
@click="toggleDropdown"
|
||||
>
|
||||
<ClientOnly>
|
||||
<div :class="[currentChoice.icon, 'text-xl']" />
|
||||
</ClientOnly>
|
||||
</button>
|
||||
|
||||
<Transition name="dropdown">
|
||||
<div v-if="isOpen" class="theme-dropdown-menu">
|
||||
<button
|
||||
v-for="(choice, index) in modeChoices"
|
||||
:key="index"
|
||||
class="theme-dropdown-item"
|
||||
:class="{ active: isActiveChoice(choice) }"
|
||||
@click="selectMode(choice)"
|
||||
>
|
||||
<div :class="[choice.icon, 'text-lg']" />
|
||||
<span>{{ choice.label }}</span>
|
||||
<div v-if="isActiveChoice(choice)" class="i-ph-check text-lg ml-auto" />
|
||||
</button>
|
||||
</div>
|
||||
</Transition>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.theme-dropdown {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.theme-dropdown-toggle {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
color: var(--vp-c-text-2);
|
||||
transition: color 0.5s;
|
||||
background: transparent;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
border-radius: 8px;
|
||||
|
||||
&:hover {
|
||||
color: var(--vp-c-text-1);
|
||||
background: var(--vp-c-bg-elv);
|
||||
transition: color 0.25s, background 0.25s;
|
||||
}
|
||||
}
|
||||
|
||||
.theme-dropdown-menu {
|
||||
position: absolute;
|
||||
top: calc(100% + 8px);
|
||||
right: 0;
|
||||
min-width: 180px;
|
||||
background: var(--vp-c-bg-elv);
|
||||
border: 1px solid var(--vp-c-divider);
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
||||
padding: 6px;
|
||||
z-index: 1000;
|
||||
backdrop-filter: blur(12px);
|
||||
|
||||
.dark & {
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
.theme-dropdown-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
width: 100%;
|
||||
padding: 8px 12px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
color: var(--vp-c-text-1);
|
||||
cursor: pointer;
|
||||
transition: background 0.2s;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
|
||||
&:hover {
|
||||
background: var(--vp-c-bg);
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: var(--vp-c-brand-1);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
span {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-enter-active,
|
||||
.dropdown-leave-active {
|
||||
transition: opacity 0.15s ease, transform 0.15s ease;
|
||||
}
|
||||
|
||||
.dropdown-enter-from,
|
||||
.dropdown-leave-to {
|
||||
opacity: 0;
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
</style>
|
||||
48
docs/.vitepress/theme/components/ThemeSelector.vue
Normal file
48
docs/.vitepress/theme/components/ThemeSelector.vue
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<script setup lang="ts">
|
||||
import { computed } from 'vue'
|
||||
import { useTheme } from '../themes/themeHandler'
|
||||
import { themeRegistry } from '../themes/configs'
|
||||
|
||||
const { themeName, setTheme, getAvailableThemes, state, mode } = useTheme()
|
||||
|
||||
const availableThemes = computed(() => getAvailableThemes())
|
||||
|
||||
const getThemePreview = (name: string) => {
|
||||
const theme = themeRegistry[name]
|
||||
if (theme?.preview) {
|
||||
return theme.preview
|
||||
}
|
||||
// Fallback: create gradient from theme's brand colors if they exist
|
||||
const modeKey = (mode && (mode as any).value) ? (mode as any).value : 'light'
|
||||
const colors = modeKey === 'dark' ? theme?.modes.dark : theme?.modes.light
|
||||
|
||||
if (colors?.brand && colors.brand[1] && colors.brand[2] && colors.brand[3]) {
|
||||
return `linear-gradient(135deg, ${colors.brand[1]} 0%, ${colors.brand[2]} 50%, ${colors.brand[3]} 100%)`
|
||||
}
|
||||
|
||||
return 'linear-gradient(135deg, var(--vp-c-brand-1) 0%, var(--vp-c-brand-2) 100%)'
|
||||
}
|
||||
|
||||
const normalizeThemeName = (name: string) =>
|
||||
name.replaceAll(/-/g, ' ').charAt(0).toUpperCase() +
|
||||
name.slice(1).replaceAll(/-/g, ' ')
|
||||
|
||||
const currentDisplayName = computed(() => {
|
||||
const t = themeName && (themeName as any).value ? (themeName as any).value : ''
|
||||
if (!t) return 'Default'
|
||||
const cfg = themeRegistry[t]
|
||||
if (cfg && cfg.displayName) return cfg.displayName
|
||||
// fallback: humanize the key
|
||||
return normalizeThemeName(t)
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="mb-2 text-sm text-$vp-c-text-1">Theme</div>
|
||||
<div class="text-sm text-$vp-c-text-2">
|
||||
<span class="font-medium">Theme:</span>
|
||||
<span class="ml-1">{{ currentDisplayName }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
@ -18,6 +18,7 @@ import type { Theme } from 'vitepress'
|
|||
import Components from '@fmhy/components'
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import { loadProgress } from './composables/nprogress'
|
||||
import { useThemeHandler } from './themes/themeHandler'
|
||||
import Layout from './Layout.vue'
|
||||
import Post from './PostLayout.vue'
|
||||
|
||||
|
|
@ -34,5 +35,7 @@ export default {
|
|||
app.component('Post', Post)
|
||||
app.component('Feedback', Feedback)
|
||||
loadProgress(router)
|
||||
// Initialize theme handler
|
||||
useThemeHandler()
|
||||
}
|
||||
} satisfies Theme
|
||||
|
|
|
|||
109
docs/.vitepress/theme/themes/README.md
Normal file
109
docs/.vitepress/theme/themes/README.md
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
# Theme System
|
||||
|
||||
This document explains the updated theme architecture, display modes, and integration components in the site.
|
||||
|
||||
## Architecture
|
||||
|
||||
- Display modes: `light` and `dark`.
|
||||
- AMOLED: an enhancement of `dark` mode (pure black backgrounds) toggled on top of dark — not a separate mode.
|
||||
- Themes: color schemes and optional design tokens that apply across modes.
|
||||
- Modes are independent from themes; themes define colors and tokens for light/dark.
|
||||
|
||||
## File Structure
|
||||
|
||||
```
|
||||
docs/.vitepress/theme/themes/
|
||||
├── types.ts // Type definitions
|
||||
├── themeHandler.ts // Theme handler logic & DOM/CSS application
|
||||
├── index.ts // Exports
|
||||
└── configs/
|
||||
├── index.ts // Theme registry (default + named themes)
|
||||
└── catppuccin.ts // Example theme (default)
|
||||
```
|
||||
|
||||
## Core Types
|
||||
|
||||
- `DisplayMode`: `'light' | 'dark'`.
|
||||
- `Theme`: `{ name, displayName, preview?, logo?, modes: { light, dark }, ... }`.
|
||||
- `ModeColors`:
|
||||
- `brand?`: optional brand colors (`1`, `2`, `3`, `soft`). If omitted, the ColorPicker controls brand.
|
||||
- `bg`, `bgAlt`, `bgElv`, `bgMark?`.
|
||||
- `text?`: optional (`1`, `2`, `3`). If omitted, VitePress defaults are used.
|
||||
- `button`: `brand` and `alt` sub-objects with `bg`, `border`, `text`, `hover*`, `active*`.
|
||||
- `customBlock`: `info`, `tip`, `warning`, `danger` with `bg`, `border`, `text`, `textDeep`.
|
||||
- `selection`: `{ bg }`.
|
||||
- `home?`: optional hero styles.
|
||||
|
||||
## Handler Behavior (`themeHandler.ts`)
|
||||
|
||||
- Persists `theme` (`vitepress-theme-name`) and `mode` (`vitepress-display-mode`).
|
||||
- Applies HTML classes: always the current mode; adds `dark` for compatibility; adds `amoled` when dark + AMOLED enabled.
|
||||
- AMOLED handling: overrides dark backgrounds to pure black while retaining other dark tokens.
|
||||
- Brand colors:
|
||||
- If theme provides brand colors, inline CSS variables are set.
|
||||
- If theme omits brand colors, inline brand variables are removed so the ColorPicker stylesheet takes effect.
|
||||
- Text colors:
|
||||
- Applied only if defined in the theme; otherwise defaults are used.
|
||||
- Custom logo:
|
||||
- If theme provides `logo`, sets `--vp-theme-logo: url(...)` for downstream usage.
|
||||
|
||||
## UI Components
|
||||
|
||||
- `ThemeDropdown.vue`: replaces the appearance toggle.
|
||||
- Options: Light, Dark, AMOLED (as dark variant).
|
||||
- Stores/reads mode and AMOLED-enabled state.
|
||||
- Aliased via `docs/.vitepress/config.mts` to override `VPSwitchAppearance.vue`.
|
||||
- `ColorPicker.vue`:
|
||||
- Controls brand color CSS variables via a stylesheet tag (`#brand-color`).
|
||||
- Reapplies colors on a custom event `theme-changed-apply-colors` when switching to themes without brand.
|
||||
- `ThemeSelector.vue`:
|
||||
- Shows circular previews per theme (image via `preview` or gradient fallback).
|
||||
- Calls `setTheme(name)`; independent from ColorPicker.
|
||||
|
||||
## Theme Registry (`configs/index.ts`)
|
||||
|
||||
- Example:
|
||||
```ts
|
||||
import { catppuccinTheme } from './catppuccin'
|
||||
|
||||
export const themeRegistry = {
|
||||
default: catppuccinTheme,
|
||||
catppuccin: catppuccinTheme
|
||||
}
|
||||
```
|
||||
|
||||
## Creating a Theme (`configs/<name>.ts`)
|
||||
|
||||
- Export a `Theme` object with:
|
||||
- `name`, `displayName`, optional `preview` (image URL/data) and `logo`.
|
||||
- `modes.light` and `modes.dark` objects.
|
||||
- Optional `fonts`, `spacing`, `borderRadius`, `customProperties`.
|
||||
- Register it in `configs/index.ts`.
|
||||
- If you omit `brand` in a mode, the ColorPicker-selected brand colors will be used.
|
||||
- If you omit `text` in a mode, VitePress default text colors will be used.
|
||||
|
||||
## CSS Variables
|
||||
|
||||
- Brand: `--vp-c-brand-1`, `--vp-c-brand-2`, `--vp-c-brand-3`, `--vp-c-brand-soft`.
|
||||
- Background: `--vp-c-bg`, `--vp-c-bg-alt`, `--vp-c-bg-elv`, `--vp-c-bg-mark`.
|
||||
- Text: `--vp-c-text-1`, `--vp-c-text-2`, `--vp-c-text-3`.
|
||||
- Buttons: `--vp-button-brand-*`, `--vp-button-alt-*`.
|
||||
- Custom blocks: `--vp-custom-block-{type}-*`.
|
||||
- Selection: `--vp-c-selection-bg`.
|
||||
- Home hero: `--vp-home-hero-*`.
|
||||
- Custom props: all keys in `customProperties`.
|
||||
- Optional: `--vp-theme-logo` (when theme defines `logo`).
|
||||
|
||||
## Migration Notes
|
||||
|
||||
- AMOLED is no longer a separate mode; it’s a dark enhancement (pure black backgrounds) toggled in the dropdown.
|
||||
- The legacy `Appearance.vue` toggle is replaced by `ThemeDropdown.vue` via alias in `config.mts`.
|
||||
- Themes can rely on the ColorPicker for brand colors by omitting `brand`.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
- Theme not applying: ensure it’s added to `themeRegistry` and named correctly.
|
||||
- Brand not changing: if a theme sets inline brand variables, ColorPicker won’t override; remove `brand` from the theme to defer to ColorPicker.
|
||||
- Colors not updating after theme switch: ColorPicker listens for `theme-changed-apply-colors`; make sure that event dispatch remains in `setTheme()`.
|
||||
- AMOLED not pure black: confirm dark mode is active and AMOLED toggle is enabled; handler overrides backgrounds when enabled.
|
||||
|
||||
161
docs/.vitepress/theme/themes/configs/catppuccin.ts
Normal file
161
docs/.vitepress/theme/themes/configs/catppuccin.ts
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
/**
|
||||
* 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.
|
||||
*/
|
||||
|
||||
import type { Theme } from '../types'
|
||||
|
||||
export const catppuccinTheme: Theme = {
|
||||
name: 'catppuccin',
|
||||
displayName: 'Catppuccin',
|
||||
preview: 'https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x1544_circle.png',
|
||||
modes: {
|
||||
light: {
|
||||
brand: {
|
||||
1: '#8b5cf6',
|
||||
2: '#7c3aed',
|
||||
3: '#5b21b6',
|
||||
soft: '#a78bfa'
|
||||
},
|
||||
bg: '#ffffff',
|
||||
bgAlt: '#f9fafb',
|
||||
bgElv: 'rgba(255, 255, 255, 0.7)',
|
||||
bgMark: 'rgb(232, 232, 232)',
|
||||
text: {
|
||||
1: '#1f2937',
|
||||
2: '#4b5563',
|
||||
3: '#6b7280'
|
||||
},
|
||||
button: {
|
||||
brand: {
|
||||
bg: '#8b5cf6',
|
||||
border: '#a78bfa',
|
||||
text: 'rgba(42, 40, 47)',
|
||||
hoverBorder: '#a78bfa',
|
||||
hoverText: 'rgba(42, 40, 47)',
|
||||
hoverBg: '#a78bfa',
|
||||
activeBorder: '#a78bfa',
|
||||
activeText: 'rgba(42, 40, 47)',
|
||||
activeBg: '#8b5cf6'
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: '#ede9fe',
|
||||
border: '#5b21b6',
|
||||
text: '#5b21b6',
|
||||
textDeep: '#4c1d95'
|
||||
},
|
||||
tip: {
|
||||
bg: '#d1fae5',
|
||||
border: '#065f46',
|
||||
text: '#065f46',
|
||||
textDeep: '#064e3b'
|
||||
},
|
||||
warning: {
|
||||
bg: '#fef3c7',
|
||||
border: '#92400e',
|
||||
text: '#92400e',
|
||||
textDeep: '#78350f'
|
||||
},
|
||||
danger: {
|
||||
bg: '#ffe4e6',
|
||||
border: '#9f1239',
|
||||
text: '#9f1239',
|
||||
textDeep: '#881337'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: '#5586a6'
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: '-webkit-linear-gradient(120deg, #c4b5fd 30%, #7bc5e4)',
|
||||
heroImageBackground: 'linear-gradient(-45deg, #c4b5fd 50%, #47caff 50%)',
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
brand: {
|
||||
1: '#a78bfa',
|
||||
2: '#8b5cf6',
|
||||
3: '#6d28d9',
|
||||
soft: '#c4b5fd'
|
||||
},
|
||||
bg: 'rgb(26, 26, 26)',
|
||||
bgAlt: 'rgb(23, 23, 23)',
|
||||
bgElv: 'rgba(23, 23, 23, 0.8)',
|
||||
button: {
|
||||
brand: {
|
||||
bg: '#a78bfa',
|
||||
border: '#c4b5fd',
|
||||
text: 'rgba(42, 40, 47)',
|
||||
hoverBorder: '#c4b5fd',
|
||||
hoverText: 'rgba(42, 40, 47)',
|
||||
hoverBg: '#c4b5fd',
|
||||
activeBorder: '#c4b5fd',
|
||||
activeText: 'rgba(42, 40, 47)',
|
||||
activeBg: '#a78bfa'
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: '#2e1065',
|
||||
border: '#5b21b6',
|
||||
text: '#ddd6fe',
|
||||
textDeep: '#ddd6fe'
|
||||
},
|
||||
tip: {
|
||||
bg: '#022c22',
|
||||
border: '#065f46',
|
||||
text: '#a7f3d0',
|
||||
textDeep: '#a7f3d0'
|
||||
},
|
||||
warning: {
|
||||
bg: '#451a03',
|
||||
border: '#92400e',
|
||||
text: '#fef08a',
|
||||
textDeep: '#fef08a'
|
||||
},
|
||||
danger: {
|
||||
bg: '#4c0519',
|
||||
border: '#9f1239',
|
||||
text: '#fecdd3',
|
||||
textDeep: '#fecdd3'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: '#0f2c47'
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: '-webkit-linear-gradient(120deg, #c4b5fd 30%, #7bc5e4)',
|
||||
heroImageBackground: 'linear-gradient(-45deg, #c4b5fd 50%, #47caff 50%)',
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
161
docs/.vitepress/theme/themes/configs/christmas.ts
Normal file
161
docs/.vitepress/theme/themes/configs/christmas.ts
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
/**
|
||||
* 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.
|
||||
*/
|
||||
|
||||
import type { Theme } from '../types'
|
||||
|
||||
export const christmasTheme: Theme = {
|
||||
name: 'Christmas',
|
||||
displayName: 'Christmas',
|
||||
preview: 'https://raw.githubusercontent.com/SamidyFR/edit/refs/heads/main/docs/.vitepress/theme/themes/configs/christmas_tree.png',
|
||||
modes: {
|
||||
light: {
|
||||
brand: {
|
||||
1: '#BD2F2F',
|
||||
2: '#22ff00ff',
|
||||
3: '#155C2F',
|
||||
soft: '#a200ffff'
|
||||
},
|
||||
bg: '#ffffffff',
|
||||
bgAlt: '#f9fafb',
|
||||
bgElv: 'rgba(255, 255, 255, 0.7)',
|
||||
bgMark: 'rgb(232, 232, 232)',
|
||||
text: {
|
||||
1: '#1f2937',
|
||||
2: '#4b5563',
|
||||
3: '#353638ff'
|
||||
},
|
||||
button: {
|
||||
brand: {
|
||||
bg: '#155C2F',
|
||||
border: '#0E3B1F',
|
||||
text: 'rgba(255, 255, 255)',
|
||||
hoverBorder: '#072a15ff',
|
||||
hoverText: 'rgba(255, 255, 255)',
|
||||
hoverBg: '#072a15ff',
|
||||
activeBorder: '#072a15ff',
|
||||
activeText: 'rgba(255, 255, 255)',
|
||||
activeBg: '#072a15ff'
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: '#dbeafe',
|
||||
border: '#1e40af',
|
||||
text: '#1e40af',
|
||||
textDeep: '#1e3a8a'
|
||||
},
|
||||
tip: {
|
||||
bg: '#D8F8E4',
|
||||
border: '#447A61',
|
||||
text: '#2D6A58',
|
||||
textDeep: '#166534'
|
||||
},
|
||||
warning: {
|
||||
bg: '#FCEFC3',
|
||||
border: '#9A8034',
|
||||
text: '#9C701B',
|
||||
textDeep: '#92400e'
|
||||
},
|
||||
danger: {
|
||||
bg: '#FBE1E2',
|
||||
border: '#B3565E',
|
||||
text: '#912239',
|
||||
textDeep: '#991b1b'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: '#bfdbfe'
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: '-webkit-linear-gradient(120deg, #BD2F2F 30%, #f9fafb)',
|
||||
heroImageBackground: 'linear-gradient(-45deg, #BD2F2F 50%, #f9fafb 50%)',
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
brand: {
|
||||
1: '#2CA03C',
|
||||
2: '#22ff00ff',
|
||||
3: '#5C151A',
|
||||
soft: '#a200ffff'
|
||||
},
|
||||
bg: 'rgb(26, 26, 26)',
|
||||
bgAlt: 'rgb(23, 23, 23)',
|
||||
bgElv: 'rgba(23, 23, 23, 0.8)',
|
||||
button: {
|
||||
brand: {
|
||||
bg: '#155C2F',
|
||||
border: '#0E3B1F',
|
||||
text: 'rgba(255, 255, 255)',
|
||||
hoverBorder: '#072a15ff',
|
||||
hoverText: 'rgba(255, 255, 255)',
|
||||
hoverBg: '#072a15ff',
|
||||
activeBorder: '#072a15ff',
|
||||
activeText: 'rgba(255, 255, 255)',
|
||||
activeBg: '#072a15ff'
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: '#0c4a6e',
|
||||
border: '#0284c7',
|
||||
text: '#bae6fd',
|
||||
textDeep: '#bae6fd'
|
||||
},
|
||||
tip: {
|
||||
bg: '#0C2A20',
|
||||
border: '#184633',
|
||||
text: '#B0EBC9',
|
||||
textDeep: '#166534'
|
||||
},
|
||||
warning: {
|
||||
bg: '#403207',
|
||||
border: '#7E6211',
|
||||
text: '#F9DE88',
|
||||
textDeep: '#92400e'
|
||||
},
|
||||
danger: {
|
||||
bg: '#3F060A',
|
||||
border: '#7C0F18',
|
||||
text: '#F7C1BC',
|
||||
textDeep: '#991b1b'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: '#1e3a8a'
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: '-webkit-linear-gradient(120deg, #f9fafb 30%, #BD2F2F)',
|
||||
heroImageBackground: 'linear-gradient(-45deg, #f9fafb 50%,#BD2F2F 50%)',
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
docs/.vitepress/theme/themes/configs/christmas_tree.png
Normal file
BIN
docs/.vitepress/theme/themes/configs/christmas_tree.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.8 KiB |
161
docs/.vitepress/theme/themes/configs/dark.ts
Normal file
161
docs/.vitepress/theme/themes/configs/dark.ts
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
/**
|
||||
* 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.
|
||||
*/
|
||||
|
||||
import type { Theme } from '../types'
|
||||
|
||||
export const darkTheme: Theme = {
|
||||
name: 'Christmas',
|
||||
displayName: 'Christmas',
|
||||
preview: 'https://files.catbox.moe/inbi62.png',
|
||||
modes: {
|
||||
light: {
|
||||
brand: {
|
||||
1: '#BD2F2F',
|
||||
2: '#22ff00ff',
|
||||
3: '#155C2F',
|
||||
soft: '#a200ffff'
|
||||
},
|
||||
bg: '#ffffffff',
|
||||
bgAlt: '#f9fafb',
|
||||
bgElv: 'rgba(255, 255, 255, 0.7)',
|
||||
bgMark: 'rgb(232, 232, 232)',
|
||||
text: {
|
||||
1: '#1f2937',
|
||||
2: '#4b5563',
|
||||
3: '#353638ff'
|
||||
},
|
||||
button: {
|
||||
brand: {
|
||||
bg: '#155C2F',
|
||||
border: '#0E3B1F',
|
||||
text: 'rgba(255, 255, 255)',
|
||||
hoverBorder: '#072a15ff',
|
||||
hoverText: 'rgba(255, 255, 255)',
|
||||
hoverBg: '#072a15ff',
|
||||
activeBorder: '#072a15ff',
|
||||
activeText: 'rgba(255, 255, 255)',
|
||||
activeBg: '#072a15ff'
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: '#dbeafe',
|
||||
border: '#1e40af',
|
||||
text: '#1e40af',
|
||||
textDeep: '#1e3a8a'
|
||||
},
|
||||
tip: {
|
||||
bg: '#D8F8E4',
|
||||
border: '#447A61',
|
||||
text: '#2D6A58',
|
||||
textDeep: '#166534'
|
||||
},
|
||||
warning: {
|
||||
bg: '#FCEFC3',
|
||||
border: '#9A8034',
|
||||
text: '#9C701B',
|
||||
textDeep: '#92400e'
|
||||
},
|
||||
danger: {
|
||||
bg: '#FBE1E2',
|
||||
border: '#B3565E',
|
||||
text: '#912239',
|
||||
textDeep: '#991b1b'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: '#bfdbfe'
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: '-webkit-linear-gradient(120deg, #BD2F2F 30%, #f9fafb)',
|
||||
heroImageBackground: 'linear-gradient(-45deg, #BD2F2F 50%, #f9fafb 50%)',
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
},
|
||||
dark: {
|
||||
brand: {
|
||||
1: '#2CA03C',
|
||||
2: '#22ff00ff',
|
||||
3: '#5C151A',
|
||||
soft: '#a200ffff'
|
||||
},
|
||||
bg: 'rgb(26, 26, 26)',
|
||||
bgAlt: 'rgb(23, 23, 23)',
|
||||
bgElv: 'rgba(23, 23, 23, 0.8)',
|
||||
button: {
|
||||
brand: {
|
||||
bg: '#155C2F',
|
||||
border: '#0E3B1F',
|
||||
text: 'rgba(255, 255, 255)',
|
||||
hoverBorder: '#072a15ff',
|
||||
hoverText: 'rgba(255, 255, 255)',
|
||||
hoverBg: '#072a15ff',
|
||||
activeBorder: '#072a15ff',
|
||||
activeText: 'rgba(255, 255, 255)',
|
||||
activeBg: '#072a15ff'
|
||||
},
|
||||
alt: {
|
||||
bg: '#484848',
|
||||
text: '#f0eeee',
|
||||
hoverBg: '#484848',
|
||||
hoverText: '#f0eeee'
|
||||
}
|
||||
},
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: '#0c4a6e',
|
||||
border: '#0284c7',
|
||||
text: '#bae6fd',
|
||||
textDeep: '#bae6fd'
|
||||
},
|
||||
tip: {
|
||||
bg: '#0C2A20',
|
||||
border: '#184633',
|
||||
text: '#B0EBC9',
|
||||
textDeep: '#166534'
|
||||
},
|
||||
warning: {
|
||||
bg: '#403207',
|
||||
border: '#7E6211',
|
||||
text: '#F9DE88',
|
||||
textDeep: '#92400e'
|
||||
},
|
||||
danger: {
|
||||
bg: '#3F060A',
|
||||
border: '#7C0F18',
|
||||
text: '#F7C1BC',
|
||||
textDeep: '#991b1b'
|
||||
}
|
||||
},
|
||||
selection: {
|
||||
bg: '#1e3a8a'
|
||||
},
|
||||
home: {
|
||||
heroNameColor: 'transparent',
|
||||
heroNameBackground: '-webkit-linear-gradient(120deg, #f9fafb 30%, #BD2F2F)',
|
||||
heroImageBackground: 'linear-gradient(-45deg, #f9fafb 50%,#BD2F2F 50%)',
|
||||
heroImageFilter: 'blur(44px)'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
25
docs/.vitepress/theme/themes/configs/index.ts
Normal file
25
docs/.vitepress/theme/themes/configs/index.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/**
|
||||
* 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.
|
||||
*/
|
||||
import { christmasTheme } from './christmas'
|
||||
import { catppuccinTheme } from './catppuccin'
|
||||
import type { ThemeRegistry } from '../types'
|
||||
|
||||
export const themeRegistry: ThemeRegistry = {
|
||||
catppuccin: catppuccinTheme,
|
||||
christmas: christmasTheme,
|
||||
}
|
||||
|
||||
export { christmasTheme, catppuccinTheme }
|
||||
19
docs/.vitepress/theme/themes/index.ts
Normal file
19
docs/.vitepress/theme/themes/index.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* 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 * from './types'
|
||||
export * from './themeHandler'
|
||||
export * from './configs'
|
||||
395
docs/.vitepress/theme/themes/themeHandler.ts
Normal file
395
docs/.vitepress/theme/themes/themeHandler.ts
Normal file
|
|
@ -0,0 +1,395 @@
|
|||
/**
|
||||
* 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.
|
||||
*/
|
||||
|
||||
import { ref, onMounted, computed } from 'vue'
|
||||
import type { DisplayMode, ThemeState, Theme, ModeColors } from './types'
|
||||
import { themeRegistry } from './configs'
|
||||
|
||||
const STORAGE_KEY_THEME = 'vitepress-theme-name'
|
||||
const STORAGE_KEY_MODE = 'vitepress-display-mode'
|
||||
const STORAGE_KEY_AMOLED = 'vitepress-amoled-enabled'
|
||||
|
||||
export class ThemeHandler {
|
||||
private state = ref<ThemeState>({
|
||||
currentTheme: 'christmas',
|
||||
currentMode: 'light' as DisplayMode,
|
||||
theme: themeRegistry.christmas
|
||||
})
|
||||
private amoledEnabled = ref(false)
|
||||
|
||||
constructor() {
|
||||
this.initializeTheme()
|
||||
}
|
||||
|
||||
private initializeTheme() {
|
||||
if (typeof window === 'undefined') return
|
||||
|
||||
// Load saved preferences
|
||||
const savedTheme = localStorage.getItem(STORAGE_KEY_THEME) || 'christmas'
|
||||
const savedMode = localStorage.getItem(STORAGE_KEY_MODE) as DisplayMode | null
|
||||
const savedAmoled = localStorage.getItem(STORAGE_KEY_AMOLED) === 'true'
|
||||
|
||||
// Set theme
|
||||
if (themeRegistry[savedTheme]) {
|
||||
this.state.value.currentTheme = savedTheme
|
||||
this.state.value.theme = themeRegistry[savedTheme]
|
||||
}
|
||||
|
||||
// Set amoled preference
|
||||
this.amoledEnabled.value = savedAmoled
|
||||
|
||||
// Set mode
|
||||
if (savedMode) {
|
||||
this.state.value.currentMode = savedMode
|
||||
} else {
|
||||
// Detect system preference for initial mode
|
||||
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches
|
||||
this.state.value.currentMode = prefersDark ? 'dark' : 'light'
|
||||
}
|
||||
|
||||
this.applyTheme()
|
||||
|
||||
// Listen for system theme changes (only if user hasn't set a preference)
|
||||
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {
|
||||
if (!localStorage.getItem(STORAGE_KEY_MODE)) {
|
||||
this.state.value.currentMode = e.matches ? 'dark' : 'light'
|
||||
this.applyTheme()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
private applyTheme() {
|
||||
if (typeof document === 'undefined') return
|
||||
|
||||
const { currentMode, theme } = this.state.value
|
||||
const modeColors = theme.modes[currentMode]
|
||||
|
||||
this.applyDOMClasses(currentMode)
|
||||
this.applyCSSVariables(modeColors, theme)
|
||||
}
|
||||
|
||||
private applyDOMClasses(mode: DisplayMode) {
|
||||
const root = document.documentElement
|
||||
|
||||
// Remove all mode classes
|
||||
root.classList.remove('dark', 'light', 'amoled')
|
||||
|
||||
// Add current mode class
|
||||
root.classList.add(mode)
|
||||
|
||||
// Add amoled class if enabled in dark mode
|
||||
if (mode === 'dark' && this.amoledEnabled.value) {
|
||||
root.classList.add('amoled')
|
||||
}
|
||||
|
||||
// Add dark class for backward compatibility with VitePress
|
||||
if (mode === 'dark') {
|
||||
root.classList.add('dark')
|
||||
}
|
||||
}
|
||||
|
||||
private applyCSSVariables(colors: ModeColors, theme: Theme) {
|
||||
if (typeof document === 'undefined') return
|
||||
|
||||
const root = document.documentElement
|
||||
|
||||
// Clear ALL inline styles related to theming to ensure clean slate
|
||||
const allStyleProps = Array.from(root.style)
|
||||
allStyleProps.forEach(prop => {
|
||||
if (prop.startsWith('--vp-')) {
|
||||
root.style.removeProperty(prop)
|
||||
}
|
||||
})
|
||||
let bgColor = colors.bg
|
||||
let bgAltColor = colors.bgAlt
|
||||
let bgElvColor = colors.bgElv
|
||||
|
||||
if (this.state.value.currentMode === 'dark' && this.amoledEnabled.value) {
|
||||
bgColor = '#000000'
|
||||
bgAltColor = '#000000'
|
||||
bgElvColor = 'rgba(0, 0, 0, 0.9)'
|
||||
}
|
||||
|
||||
// Apply brand colors only if theme specifies them
|
||||
// Otherwise, remove inline styles to let ColorPicker CSS take effect
|
||||
if (colors.brand && (colors.brand[1] || colors.brand[2] || colors.brand[3] || colors.brand.soft)) {
|
||||
if (colors.brand[1]) root.style.setProperty('--vp-c-brand-1', colors.brand[1])
|
||||
if (colors.brand[2]) root.style.setProperty('--vp-c-brand-2', colors.brand[2])
|
||||
if (colors.brand[3]) root.style.setProperty('--vp-c-brand-3', colors.brand[3])
|
||||
if (colors.brand.soft) root.style.setProperty('--vp-c-brand-soft', colors.brand.soft)
|
||||
} else {
|
||||
// Remove inline brand color styles so ColorPicker CSS can apply
|
||||
root.style.removeProperty('--vp-c-brand-1')
|
||||
root.style.removeProperty('--vp-c-brand-2')
|
||||
root.style.removeProperty('--vp-c-brand-3')
|
||||
root.style.removeProperty('--vp-c-brand-soft')
|
||||
}
|
||||
|
||||
// Apply background colors
|
||||
root.style.setProperty('--vp-c-bg', bgColor)
|
||||
root.style.setProperty('--vp-c-bg-alt', bgAltColor)
|
||||
root.style.setProperty('--vp-c-bg-elv', bgElvColor)
|
||||
if (colors.bgMark) {
|
||||
root.style.setProperty('--vp-c-bg-mark', colors.bgMark)
|
||||
}
|
||||
|
||||
// Apply text colors - always set them to ensure proper theme switching
|
||||
if (colors.text) {
|
||||
if (colors.text[1]) root.style.setProperty('--vp-c-text-1', colors.text[1])
|
||||
if (colors.text[2]) root.style.setProperty('--vp-c-text-2', colors.text[2])
|
||||
if (colors.text[3]) root.style.setProperty('--vp-c-text-3', colors.text[3])
|
||||
} else {
|
||||
// Remove inline styles if theme doesn't specify text colors
|
||||
// This allows CSS variables from style.scss to take effect
|
||||
root.style.removeProperty('--vp-c-text-1')
|
||||
root.style.removeProperty('--vp-c-text-2')
|
||||
root.style.removeProperty('--vp-c-text-3')
|
||||
}
|
||||
|
||||
// Debug: log applied text color variables so we can inspect in console
|
||||
try {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('[ThemeHandler] applied text vars', {
|
||||
theme: theme.name,
|
||||
mode: this.state.value.currentMode,
|
||||
vp_text_1: root.style.getPropertyValue('--vp-c-text-1'),
|
||||
vp_text_2: root.style.getPropertyValue('--vp-c-text-2'),
|
||||
vp_text_3: root.style.getPropertyValue('--vp-c-text-3')
|
||||
})
|
||||
} catch (e) {
|
||||
// ignore
|
||||
}
|
||||
|
||||
// Apply button colors
|
||||
root.style.setProperty('--vp-button-brand-bg', colors.button.brand.bg)
|
||||
root.style.setProperty('--vp-button-brand-border', colors.button.brand.border)
|
||||
root.style.setProperty('--vp-button-brand-text', colors.button.brand.text)
|
||||
root.style.setProperty('--vp-button-brand-hover-border', colors.button.brand.hoverBorder)
|
||||
root.style.setProperty('--vp-button-brand-hover-text', colors.button.brand.hoverText)
|
||||
root.style.setProperty('--vp-button-brand-hover-bg', colors.button.brand.hoverBg)
|
||||
root.style.setProperty('--vp-button-brand-active-border', colors.button.brand.activeBorder)
|
||||
root.style.setProperty('--vp-button-brand-active-text', colors.button.brand.activeText)
|
||||
root.style.setProperty('--vp-button-brand-active-bg', colors.button.brand.activeBg)
|
||||
root.style.setProperty('--vp-button-alt-bg', colors.button.alt.bg)
|
||||
root.style.setProperty('--vp-button-alt-text', colors.button.alt.text)
|
||||
root.style.setProperty('--vp-button-alt-hover-bg', colors.button.alt.hoverBg)
|
||||
root.style.setProperty('--vp-button-alt-hover-text', colors.button.alt.hoverText)
|
||||
|
||||
// Apply custom block colors
|
||||
const blocks = ['info', 'tip', 'warning', 'danger'] as const
|
||||
blocks.forEach((block) => {
|
||||
const blockColors = colors.customBlock[block]
|
||||
root.style.setProperty(`--vp-custom-block-${block}-bg`, blockColors.bg)
|
||||
root.style.setProperty(`--vp-custom-block-${block}-border`, blockColors.border)
|
||||
root.style.setProperty(`--vp-custom-block-${block}-text`, blockColors.text)
|
||||
root.style.setProperty(`--vp-custom-block-${block}-text-deep`, blockColors.textDeep)
|
||||
})
|
||||
|
||||
// Apply selection color
|
||||
root.style.setProperty('--vp-c-selection-bg', colors.selection.bg)
|
||||
|
||||
// Apply home hero colors (if defined)
|
||||
if (colors.home) {
|
||||
root.style.setProperty('--vp-home-hero-name-color', colors.home.heroNameColor)
|
||||
root.style.setProperty('--vp-home-hero-name-background', colors.home.heroNameBackground)
|
||||
root.style.setProperty('--vp-home-hero-image-background-image', colors.home.heroImageBackground)
|
||||
root.style.setProperty('--vp-home-hero-image-filter', colors.home.heroImageFilter)
|
||||
} else {
|
||||
// Remove home hero color styles if theme doesn't specify them
|
||||
root.style.removeProperty('--vp-home-hero-name-color')
|
||||
root.style.removeProperty('--vp-home-hero-name-background')
|
||||
root.style.removeProperty('--vp-home-hero-image-background-image')
|
||||
root.style.removeProperty('--vp-home-hero-image-filter')
|
||||
}
|
||||
|
||||
// Apply fonts (if defined)
|
||||
if (theme.fonts?.body) {
|
||||
root.style.setProperty('--vp-font-family-base', theme.fonts.body)
|
||||
} else {
|
||||
root.style.removeProperty('--vp-font-family-base')
|
||||
}
|
||||
if (theme.fonts?.heading) {
|
||||
root.style.setProperty('--vp-font-family-heading', theme.fonts.heading)
|
||||
} else {
|
||||
root.style.removeProperty('--vp-font-family-heading')
|
||||
}
|
||||
|
||||
// Apply border radius (if defined)
|
||||
if (theme.borderRadius) {
|
||||
root.style.setProperty('--vp-border-radius', theme.borderRadius)
|
||||
} else {
|
||||
root.style.removeProperty('--vp-border-radius')
|
||||
}
|
||||
|
||||
// Apply spacing (if defined)
|
||||
if (theme.spacing) {
|
||||
if (theme.spacing.small) root.style.setProperty('--vp-spacing-small', theme.spacing.small)
|
||||
else root.style.removeProperty('--vp-spacing-small')
|
||||
if (theme.spacing.medium) root.style.setProperty('--vp-spacing-medium', theme.spacing.medium)
|
||||
else root.style.removeProperty('--vp-spacing-medium')
|
||||
if (theme.spacing.large) root.style.setProperty('--vp-spacing-large', theme.spacing.large)
|
||||
else root.style.removeProperty('--vp-spacing-large')
|
||||
} else {
|
||||
root.style.removeProperty('--vp-spacing-small')
|
||||
root.style.removeProperty('--vp-spacing-medium')
|
||||
root.style.removeProperty('--vp-spacing-large')
|
||||
}
|
||||
|
||||
// Apply custom properties (if defined)
|
||||
if (theme.customProperties) {
|
||||
Object.entries(theme.customProperties).forEach(([key, value]) => {
|
||||
root.style.setProperty(key, value)
|
||||
})
|
||||
}
|
||||
|
||||
// Apply custom logo (if defined)
|
||||
if (theme.logo) {
|
||||
root.style.setProperty('--vp-theme-logo', `url(${theme.logo})`)
|
||||
} else {
|
||||
root.style.removeProperty('--vp-theme-logo')
|
||||
}
|
||||
}
|
||||
|
||||
public setTheme(themeName: string) {
|
||||
if (!themeRegistry[themeName]) {
|
||||
console.warn(`Theme "${themeName}" not found. Using christmas theme.`)
|
||||
themeName = 'christmas'
|
||||
}
|
||||
|
||||
this.state.value.currentTheme = themeName
|
||||
this.state.value.theme = themeRegistry[themeName]
|
||||
localStorage.setItem(STORAGE_KEY_THEME, themeName)
|
||||
this.applyTheme()
|
||||
|
||||
// Force re-apply ColorPicker colors if theme doesn't specify brand colors
|
||||
this.ensureColorPickerColors()
|
||||
}
|
||||
|
||||
public setMode(mode: DisplayMode) {
|
||||
this.state.value.currentMode = mode
|
||||
localStorage.setItem(STORAGE_KEY_MODE, mode)
|
||||
this.applyTheme()
|
||||
}
|
||||
|
||||
public toggleMode() {
|
||||
const currentMode = this.state.value.currentMode
|
||||
|
||||
// Toggle between light and dark
|
||||
const newMode: DisplayMode = currentMode === 'light' ? 'dark' : 'light'
|
||||
|
||||
this.setMode(newMode)
|
||||
}
|
||||
|
||||
public setAmoledEnabled(enabled: boolean) {
|
||||
this.amoledEnabled.value = enabled
|
||||
localStorage.setItem(STORAGE_KEY_AMOLED, enabled.toString())
|
||||
this.applyTheme()
|
||||
}
|
||||
|
||||
public getAmoledEnabled() {
|
||||
return this.amoledEnabled.value
|
||||
}
|
||||
|
||||
public toggleAmoled() {
|
||||
this.setAmoledEnabled(!this.amoledEnabled.value)
|
||||
}
|
||||
|
||||
public getAmoledEnabledRef() {
|
||||
return this.amoledEnabled
|
||||
}
|
||||
|
||||
private ensureColorPickerColors() {
|
||||
// If theme doesn't specify brand colors, force ColorPicker to reapply its selection
|
||||
const currentMode = this.state.value.currentMode
|
||||
const modeColors = this.state.value.theme.modes[currentMode]
|
||||
|
||||
if (!modeColors.brand || !modeColors.brand[1]) {
|
||||
// Trigger a custom event that ColorPicker can listen to
|
||||
if (typeof window !== 'undefined') {
|
||||
window.dispatchEvent(new CustomEvent('theme-changed-apply-colors'))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public getState() {
|
||||
return this.state
|
||||
}
|
||||
|
||||
public getMode() {
|
||||
return this.state.value.currentMode
|
||||
}
|
||||
|
||||
public getTheme() {
|
||||
return this.state.value.currentTheme
|
||||
}
|
||||
|
||||
public getCurrentTheme() {
|
||||
return this.state.value.theme
|
||||
}
|
||||
|
||||
public getAvailableThemes() {
|
||||
return Object.keys(themeRegistry).map(key => ({
|
||||
name: key,
|
||||
displayName: themeRegistry[key].displayName
|
||||
}))
|
||||
}
|
||||
|
||||
public isDarkMode() {
|
||||
const mode = this.state.value.currentMode
|
||||
return mode === 'dark'
|
||||
}
|
||||
|
||||
public isAmoledMode() {
|
||||
return this.state.value.currentMode === 'dark' && this.amoledEnabled.value
|
||||
}
|
||||
}
|
||||
|
||||
// Global theme handler instance
|
||||
let themeHandlerInstance: ThemeHandler | null = null
|
||||
|
||||
export function useThemeHandler() {
|
||||
if (!themeHandlerInstance) {
|
||||
themeHandlerInstance = new ThemeHandler()
|
||||
}
|
||||
return themeHandlerInstance
|
||||
}
|
||||
|
||||
// Composable for use in Vue components
|
||||
export function useTheme() {
|
||||
const handler = useThemeHandler()
|
||||
const state = handler.getState()
|
||||
|
||||
onMounted(() => {
|
||||
// Ensure theme is applied on mount
|
||||
handler.setMode(handler.getMode())
|
||||
})
|
||||
|
||||
return {
|
||||
mode: computed(() => state.value.currentMode),
|
||||
themeName: computed(() => state.value.currentTheme),
|
||||
theme: computed(() => state.value.theme),
|
||||
setMode: (mode: DisplayMode) => handler.setMode(mode),
|
||||
setTheme: (themeName: string) => handler.setTheme(themeName),
|
||||
toggleMode: () => handler.toggleMode(),
|
||||
getAvailableThemes: () => handler.getAvailableThemes(),
|
||||
isDarkMode: () => handler.isDarkMode(),
|
||||
isAmoledMode: () => handler.isAmoledMode(),
|
||||
amoledEnabled: handler.getAmoledEnabledRef(),
|
||||
setAmoledEnabled: (enabled: boolean) => handler.setAmoledEnabled(enabled),
|
||||
toggleAmoled: () => handler.toggleAmoled(),
|
||||
state
|
||||
}
|
||||
}
|
||||
134
docs/.vitepress/theme/themes/types.ts
Normal file
134
docs/.vitepress/theme/themes/types.ts
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
/**
|
||||
* 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 type DisplayMode = 'light' | 'dark'
|
||||
|
||||
export interface ModeColors {
|
||||
// Brand colors (optional - if not specified, ColorPicker values are used)
|
||||
brand?: {
|
||||
1?: string
|
||||
2?: string
|
||||
3?: string
|
||||
soft?: string
|
||||
}
|
||||
|
||||
// Background colors
|
||||
bg: string
|
||||
bgAlt: string
|
||||
bgElv: string
|
||||
bgMark?: string
|
||||
|
||||
// Text colors (optional - if not specified, VitePress defaults are used)
|
||||
text?: {
|
||||
1?: string
|
||||
2?: string
|
||||
3?: string
|
||||
}
|
||||
|
||||
// Button colors
|
||||
button: {
|
||||
brand: {
|
||||
bg: string
|
||||
border: string
|
||||
text: string
|
||||
hoverBorder: string
|
||||
hoverText: string
|
||||
hoverBg: string
|
||||
activeBorder: string
|
||||
activeText: string
|
||||
activeBg: string
|
||||
}
|
||||
alt: {
|
||||
bg: string
|
||||
text: string
|
||||
hoverBg: string
|
||||
hoverText: string
|
||||
}
|
||||
}
|
||||
|
||||
// Custom blocks
|
||||
customBlock: {
|
||||
info: {
|
||||
bg: string
|
||||
border: string
|
||||
text: string
|
||||
textDeep: string
|
||||
}
|
||||
tip: {
|
||||
bg: string
|
||||
border: string
|
||||
text: string
|
||||
textDeep: string
|
||||
}
|
||||
warning: {
|
||||
bg: string
|
||||
border: string
|
||||
text: string
|
||||
textDeep: string
|
||||
}
|
||||
danger: {
|
||||
bg: string
|
||||
border: string
|
||||
text: string
|
||||
textDeep: string
|
||||
}
|
||||
}
|
||||
|
||||
// Selection color
|
||||
selection: {
|
||||
bg: string
|
||||
}
|
||||
|
||||
// Home hero
|
||||
home?: {
|
||||
heroNameColor: string
|
||||
heroNameBackground: string
|
||||
heroImageBackground: string
|
||||
heroImageFilter: string
|
||||
}
|
||||
}
|
||||
|
||||
export interface Theme {
|
||||
name: string
|
||||
displayName: string
|
||||
preview?: string // URL or path to theme preview image
|
||||
logo?: string // URL or path to custom logo
|
||||
modes: {
|
||||
light: ModeColors
|
||||
dark: ModeColors
|
||||
}
|
||||
fonts?: {
|
||||
body?: string
|
||||
heading?: string
|
||||
}
|
||||
borderRadius?: string
|
||||
spacing?: {
|
||||
small?: string
|
||||
medium?: string
|
||||
large?: string
|
||||
}
|
||||
customProperties?: Record<string, string>
|
||||
}
|
||||
|
||||
export interface ThemeRegistry {
|
||||
[themeName: string]: Theme
|
||||
}
|
||||
|
||||
export interface ThemeState {
|
||||
currentTheme: string
|
||||
currentMode: DisplayMode
|
||||
theme: Theme
|
||||
}
|
||||
|
|
@ -38,7 +38,7 @@ export const headers: Header = {
|
|||
},
|
||||
'beginners-guide.md': {
|
||||
title: 'Beginners Guide',
|
||||
description: 'A Guide for Beginners to Piracy'
|
||||
description: 'A Guide for Beginners + FAQs'
|
||||
},
|
||||
'downloading.md': {
|
||||
title: 'Downloading',
|
||||
|
|
|
|||
258
docs/ai.md
258
docs/ai.md
|
|
@ -6,69 +6,69 @@
|
|||
|
||||
# ► AI Chatbots
|
||||
|
||||
* **Note** - It's **never** a good idea to upload anything personal or confidential to cloud-based AIs, as many of them use your prompts for collecting or training purposes. If you want privacy, its best to run LLMs locally. Remember to use [throwaway emails](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail) or [aliases](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) when signing up for online chatbots.
|
||||
* **Note** - It's **never** a good idea to upload anything personal or confidential to cloud-based AIs, as many of them use your prompts for collecting or training purposes. If you want privacy, its best to run LLMs locally. If a site does not say that sign-up is required, then you can still use it without logging in, but you will have worse limits and fewer models.
|
||||
|
||||
***
|
||||
|
||||
## ▷ Official Model Sites
|
||||
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** or [Gemini](https://gemini.google.com/) - Gemini 2.5 Pro / Flash / Google Chatbots / [CLI](https://github.com/google-gemini/gemini-cli) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5 / GPT-4o / o4-mini / [Reasoning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#better-reasoning) / [Discord](https://discord.com/invite/go-copilot)
|
||||
* ⭐ **[Z.ai](https://chat.z.ai/)** - GLM 4.6 Chatbot / Unlimited / [Discord](https://discord.gg/QR7SARHRxK)
|
||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek-V3.2-Exp / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.com/invite/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Qwen3-235B-A22B-2507 / Qwen3-Max / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[Grok](https://grok.com/)** - Grok 4 Fast (80 daily) / Grok 4 (20 daily) / [Rate Display](https://greasyfork.org/en/scripts/533963) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Kimi](https://www.kimi.com/)** - Kimi K2-0905 Chatbot / [Subreddit](https://www.reddit.com/r/kimi/) / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
||||
* [Claude](https://claude.ai/) - Claude 4.5 Sonnet / Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/6PPFFzqPDZ)
|
||||
* [ChatGPT](https://chatgpt.com/) - GPT-5 / GPT-5 mini Chatbot / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#chatgpt-note) / [Reasoning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#better-reasoning) / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
||||
* [Ernie](https://ernie.baidu.com/) - ERNIE X1.1 / Baidu's Chatbot / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo) / [Discord](https://discord.gg/3Wb36Zp7)
|
||||
* [LongCat](https://longcat.chat/) - LongCat-Flash-Chat / Unlimited / Sign-Up Required
|
||||
* [MiniMax AI](https://chat.minimax.io/) - Minimax-M1 / [Discord](https://discord.com/invite/hailuoai) / [GitHub](https://github.com/MiniMax-AI/MiniMax-M1)
|
||||
* [Cohere](https://dashboard.cohere.com/playground/chat) - Command-A-Reasoning-08-2025 / 1000 Monthly / Sign-Up Required
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** - Gemini 3 Pro / 100 Daily / Sign-Up Required / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5 / Unlimited / [Reasoning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#better-reasoning) / [Discord](https://discord.com/invite/go-copilot)
|
||||
* ⭐ **[Kimi](https://www.kimi.com/)** - Kimi K2 (Thinking) / Slides / Sign-Up Required / [Subreddit](https://www.reddit.com/r/kimi/) / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Qwen3-Max / Unlimited / [Subreddit](https://www.reddit.com/r/Qwen_AI/) / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[Grok](https://grok.com/)** - Grok 4 + Grok 3 Fast (96 daily) / Grok 4.1 (24 daily) / [Rate Display](https://greasyfork.org/en/scripts/558017) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Z.ai](https://chat.z.ai/)** - GLM 4.6 / Slides / Unlimited / [Discord](https://discord.gg/QR7SARHRxK)
|
||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek-V3.2 / Sign-Up Required / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.com/invite/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||
* [Claude](https://claude.ai/) - Claude 4.5 Sonnet / Sign-Up with Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/6PPFFzqPDZ)
|
||||
* [Gemini](https://gemini.google.com/) - Gemini 3 Pro (5 per day) / 2.5 Flash (Unlimited) / [Limits](https://support.google.com/gemini/answer/16275805) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* [ChatGPT](https://chatgpt.com/) - GPT-5.1 / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#chatgpt-limits) / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
||||
* [Ernie](https://ernie.baidu.com/) - ERNIE X1.1 / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo)
|
||||
* [Mistral](https://chat.mistral.ai) - Magistral Medium / Privacy-Focused / [Subreddit](https://www.reddit.com/r/MistralAI/) / [Discord](https://discord.gg/mistralai)
|
||||
* [LongCat](https://longcat.chat/) - LongCat-Flash-Chat / Unlimited / [X](https://x.com/Meituan_LongCat)
|
||||
* [MiniMax AI](https://agent.minimax.io/) - MiniMax-M2 / [Discord](https://discord.com/invite/hailuoai) / [GitHub](https://github.com/MiniMax-AI/MiniMax-M1)
|
||||
* [Cohere](https://dashboard.cohere.com/playground/chat) - Command-A-Reasoning / 1000 Monthly / Sign-Up Required / [Discord](https://discord.com/invite/co-mmunity)
|
||||
* [Solar](https://console.upstage.ai/playground/chat) - Solar Pro 2 Model / No Sign-Up / [Discord](https://discord.com/invite/Cge9FYjV4h)
|
||||
* [StepFun](https://stepfun.ai/) - Step 3 / DeepSeek R1 Chatbot
|
||||
* [StepFun](https://stepfun.ai/) - Step 3 / DeepSeek R1 / Sign-Up Required
|
||||
* [dots-demo](https://huggingface.co/spaces/rednote-hilab/dots-demo) - Dots Chatbot / No Sign-Up
|
||||
* [Apertus](https://chat.publicai.co/) - Apertus 70B / Sign-up Required
|
||||
* [Mistral](https://chat.mistral.ai) - Magistral Medium / Privacy-Focused / [Discord](https://discord.gg/mistralai)
|
||||
* [Reka](https://www.reka.ai/) - Reka Flash 3.1 / Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf)
|
||||
* [K2Think](https://www.k2think.ai/) - LLM360 / MBZUAI Chatbot (not Kimi) / Sign-up Required
|
||||
* [Ai2 Playground](https://playground.allenai.org/) - OLMo 2 Chatbot / No Sign-Up / [Discord](https://discord.gg/NE5xPufNwu)
|
||||
* [Apertus](https://publicai.co/chat), [2](https://chat.publicai.co/) - Apertus 70B
|
||||
* [Reka](https://www.reka.ai/) - Reka Flash 3.1 / [Discord](https://discord.gg/jtjNSD52mf)
|
||||
* [K2Think](https://www.k2think.ai/) - LLM360 / MBZUAI (not Kimi) / Sign-Up Required
|
||||
* [Ai2 Playground](https://playground.allenai.org/) - Olmo3 32B / No Sign-Up / [Discord](https://discord.gg/NE5xPufNwu)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Multiple Model Sites
|
||||
|
||||
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** - Chatbot Resources / Mirrors
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct)** - Multiple Chatbots / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lmarena-note) / [X](https://x.com/lmarena_ai) / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* [Yupp.ai](https://yupp.ai/) - o3 Pro / Claude 4.1 Opus / Grok 4 / Gemini 2.5 Pro / DeepSeek V3.1 / Google Login Require
|
||||
* [ISH](https://ish.junioralive.in/) - GPT-5 / Grok 4 / Kimi K2 / Multiple Chatbots / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / GPT-5 mini / No Sign-Up
|
||||
* [Genspark](https://www.genspark.ai/) - GPT-5-high / Gemini 2.5 Pro / Grok 4 / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
* [Together.ai](https://chat.together.ai/) - DeepSeek V3.1 / Qwen 3 235B-2507 / Up-To 110 Daily
|
||||
* [Groq](https://groq.com/) - Kimi K2-0905 / GPT-OSS 120B / [Discord](https://discord.gg/invite/groq)
|
||||
* [Gradient](https://chat.gradient.network/) - GPT-OSS-120B / Qwen3-235B-A22B / No Sign-Up
|
||||
* [Scira](https://scira.ai/) - Grok 3 mini / AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - DeepSeek V3.1 / Kimi K2 / Multiple Chatbots / No Sign-Up
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct)** - Multiple Chatbots / No Sign-Up / Reset Limits w/ Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [Yupp.ai](https://yupp.ai/) - Gemini 3 Pro / GPT-5.1-high / Grok 4.1 / Qwen 3 Max / Google Login / [Discord](https://discord.com/invite/yuppai)
|
||||
* [ISH](https://ish.chat/) - GPT-5 / Grok 4.1 / Kimi K2 / Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [HiveChat](https://oi.wr.do/) - Kimi K2 / DeepSeek R1-0528 / Multiple Chatbots / Sign-Up Required / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
* [Together.ai](https://chat.together.ai/) - DeepSeek V3.1 / Qwen 3 235B-2507 / Up-To 110 Daily / [Discord](https://discord.gg/9Rk6sSeWEG)
|
||||
* [Duck AI](https://duck.ai/) - GPT-5 mini / Multiple Chatbots / No Sign-Up
|
||||
* [Groq](https://groq.com/) - Kimi K2-0905 / GPT-OSS 120B / Sign-Up Required / [Discord](https://discord.com/invite/e6cj7aA4Ts)
|
||||
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-R1 / Qwen QwQ-32B / Multiple Chatbots / No Sign-Up
|
||||
* [FreePass](https://freepass.ai/) - Gemini 2.5 Pro / GPT-5-chat
|
||||
* [HiveChat](https://ai.wr.do/chat) - Kimi K2 / DeepSeek R1-0528 / Multiple Chatbots / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
* [Scira](https://scira.ai/) - Grok 4 / Qwen 3 / AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - DeepSeek V3.1 / Kimi K2 / Multiple Chatbots / No Sign-Up
|
||||
* [FreePass](https://freepass.ai/) - Gemini 2.5 Pro/ GPT-5-chat / No Sign-Up / [Telegram](https://t.me/freepass_ai)
|
||||
* [Genspark](https://www.genspark.ai/) - GPT-5-high / Gemini 3 Pro / Grok 4.1 / Sign-Up Required / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Specialized Chatbots
|
||||
|
||||
* 🌐 **[Awesome AI Web Search](https://github.com/felladrin/awesome-ai-web-search), [2](https://huggingface.co/spaces/Felladrin/awesome-ai-web-search)** - AI Search Engine Index
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=search)** - AI Search Engine / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lmarena-note) / [X](https://x.com/lmarena_ai) / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=search)** - AI Search Engine / No Sign-Up / Reset Limits w/ Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Discord](https://discord.com/invite/perplexity-ai)
|
||||
* ⭐ **[NotebookLM](https://notebooklm.google/)** - Document Chatbot / Note-Taking / [X](https://x.com/NotebookLM) / [Subreddit](https://www.reddit.com/r/notebooklm/) / [Discord](https://discord.com/invite/notebooklm)
|
||||
* [Google AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50) - AI Search Engine
|
||||
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - FOSS AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT)
|
||||
* [Learn About](https://learning.google.com/experiments/learn-about) or [Learning Coach](https://gemini.google.com/gem/learning-coach) - Google's Educational Search AIs
|
||||
* [SciSpace](https://scispace.com/) - Research Chatbot / No Sign-Up
|
||||
* [SciSpace](https://scispace.com/) - Research Chatbot
|
||||
* [Bohrium](https://www.bohrium.com/) - Research Chatbot
|
||||
* [Scinito](https://ekb.scinito.ai/ai/chat) - Research Chatbot
|
||||
* [Elicit](https://elicit.com/) - Research Chatbot / [GitHub](https://github.com/elicit)
|
||||
* [PrivateGPT](https://privategpt.dev/) - Document Chatbot / Note-Taking / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt)
|
||||
* [NotebookLM](https://notebooklm.google/) - Document Chatbot / Note-Taking / [X](https://x.com/NotebookLM) / [Subreddit](https://www.reddit.com/r/notebooklm/) / [Discord](https://discord.com/invite/notebooklm)
|
||||
* [Onyx](https://www.onyx.app/) - Document Chatbot / Note-Taking / [Discord](https://discord.com/invite/jDnRGhWhg4) / [GitHub](https://github.com/onyx-dot-app/onyx)
|
||||
* [DocsGPT](https://www.docsgpt.cloud/) - Document Chatbot / Note-Taking / [Discord](https://discord.com/invite/n5BX8dh8rU) / [GitHub](https://github.com/arc53/DocsGPT)
|
||||
* [Hyperspace](https://hyper.space/) - P2P AI Network / [GitHub](https://github.com/hyperspaceai)
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
|
||||
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Self-Hosted Interface / [Subreddit](https://www.reddit.com/r/SillyTavernAI/) / [Discord](https://discord.gg/sillytavern) / [GitHub](https://github.com/SillyTavern/SillyTavern)
|
||||
* ⭐ **[Open WebUI](https://openwebui.com/)** - Self-Hosted Interface / [Discord](https://discord.gg/5rJgQTnV4s) / [GitHub](https://github.com/open-webui/open-webui)
|
||||
* [GPT4Free](https://github.com/xtekky/gpt4free) - Desktop App / [Telegram](https://telegram.me/g4f_channel)
|
||||
* [GPT4Free](https://github.com/xtekky/gpt4free) - Desktop App / [Demo](https://g4f.dev/chat/pro.html), [2](https://g4f.dev/chat/) / [Telegram](https://telegram.me/g4f_channel)
|
||||
* [Msty](https://msty.app/) - Download & Run Models Locally / [Discord](https://discord.gg/2QBw6XxkCC)
|
||||
* [Cherry Studio](https://github.com/CherryHQ/cherry-studio) - Desktop App / [Discord](https://discord.gg/wez8HtpxqQ)
|
||||
* [LobeChat](https://lobechat.com/chat) - Desktop App / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
|
|
@ -107,66 +107,73 @@
|
|||
* [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 / [Discord](https://discord.com/invite/myY5YDR8z8) / [GitHub](https://github.com/nomic-ai/gpt4all)
|
||||
* [llamafile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files / [Discord](https://discord.gg/YuMNeuKStr)
|
||||
* [LLM-API-Key-Proxy](https://github.com/Mirrowel/LLM-API-Key-Proxy) - LLM API Key Proxy
|
||||
|
||||
***
|
||||
|
||||
## ▷ Roleplaying Chatbots
|
||||
|
||||
* 🌐 **[Sukino-Findings](https://rentry.org/Sukino-Findings)** - AI Roleplay Resources
|
||||
* ⭐ **[PygmalionAI](https://pygmalion.chat/)** - Self-Hosted Roleplaying Models / [Resources](https://rentry.co/pygmalionlinks) / [Subreddit](https://www.reddit.com/r/PygmalionAI/) / [Discord](https://discord.com/invite/pygmalionai) / [GitHub](https://github.com/PygmalionAI)
|
||||
* ⭐ **[PygmalionAI](https://pygmalion.chat/)** - Self-Hosted Roleplaying Models / [Resources](https://claraiscute.neocities.org/Guides/PygmalionLinks/), [2](https://claraiscute.pages.dev/Guides/PygmalionLinks/) / [Subreddit](https://www.reddit.com/r/PygmalionAI/) / [Discord](https://discord.com/invite/pygmalionai) / [GitHub](https://github.com/PygmalionAI)
|
||||
* ⭐ **[FlowGPT](https://flowgpt.com)** - Roleplaying Chatbots / Some NSFW / [Discord](https://discord.com/invite/tWZGzcpTkf)
|
||||
* ⭐ **[Character.AI](https://character.ai/)** - Roleplaying Chatbots / [Extract](https://rentry.co/reverseCAI) / [Subreddit](https://www.reddit.com/r/CharacterAI/) / [Discord](https://discord.com/invite/characterai)
|
||||
* ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide
|
||||
* ⭐ **[Chub](https://chub.ai/)** - Character Cards / Some NSFW / [Subreddit](https://www.reddit.com/r/Chub_AI/) / [Discord](https://discord.gg/chubai) / [GitHub](https://github.com/CharHubAI)
|
||||
* [JanitorAI](https://janitorai.com/) - Roleplaying Chatbots / Some NSFW
|
||||
* ⭐ **[Perchance](https://perchance.org/ai-character-chat)**, [2](https://perchance.org/amoled-chat) - Roleplaying / No Sign-Up / Unlimted / Allows Images / Some NSFW / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
||||
* [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)
|
||||
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) (No Sign-Up) / [Discord](https://discord.gg/3XPdpUdGgV), [HammerAI](https://www.hammerai.com/desktop) or [Agnai](https://agnai.chat/) / [Discord](https://discord.com/invite/DAn38sA8Qj) - Chatbot Builders
|
||||
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots / [Subreddit](https://www.reddit.com/r/4WallAI/) / [Discord](https://discord.com/invite/4wallai)
|
||||
* [WyvernChat](https://app.wyvern.chat/) - Roleplaying Chatbots
|
||||
* [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
|
||||
* [HammerAI](https://www.hammerai.com/desktop) - Self-Hosted Roleplaying Chatbots
|
||||
* [Spellbound](https://www.tryspellbound.com/) - Roleplaying / Story Chatbot / No Sign-Up
|
||||
* [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)
|
||||
* [KoboldAI Lite](https://lite.koboldai.net/) - Roleplaying / No Sign-Up / Unlimited / Allows Images / Some NSFW / [Discord](https://discord.com/invite/XuQWadgU9k)
|
||||
* [Crossing the Uncanny Valley](https://www.sesame.com/research/crossing_the_uncanny_valley_of_voice#demo) - Realistic AI Voice Chatlooks
|
||||
|
||||
***
|
||||
|
||||
## ▷ Coding AIs
|
||||
|
||||
* **Note** - Keep in mind many coding AIs run in root, so its best to avoid giving them full drive / root access to avoid any sort of issues or accidental deletions. Remember to backup code first before running the AI or prompts, as they can sometimes break things.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs / [Discord](https://discord.gg/U7KEcGErtQ)
|
||||
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** - LLM API Resources
|
||||
* ↪️ **[Coding AI Benchmarks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_coding_ai_benchmarks)**
|
||||
* ⭐ **[Windsurf](https://www.windsurf.com/)** - Coding AI / [Subreddit](https://www.reddit.com/r/windsurf/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
||||
* ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / [Discord](https://discord.gg/getpieces)
|
||||
* ↪️ **[Coding AI Benchmarks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_coding_benchmarks)**
|
||||
* [Gemini CLI](https://google-gemini.github.io/gemini-cli/) or [AIStudio](https://aistudio.google.com/app/apps) - Coding AI / [GitHub](https://github.com/google-gemini/gemini-cli)
|
||||
* [GitHub Copilot](https://github.com/features/copilot) - Coding AI
|
||||
* [Google Antigravity](https://antigravity.google/) - Coding AI / Gemini 3 / Opus 4.5 / Limits Reset Every 5 Hours
|
||||
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery)
|
||||
* [Devv](https://devv.ai/) - Coding Search Engine / [GitHub](https://github.com/devv-ai/devv)
|
||||
* [Llama Coder](https://llamacoder.together.ai/) - Code Generator / No Sign-Up / [GitHub](https://github.com/Nutlope/llamacoder)
|
||||
* [Roo Code](https://roocode.com/) / [GitHub](https://github.com/RooCodeInc/Roo-Code) or [Cline](https://cline.bot/) / [Discord](https://discord.gg/cline) / [GitHub](https://github.com/cline/cline) - Coding AI
|
||||
* [Qwen Code](https://github.com/QwenLM/qwen-code) - Coding AI
|
||||
* [Code Web Chat](https://codeweb.chat/) - Coding AI / No Sign-Up / [GitHub](https://github.com/robertpiosik/CodeWebChat) / [Discord](https://discord.com/invite/KJySXsrSX5) / [Subreddit](https://www.reddit.com/r/codewebchat/)
|
||||
* [Windsurf](https://www.windsurf.com/) - Coding AI / [Subreddit](https://www.reddit.com/r/windsurf/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
||||
* [Pieces](https://pieces.app/) - Multi-LLM Coding AI / GPT-4 / 4o for Free
|
||||
* [Qwen Code](https://github.com/QwenLM/qwen-code) - CLI Coding AI / [Docs](https://qwenlm.github.io/qwen-code-docs/en/)
|
||||
* [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)
|
||||
* [Supermaven](https://supermaven.com/) - Coding AI / No Sign-Up / [Discord](https://discord.com/invite/QQpqBmQH3w)
|
||||
* [OpenHands](https://www.all-hands.dev/) - Coding AI / [Discord](https://discord.gg/ESHStjSjD4) / [GitHub](https://github.com/All-Hands-AI/OpenHands)
|
||||
* [Continue](https://continue.dev/) - Coding AI / [Discord](https://discord.com/invite/EfJEfdFnDQ) / [GitHub](https://github.com/continuedev/continue)
|
||||
* [GitHub Copilot](https://github.com/features/copilot) - Coding AI
|
||||
* [Cursor](https://rentry.co/FMHYB64#cursor) - Coding AI
|
||||
* [GitWit](https://gitwit.dev/) - Coding AI
|
||||
* [AnyCoder](https://huggingface.co/spaces/akhaliq/anycoder) - Coding AI
|
||||
* [AI SDK](https://sdk.vercel.ai/) - Coding AI/ [GitHub](https://github.com/vercel/ai)
|
||||
* [AI SDK](https://sdk.vercel.ai/) - Coding AI / [GitHub](https://github.com/vercel/ai)
|
||||
* [Qodo](https://www.qodo.ai/) - Coding AI
|
||||
* [Blackbox](https://www.blackbox.ai/) - Coding AI / No Sign-Up
|
||||
* [Blackbox](https://www.blackbox.ai/) - Coding AI
|
||||
* [Seron](https://www.seron.dev/) - Coding AI
|
||||
* [Denigma](https://denigma.app/) - Coding AI / No Sign-Up / [Discord](https://discord.gg/mZx4REBvKm)
|
||||
* [Aider](https://aider.chat/) - Terminal Coding AI / [Discord](https://discord.com/invite/Y7X7bhMQFV) / [GitHub](https://github.com/Aider-AI/aider)
|
||||
* [Codacy](https://www.codacy.com/) - Code Fixing AI / [GitHub](https://github.com/codacy)
|
||||
* [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally / No Sign-Up / [Discord](https://discord.gg/Hvz9Axh84z)
|
||||
* [Orchids](https://orchids.app/) - Text to Site Code
|
||||
* [v0](https://v0.dev/) - Text to Site Code
|
||||
* [v0](https://v0.app/) - Text to Site Code
|
||||
* [DeepSite](https://huggingface.co/spaces/enzostvs/deepsite) - Text to Site Code / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning)
|
||||
* [Bolt.new](https://bolt.new/) - AI Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new)
|
||||
* [Fragments](https://fragments.e2b.dev/) - AI App Builder / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev)
|
||||
* [Rork](https://rork.com/) - AI App Builder [Code Export Bypass](https://greasyfork.org/en/scripts/538090)
|
||||
* [Code2prompt](https://github.com/mufeedvh/code2prompt) - Convert Codebase into Single LLM Prompt
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -201,12 +208,11 @@
|
|||
* 🌐 **[L1B3RT4S](https://github.com/elder-plinius/L1B3RT4S)** - Jailbreak Prompts / [X](https://x.com/elder_plinius) / [Discord](https://discord.gg/basi)
|
||||
* ⭐ **[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory
|
||||
* ⭐ **[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory
|
||||
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)** / [Discord](https://discord.gg/FUyz9vPAwf) / [GitHub](https://github.com/dair-ai/Prompt-Engineering-Guide), [Google Whitepaper](https://www.kaggle.com/whitepaper-prompt-engineering), [Prompt_Engineering](https://github.com/NirDiamant/Prompt_Engineering), [LearnPrompting](https://learnprompting.org/docs/introduction), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering) or [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) / [Discord](https://discord.com/invite/6PPFFzqPDZ) - Prompting Guides
|
||||
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)** / [Discord](https://discord.gg/FUyz9vPAwf) / [GitHub](https://github.com/dair-ai/Prompt-Engineering-Guide), [Google Whitepaper](https://www.kaggle.com/whitepaper-prompt-engineering), [Prompt_Engineering](https://github.com/NirDiamant/Prompt_Engineering), [LearnPrompting](https://learnprompting.org/docs/introduction), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering) or [Claude Guide](https://docs.claude.com/en/docs/build-with-claude/prompt-engineering/overview) / [Discord](https://discord.com/invite/6PPFFzqPDZ) - Prompting Guides
|
||||
* [r/ChatGPTJailbreak](https://www.reddit.com/r/ChatGPTJailbreak/) - AI Jailbreak Community
|
||||
* [ChatGPT System Prompt](https://github.com/LouisShark/chatgpt_system_prompt) - Prompt Directory
|
||||
* [The Big Prompt Library](https://github.com/0xeb/TheBigPromptLibrary) - Prompt Directory
|
||||
* [Jailbreak Listings](https://rentry.org/jb-listing) - Prompt Directory / Jailbreaks
|
||||
* [ChatGPT & Bing AI Prompts](https://github.com/yokoffing/ChatGPT-Prompts) - Prompt Directory
|
||||
* [promptfoo](https://www.promptfoo.dev/) - Prompt Playgrounds / [Discord](https://discord.gg/gHPS9jjfbs) / [GitHub](https://github.com/promptfoo/promptfoo)
|
||||
* [Tensor Trust](https://tensortrust.ai/) / [GitHub](https://github.com/HumanCompatibleAI/tensor-trust) or [Gandalf](https://gandalf.lakera.ai/) / [GitHub](https://github.com/lakeraai) - Prompting Skill Games
|
||||
* [RedTeam Arena](https://redarena.ai/) - AI Jailbreak Game
|
||||
|
|
@ -219,7 +225,7 @@
|
|||
* ⭐ **[LLM Explorer](https://llm-explorer.com/)** or [LifeArchitect](https://lifearchitect.ai/models-table/) - LLM Databases / Indexes
|
||||
* ⭐ **[FutureTools](https://www.futuretools.io/?pricing-model=free)** - AI Directory / [Discord](https://discord.gg/WBk4ZDW6A9)
|
||||
* ⭐ **[Google Labs](https://labs.google/)** or [Google Labs FX](https://labs.google/fx) - Google AI Experiments / [Subreddit](https://www.reddit.com/r/labsdotgoogle/) / [Discord](https://discord.gg/googlelabs)
|
||||
* [Perchance](https://perchance.org/generators) / [Discord](https://discord.gg/43qAQEVV9a) or [WebSim](https://websim.com/) / [Subreddit](https://www.reddit.com/r/WebSim/) / [Discord](https://discord.gg/websim) - Simple AI Builders
|
||||
* [Perchance](https://perchance.org/generators) / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a) or [WebSim](https://websim.com/) / [Subreddit](https://www.reddit.com/r/WebSim/) / [Discord](https://discord.gg/websim) - Simple AI Builders
|
||||
* [YP for AI](https://www.ypforai.com) - AI Directory
|
||||
* [LLM Resources Hub](https://llmresourceshub.vercel.app/) - AI Directory
|
||||
* [Awesome AI Tools](https://github.com/mahseema/awesome-ai-tools) - AI Directory
|
||||
|
|
@ -230,56 +236,53 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ AI Benchmarks
|
||||
# ► AI Benchmarks
|
||||
|
||||
* ⭐ **[Artificial Analysis](https://artificialanalysis.ai/)** - Chatbot Benchmarks / [X](https://x.com/ArtificialAnlys)
|
||||
* ⭐ **[LMArena](https://lmarena.ai/leaderboard)** - Chatbot Leaderboards / Benchmarks / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[Artificial Analysis](https://artificialanalysis.ai/)** - Chatbot, Image, and Video Benchmarks / [X](https://x.com/ArtificialAnlys)
|
||||
* ⭐ **[Kaggle Benchmarks](https://www.kaggle.com/benchmarks)** - Chatbot Leaderboards / Benchmarks
|
||||
* ⭐ **[LMArena](https://lmarena.ai/leaderboard)** - Chatbot Leaderboards / Benchmarks / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [OpenRouter](https://openrouter.ai/rankings) - Chatbot Popularity Rankings / [Discord](https://discord.gg/fVyRaUDgxW) / [GitHub](https://github.com/OpenRouterTeam)
|
||||
* [SEAL LLM Leaderboards](https://scale.com/leaderboard) - Chatbot Leaderboards
|
||||
* [Yupp Leaderboard](https://yupp.ai/leaderboard) - Chatbot Leaderboards / Benchmarks
|
||||
* [RankedAGI](https://rankedagi.com/) - Chatbot Leaderboards / Benchmarks
|
||||
* [Kaggle Benchmarks](https://www.kaggle.com/benchmarks) - Chatbot Leaderboards / Benchmarks
|
||||
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks / [GitHub](https://github.com/allenai/WildBench)
|
||||
* [Unified-Bench](https://docs.google.com/spreadsheets/d/1Dy64rbMzx5xqTLPsbTKhpUKQS0mvjns2nIS9BWvOCTU/) - Chatbot Benchmarks
|
||||
* [Wolfram LLM Benchmarking Project](https://www.wolfram.com/llm-benchmarking-project/) - Chatbot Leaderboards / Benchmarks
|
||||
* [ZeroEval](https://huggingface.co/spaces/allenai/ZeroEval) - Chatbot Leaderboard / [GitHub](https://github.com/WildEval/ZeroEval)
|
||||
* [LLM Stats](https://llm-stats.com/) - Chatbot Leaderboard
|
||||
* [OpenLM Arena](https://openlm.ai/chatbot-arena/) - Chatbot Leaderboard
|
||||
* [OpenRouter](https://openrouter.ai/rankings) - Chatbot Popularity Rankings / [Discord](https://discord.gg/fVyRaUDgxW) / [GitHub](https://github.com/OpenRouterTeam)
|
||||
* [Open VLM Leaderboard](https://huggingface.co/spaces/opencompass/open_vlm_leaderboard) - VLM Benchmark Leaderboard Aggregator
|
||||
* [Wolfram LLM Benchmarking Project](https://www.wolfram.com/llm-benchmarking-project/) - Chatbot Leaderboards / Benchmarks
|
||||
|
||||
***
|
||||
|
||||
## ▷ Specialized Benchmarks
|
||||
|
||||
* ⭐ **[Open VLM Leaderboard](https://huggingface.co/spaces/opencompass/open_vlm_leaderboard)** - VLM Benchmark Leaderboard Aggregator
|
||||
* [Alpha Arena](https://nof1.ai/) - AI Investing Ability Benchmark
|
||||
* [DesignArena](https://www.designarena.ai/) - AI Design Benchmarks
|
||||
* [EQ-Bench](https://eqbench.com/) - AI Emotional Intelligence Benchmarks / [GitHub](https://github.com/EQ-bench/eqbench3)
|
||||
* [MathArena](https://matharena.ai/) - AI Mathematics Competitions / Benchmarks
|
||||
* [Simple Bench](https://simple-bench.com/) - AI Human Reasoning Benchmarks
|
||||
* [AI Elo](https://aielo.co/) - AI Game Competitions / Benchmarks
|
||||
* [VoxelBench](https://voxelbench.ai/) - Minecraft AI Generation Benchmark
|
||||
|
||||
***
|
||||
|
||||
## ▷ Coding AI Benchmarks
|
||||
## ▷ Coding Benchmarks
|
||||
|
||||
* ⭐ **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** - Coding AI Leaderboard / Benchmarks / [GitHub](https://github.com/evalplus/evalplus)
|
||||
* ⭐ **[LiveSWEBench](https://liveswebench.ai/)** - Software Engineering AI Leaderboard / Benchmarks
|
||||
* ⭐ **[SWEBench](https://www.swebench.com/)** - Software Engineering AI Leaderboard / Benchmarks / [GitHub](https://github.com/princeton-nlp/SWE-bench)
|
||||
* [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) - Coding AI Leaderboard / Benchmarks
|
||||
* [AIBenchmarks](https://aibenchmarks.net/) - Coding AI Leaderboard / Benchmarks / [GitHub](https://github.com/panilya/awesome-ai-benchmarks)
|
||||
* [WebDev Arena](https://web.lmarena.ai/) - Coding AI Leaderboard / Benchmarks
|
||||
* [LiveCodeBench](https://livecodebench.github.io/leaderboard.html) - Coding AI Leaderboard / Benchmarks
|
||||
* [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) - Coding AI Leaderboard / Benchmarks
|
||||
* [Big Code Models Leaderboard](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboard / Benchmarks
|
||||
* [SWEBench](https://www.swebench.com/) - Software Engineering AI Leaderboard / Benchmarks / [GitHub](https://github.com/princeton-nlp/SWE-bench)
|
||||
* [multi-swe-bench](https://github.com/multi-swe-bench/multi-swe-bench) - Software Engineering AI Leaderboard / Benchmarks
|
||||
|
||||
***
|
||||
|
||||
# ► AI Writing Tools
|
||||
|
||||
* ⭐ **[TextFX](https://textfx.withgoogle.com/)** / [GitHub](https://github.com/google/generative-ai-docs/tree/main/demos/palm/web/textfx) or [Rytr](https://rytr.me/) - AI Creative Writing Tools / No Sign-Up
|
||||
* [Scrip AI](https://scripai.com/) (No Sign-Up), [INK](https://app.inkforall.com/tools), [QuickPen AI](https://quickpenai.com/) - Online AI Text Tools
|
||||
* [Scrip AI](https://scripai.com/) (No Sign-Up), [INK](https://app.inkforall.com/tools), [Toolbaz](https://toolbaz.com/) or [QuickPen AI](https://quickpenai.com/) - Online AI Text Tools
|
||||
* [Dreamily](https://dreamily.ai/) - Story Writing AI
|
||||
* [PerchanceStory](https://perchancestory.com/) - Story Writing AI
|
||||
* [Quarkle](https://quarkle.ai/) - AI Writing Assistant
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Grammar Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_grammar_check)
|
||||
|
||||
***
|
||||
|
|
@ -287,19 +290,20 @@
|
|||
# ► Video Generation
|
||||
|
||||
* 🌐 **[VBench](https://huggingface.co/spaces/Vchitect/VBench_Leaderboard)** - Video Generation Model Leaderboard
|
||||
* [AI Studio](https://aistudio.google.com/generate-video) - Veo 2 / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* [Opal Veo 3](https://opal.withgoogle.com/?flow=drive:/16qMbrhlc7gjTfI1zpnKbyoBxEcDRi4om&shared&mode=app) - Veo 3 / Unlimited / US IP or VPN Required / Use Alt Account
|
||||
* [Vidu](https://www.vidu.studio/) - 10 Monthly / [Discord](https://discord.gg/3pDU8fmQ8Y)
|
||||
* [Genmo](https://www.genmo.ai/) - 30 Monthly / [GitHub](https://github.com/genmoai/mochi)
|
||||
* [PixVerse](https://pixverse.ai/) - 2 Daily / [Discord](https://discord.com/invite/MXHErdJHMg)
|
||||
* [Wan AI](https://wan.video/) or [Wan 2.1 Fast](https://huggingface.co/spaces/multimodalart/wan2-1-fast) / 10 Daily / Image to Video / [GitHub](https://github.com/Wan-Video/Wan2.1)
|
||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 150 Monthly
|
||||
* ⭐ **[Grok Imagine](https://grok.com/imagine)** - 100 Daily / Imagine 0.9 / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* [Sora](https://openai.com/index/sora/) - 6 Daily / [Signup Guide](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sora) / [Remove Watermarks](https://unmarkit.app/sora), [2](https://colab.research.google.com/drive/1Iqu4RZ9WAhcbO1Jn0wCkMOsw2l1p6z62)
|
||||
* [Bing Create](https://www.bing.com/images/create) - Sora 1 / No Image Input
|
||||
* [Qwen](https://chat.qwen.ai/) - 10 Daily / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* [Bing Create](https://www.bing.com/images/create) - Unlimited / Sora / No Image Input
|
||||
* [FastVideo](https://fastwan.fastvideo.org/) - Unlimited / [GitHub](https://github.com/hao-ai-lab/FastVideo/)
|
||||
* [Hailuo AI](https://hailuoai.video/) / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||
* [PigenAI](https://pigenai.art/) - 10 Per Hour
|
||||
* [Whisk](https://labs.google/fx/en/tools/whisk) - Veo 3 / 10 Monthly
|
||||
* [Vheer](https://vheer.com/) - Unlimited / No Sign-Up
|
||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 2 Daily
|
||||
* [Opal Veo 3](https://opal.withgoogle.com/?flow=drive:/16qMbrhlc7gjTfI1zpnKbyoBxEcDRi4om&shared&mode=app) - Veo 3 / Use Alt Account
|
||||
* [PixVerse](https://pixverse.ai/) - 3 Daily / [Discord](https://discord.com/invite/MXHErdJHMg)
|
||||
* [Genmo](https://www.genmo.ai/) - 30 Monthly / [GitHub](https://github.com/genmoai/mochi)
|
||||
* [LMArena](https://discord.com/invite/lmarena) - 5 Daily / Random Models / Discord Only / Check #how-to-video-bot / End-Watermark
|
||||
* [Vivago](https://vivago.ai/) - 1 Daily
|
||||
* [LMArena](https://discord.com/invite/lmarena) - 5 Daily / Discord Only / Check #How-To / End-Watermark / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* [Wan AI](https://wan.video/) or [Wan 2.1 Fast](https://huggingface.co/spaces/multimodalart/wan2-1-fast) / 10 Daily / Image to Video / [GitHub](https://github.com/Wan-Video/Wan2.1)
|
||||
* [FramePack](https://github.com/colinurbs/FramePack-Studio) - Desktop App / Local Models / NVIDIA GPU Required
|
||||
* [Eggnog](https://www.eggnog.ai/) - AI Character Video Remixer + Editor
|
||||
|
||||
|
|
@ -307,35 +311,34 @@
|
|||
|
||||
# ► Image Generation
|
||||
|
||||
* 🌐 **[Imgsys Rankings](https://imgsys.org/rankings)** - Image Generator Benchmarks / Leaderboards
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/generate-image)**, [Gemini](https://gemini.google.com/), or [Whisk](https://labs.google/fx/en/tools/whisk) - nano-banana (editing) / Imagen 4 + Ultra / 100 per day (Gemini) / Region-Based / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - Multiple Generators / Editing / Google Login After 3 / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** / 30 Per 24 Hours / Editing / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** - Imagen 3 / Unlimited / Region-Based / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[Grok](https://grok.com/)** / 20 Per 2 Hours / Editing / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Mage](https://www.mage.space/)** / Flux Schnell / [Discord](https://discord.com/invite/GT9bPgxyFP)
|
||||
* ⭐ **[FLUX.1 Schnell](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)**, [FLUX.1-Kontext-Dev](https://huggingface.co/spaces/black-forest-labs/FLUX.1-Kontext-Dev) or [FLUX-Pro-Unlimited](https://huggingface.co/spaces/NihalGazi/FLUX-Pro-Unlimited) / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / No Sign-Up / Editing (Kontext)
|
||||
* [Yupp.ai](https://yupp.ai/) / Google Login Required
|
||||
* [Perchance](https://perchance.org/ai-text-to-image-generator), [2](https://perchance.org/ai-photo-generator) / Unlimited / No Sign-Up
|
||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 60 Daily / Seedream 3.0 / 4 Gens Per Prompt
|
||||
* [ISH](https://ish.junioralive.in/) / Unlimited / Flux Kontext (dev) / Editing / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [imgsys](https://imgsys.org/) / Unlimited / Compare Generators / No Sign-Up
|
||||
* [Art Genie](https://artgenie.pages.dev/) / Flux Schnell / Unlimited / No Sign-Up
|
||||
* [Bing Create](https://www.bing.com/images/create) - Unlimited / GPT-4o / No Image Input
|
||||
* [Genspark](https://www.genspark.ai/) / Unlimited / Flux Schnell / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
* [Text2Image](https://taterai.github.io/Text2Image-Generator.html) / Unlimited / Flux Schnell
|
||||
* [Loras](https://www.loras.dev/) / Flux Schnell / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev)
|
||||
* [AIGazou](https://muryou-aigazou.com/) / Unlimited / 10 GPT Image 1 or Seedream 3.0 Daily / [Discord](https://discord.gg/v6KzUbPeKh)
|
||||
* [Recraft](https://www.recraft.ai/) / 30 Daily / [Discord](https://discord.gg/recraft)
|
||||
* [Reve Image](https://preview.reve.art/) / 20 Daily / Editing
|
||||
* [Coze](https://space.coze.cn/) / Seadream 4.0 / SoTA Image Gen / 50 Daily / US Select CA
|
||||
* [ZonerAI](https://zonerai.com/) / Unlimited / Editing
|
||||
* [Ernie](https://ernie.baidu.com/) / Unlimited / Editing
|
||||
* [Remade AI](https://app.remade.ai/) - 40 GPT-Image-1 / 40 Imagen 4 / 80 Flux Kontext / Editing
|
||||
* [AI Gallery](https://aigallery.app/) / Unlimited / No Sign-Up
|
||||
* 🌐 **[LMArena Text to Image](https://lmarena.ai/leaderboard/text-to-image)** or **[LMArena Editing](https://lmarena.ai/leaderboard/image-edit)** - Image Generator Benchmarks / Leaderboards
|
||||
* ⭐ **[Gemini](https://gemini.google.com/)** - Nano Banana (100 per day) / Nano Banana Pro (3 per day) / Sign-Up Required / Region-Based / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/generate-image)** or [Whisk](https://labs.google/fx/en/tools/whisk) - Imagen 4 + Ultra / Nano Banana / Sign-Up Required / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Bing Create](https://www.bing.com/images/create)** - Unlimited / GPT-4o / MAI-Image-1 / Editing / Sign-Up Required
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - Nano Banana Pro / Multiple Generators / Editing / Reset Limits w/ Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[Dreamina](https://dreamina.capcut.com/ai-tool/home)** - 15 Prompts Daily / Seedream 4.0 / Sign-Up Required
|
||||
* ⭐ **[Hunyuan Image Generation](https://hunyuan.tencent.com/image/en)** - Hunyuan Image 3.0 / Unlimited
|
||||
* [Grok](https://grok.com/) - 96 Daily / Editing / Sign-Up Required / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* [Qwen](https://chat.qwen.ai/) - 30 Per 24 Hours / Editing / Sign-Up Required / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* [Yupp.ai](https://yupp.ai/) - Nano Banana Pro / GPT Image 1 / Seedream 4 / Qwen-Image / Google Login / [Discord](https://discord.com/invite/yuppai)
|
||||
* [ISH](https://ish.chat/) - Unlimited / GPT Image 1 mini / Flux Kontext (dev) / Editing / No Sign-Up /[Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [PrisimAI](https://prisimai.github.io/PrisimAI/) - Seadream 4 / Nano Banana Pro / GPT Image-1 Mini
|
||||
* [Image-Editor](https://image-editor.org/) - Unlimited / Editing / Nano Banana
|
||||
* [Recraft](https://www.recraft.ai/) - 30 Daily / Sign-Up Required / [Discord](https://discord.gg/recraft)
|
||||
* [PigenAI](https://pigenai.art/) - Unlimited / Imagen 4 / Qwen
|
||||
* [Ernie](https://ernie.baidu.com/) - Unlimited / Editing / Sign-Up Required
|
||||
* [ZonerAI](https://zonerai.com/) - Unlimited / Editing
|
||||
* [Perchance](https://perchance.org/ai-photo-generator), [2](https://perchance.org/ai-text-to-image-generator) - Chroma / Unlimited / No Sign-Up / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
||||
* [ImageFX](https://labs.google/fx/tools/image-fx) - Imagen 4 / Unlimited / Region-Based / Sign-Up Required / [Discord](https://discord.com/invite/googlelabs)
|
||||
* [Vheer](https://vheer.com/) - Unlimited / Flux Kontext Dev / Flux Schnell
|
||||
* [Image Editor](https://theresanaiforthat.com/@taaft/image-to-image-generator/) - Unlimited / Editing / Flux Kontext Dev
|
||||
* [Mage](https://www.mage.space/) / [Discord](https://discord.com/invite/GT9bPgxyFP), [Tater AI](https://taterai.github.io/Text2Image-Generator.html), [Loras](https://www.loras.dev/) / [X](https://x.com/tater_ai) / [GitHub](https://github.com/Nutlope/loras-dev), [ToolBaz](https://toolbaz.com/image/ai-image-generator), [Genspark](https://www.genspark.ai/) / [Discord](https://discord.com/invite/CsAQ6F4MPy), [AI Gallery](https://aigallery.app/) / [Telegram](https://t.me/aigalleryapp), [Seedream](https://seedream.pro/) or [Art Genie](https://artgenie.pages.dev/) - Flux Schnell
|
||||
* [AIGazou](https://muryou-aigazou.com/) - Flux / Stable Diffustion / Chroma / Unlimited / No Sign-Up / SeeDream 3 / GPT 1 Image / 10 Daily / Signup Required / [Discord](https://discord.gg/v6KzUbPeKh)
|
||||
* [Reve Image](https://app.reve.com) - 20 Daily / Editing / Sign-Up Required / [X](https://x.com/reve) / [Discord](https://discord.gg/Nedxp9fYUZ)
|
||||
* [Coze](https://space.coze.cn/) - Seadream 4.0 / SoTA Image Gen / 50 Daily / Sign-Up with Phone # Required/ US Select CA
|
||||
* [imgsys](https://imgsys.org/) - Compare Generators / Unlimited / No Direct Mode
|
||||
* [Diffusers Image Outpaint](https://huggingface.co/spaces/fffiloni/diffusers-image-outpaint) - AI Image Extender / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning)
|
||||
* [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
|
||||
* [PixelArtGenerator](https://pixelartgenerator.app/) - AI Pixel Art Generator / Converter
|
||||
* [Interactive Scenes](https://lumalabs.ai/interactive-scenes) - Generate Interactive Scenes / [Discord](https://discord.com/invite/ASbS3EykXm)
|
||||
* [Illusion Diffusion](https://huggingface.co/spaces/AP123/IllusionDiffusion) - Illusion Artwork Generator / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning)
|
||||
|
||||
|
|
@ -355,10 +358,10 @@
|
|||
* [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)
|
||||
* [Radiata](https://ddpn08.github.io/Radiata/en/)
|
||||
* [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge)
|
||||
* [ComfyUI-Zluda](https://github.com/patientx/ComfyUI-Zluda)
|
||||
* [Amuse](https://www.amuse-ai.com/) - Stable Diffusion for AMD Systems
|
||||
* [Amuse](https://www.amuse-ai.com/) - Stable Diffusion for AMD Systems / [X](https://x.com/Amuse_AI)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -371,7 +374,7 @@
|
|||
* [ImagePromptGuru](https://imagepromptguru.net/) or [CLIP Interrogator](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) / [Colab](https://colab.research.google.com/github/pharmapsychotic/clip-interrogator/blob/main/clip_interrogator.ipynb), [2](https://colab.research.google.com/github/pharmapsychotic/clip-interrogator/blob/open-clip/clip_interrogator.ipynb) - Determine Image Prompts
|
||||
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Extension for Automatic1111
|
||||
* [AI Horde](https://stablehorde.net/) - Stable Diffusion GPU Hoarde / [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)
|
||||
* [IOPaint](https://www.iopaint.com/) - Image Fill / Item Removal / [Colab](https://colab.research.google.com/drive/1TKVlDZiE3MIZnAUMpv2t_S4hLr6TUY1d?usp=sharing)
|
||||
* [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
|
||||
|
||||
|
|
@ -387,10 +390,8 @@
|
|||
* [MusicFX](https://labs.google/fx/tools/music-fx) / Region-Based
|
||||
* [WolframTones](https://tones.wolfram.com/) / No Sign-Up
|
||||
* [Stable Audio](https://www.stableaudio.com/) / 10 Monthly / [Discord](https://discord.com/invite/stablediffusion)
|
||||
* [Udio](https://www.udio.com/) / 3 Daily / [Discord](https://discord.gg/udio)
|
||||
* [audio visual generator](https://fredericbriolet.com/avg/) / No Sign-Up
|
||||
* [Fake Music Generator](https://www.fakemusicgenerator.com/) / No Sign-Up
|
||||
* [MusicGen](https://huggingface.co/spaces/facebook/MusicGen) / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / No Sign-Up / [Colab](https://colab.research.google.com/drive/1ECmNEoXk8kvnLEMBMF2LY82E7XmIG4yu) / [GitHub](https://github.com/facebookresearch/audiocraft/blob/main/docs/MUSICGEN.md)
|
||||
* [MusicGen](https://github.com/facebookresearch/audiocraft/blob/main/docs/MUSICGEN.md) / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / No Sign-Up / [Colab](https://colab.research.google.com/drive/1ECmNEoXk8kvnLEMBMF2LY82E7XmIG4yu)
|
||||
* [Sonauto](https://sonauto.ai/) / Unlimited / [Discord](https://discord.gg/pfXar3ChH8)
|
||||
* [Waveformer](https://waveformer.replicate.dev/) / [GitHub](https://github.com/fofr/waveformer)
|
||||
* [SOUNDRAW](https://soundraw.io/) / No Sign-Up
|
||||
|
|
@ -414,6 +415,7 @@
|
|||
* [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)
|
||||
* [Google Speech Gen](https://aistudio.google.com/generate-speech)
|
||||
* [TTS-WebUI](https://ttswebui.com/) / No Sign-Up / [Colab](https://colab.research.google.com/github/rsxdalv/tts-webui/blob/main/notebooks/google_colab.ipynb) / [Discord](https://discord.gg/V8BKTVRtJ9) / [GitHub](https://github.com/rsxdalv/TTS-WebUI)
|
||||
* [FakeYou](https://fakeyou.com/) / No Sign-Up / [Discord](https://discord.gg/fakeyou)
|
||||
* [Tortoise TTS](https://github.com/neonbjb/tortoise-tts) / No Sign-Up
|
||||
* [Bark](https://github.com/suno-ai/bark) / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / [Colab](https://colab.research.google.com/drive/1eJfA2XUa-mXwdMy7DoYKVYHI1iTd9Vkt?usp=sharing) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
||||
|
|
@ -438,6 +440,7 @@
|
|||
* [FreeTTS](https://freetts.com/)
|
||||
* [Hume](https://www.hume.ai/) / No Sign-Up
|
||||
* [NaturalReaders](https://www.naturalreaders.com/online/) / No Sign-Up
|
||||
* [AIVocal](https://aivocal.io/) / Google Account Required
|
||||
* [Moe TTS](https://huggingface.co/spaces/skytnt/moe-tts) / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / [Colab](https://colab.research.google.com/drive/14Pb8lpmwZL-JI5Ub6jpG4sz2-8KS0kbS?usp=sharing)
|
||||
|
||||
***
|
||||
|
|
@ -464,11 +467,12 @@
|
|||
* [MDX23](https://github.com/jarredou/MVSEP-MDX23-Colab_v2)
|
||||
* [Music-Source-Separation](https://github.com/jarredou/Music-Source-Separation-Training-Colab-Inference)
|
||||
* [VocalRemover](https://vocalremover.org/)
|
||||
* [Audacity Effects](https://www.audacityteam.org/download/openvino/) / [GitHub](https://github.com/intel/openvino-plugins-ai-audacity)
|
||||
* [Ultimate Vocal Remover](https://colab.research.google.com/github/NaJeongMo/Colaboratory-Notebook-for-Ultimate-Vocal-Remover/blob/main/Vocal%20Remover%205_arch.ipynb)
|
||||
* [Remove Vocals](https://www.remove-vocals.com/), [2](https://www.acapella-extractor.com/)
|
||||
* [vocali](https://vocali.se/en)
|
||||
* [mazmazika](https://www.mazmazika.com/)
|
||||
* [ezstems](https://ezstems.com/)
|
||||
* [Vocali.se](https://vocali.se/en)
|
||||
* [Mazmazika](https://www.mazmazika.com/)
|
||||
* [Ezstems](https://ezstems.com/)
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
426
docs/audio.md
426
docs/audio.md
|
|
@ -8,71 +8,82 @@
|
|||
|
||||
## ▷ Streaming Apps
|
||||
|
||||
* 🌐 **[Music Megathread](https://github.com/MoonWalker440/Music-Megathread/)** - Streaming App Index
|
||||
* 🌐 **[/music streaming/](https://dan.valeena.dev/guides/music-streaming/)**, [2](https://rentry.co/musicstreaming) or [Wiki Comparisons](https://en.wikipedia.org/wiki/Comparison_of_music_streaming_services) - Streaming Service Comparisons
|
||||
* ↪️ **[Spotify Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio/#wiki_.25BA_spotify_tools)**
|
||||
* ↪️ **[YouTube Music Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_youtube_music)**
|
||||
* ⭐ **[Custom YouTube Music](https://github.com/th-ch/youtube-music)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/)
|
||||
* [Deezer](https://www.deezer.com/) - Streaming
|
||||
* ⭐ **[Pear Desktop](https://github.com/pear-devs/pear-desktop)** - YouTube Music Client w/ Adblock
|
||||
* [Deezer](https://www.deezer.com/) - Streaming / Sign-Up Required
|
||||
* [Moosync](https://moosync.app/) - YouTube / Spotify / [Discord](https://discord.gg/HsbqbRune3) / [GitHub](https://github.com/Moosync/Moosync)
|
||||
* [yewtube](https://github.com/mps-youtube/yewtube) - YouTube Music Client
|
||||
* [pulse](https://473999.net/pulse) or [Beatsync](https://www.beatsync.gg/) / [GitHub](https://github.com/freeman-jiang/beatsync) - Listen Together / Listening Parties
|
||||
* [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud)
|
||||
* [Nuclear](https://nuclearplayer.com/) - Streaming / [Discord](https://discord.com/invite/JqPjKxE) / [GitHub](https://github.com/nukeop/nuclear)
|
||||
* [FunkWhale](https://funkwhale.audio/) - Streaming
|
||||
* [FunkWhale](https://funkwhale.audio/) - Decentralized Streaming Platform
|
||||
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
||||
* [Muffon](https://muffon.netlify.app/) - Streaming
|
||||
* [PlayTorrio](https://playtorrio.pages.dev/) - Streaming / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
* [MusicBucket](https://musicbucket.net/) - Track / Share Music / Telegram
|
||||
* [Beatsync](https://www.beatsync.gg/) / [GitHub](https://github.com/freeman-jiang/beatsync) or [pulse](https://473999.net/pulse) - Listen Together / Listening Parties
|
||||
* [Sonosano](https://github.com/KRSHH/Sonosano) - Self-Hosted P2P Lossless Music Player / [Web App](https://sonosano.krshh.com/) / [Discord](https://discord.gg/Np7YYEVPhR)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Streaming Sites
|
||||
|
||||
* ⭐ **[YouTube Music](https://music.youtube.com/)** or [Nonoki](https://nonoki.com/music/) - YouTube Music WebUIs
|
||||
* ⭐ **[YouTube Music](https://music.youtube.com/)** or [Zozoki](https://zozoki.com/music/) - YouTube Music WebUIs
|
||||
* ⭐ **YouTube Music Tools** - [Enhancements](https://themesong.app/), [2](https://github.com/Sv443/BetterYTM) / [Library Delete](https://github.com/apastel/ytmusic-deleter) / [Upload Delete](https://rentry.co/tv4uo) / [Spotify Playlist Import](https://spot-transfer.vercel.app/), [2](https://github.com/mahdi-y/Spotify2YoutubeMusic), [3](https://github.com/linsomniac/spotify_to_ytmusic), [4](https://github.com/sigma67/spotify_to_ytmusic) / [Better Lyrics](https://better-lyrics.boidu.dev/) / [Discord](https://discord.gg/UsHE3d5fWF) / [GitHub](https://github.com/boidushya/better-lyrics)
|
||||
* ⭐ **[DAB Music Player](https://dabmusic.xyz/)** - Browser Music / Uses Qobuz / Lossless / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/EBKcDZwEHJ)
|
||||
* ⭐ **[DAB Music Player](https://dab.yeet.su/)**, [2](https://dabmusic.xyz/) - Browser Music / Lossless / Sign-Up Required / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/rmzH6ttgcC)
|
||||
* ⭐ **[Reddit Music Player](https://reddit.musicplayer.io/)** - Subreddit Music Player
|
||||
* ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs
|
||||
* [Spotify Web Player](https://open.spotify.com/) / [Enhanced UI](https://senpaihunters.github.io/SpotOn/) / [Lyrics](https://github.com/mantou132/Spotify-Lyrics), [2](https://greasyfork.org/en/scripts/377439) - Browser Music
|
||||
* [FreeListenOnline](https://freelistenonline.com/) - Browser Music
|
||||
* ⭐ **[ArtistGrid](https://artistgrid.cx/)** - Unreleased / [Render](https://dev.artistgrid.cx/) / [Discord](https://discord.gg/tns89b3w7R) / [GitHub](https://github.com/ArtistGrid/)
|
||||
* [Spotify](https://open.spotify.com/) - Web Player / [Enhanced UI](https://senpaihunters.github.io/SpotOn/) / [Lyrics](https://github.com/mantou132/Spotify-Lyrics) / [Lyrics Script](https://greasyfork.org/en/scripts/377439)
|
||||
* [squid.wtf](https://tidal.squid.wtf), [Monochrome](https://monochrome.tf/), [2](https://monochrome.prigoana.com/) / [GitHub](https://github.com/eduardprigoana/monochrome), [Digger](https://digger-ui.vercel.app/) or [BiniLossless](https://music.binimum.org/) - HiFi Tidal Instances / [Full List](https://github.com/eduardprigoana/hifi-instances/)
|
||||
* [Audiomack](https://audiomack.com/) - Browser Music
|
||||
* [Pandora](https://www.pandora.com/) - Browser Music
|
||||
* [Jango](https://jango.com/) - Browser Music
|
||||
* [Jamendo](https://www.jamendo.com/) - Browser Music
|
||||
* [YAMS](https://yams.tf/) - Browser Music / Lossless / Sign-Up Required
|
||||
* [SoundClick](https://www.soundclick.com/default.cfm) - Browser Music
|
||||
* [Mixupload](https://mixupload.com/) - Browser Music
|
||||
* [zvu4no](https://zvu4no.org/) - Browser Music / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Tancpol](https://tancpol.net/) - Browser Music / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Saavn Web](https://saavn-web-ui.vercel.app/) - Browser Music / [GitHub](https://github.com/wiz64/saavn-web-ui)
|
||||
* [zvu4no](https://zvu4no.org/) or [Tancpol](https://tancpol.net/) - Russian Music / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Saavn Web](https://saavn-web-ui.vercel.app/) - JioSaavn Web Client / [GitHub](https://github.com/wiz64/saavn-web-ui)
|
||||
* [Ballsack TV](https://bsky.app/profile/feed.ballsack.tv) - MTV Style User-Submitted Music Video Feed / [Discord](https://discord.gg/KT2Dht4zcZ)
|
||||
* [Hype Machine](https://hypem.com/popular) - Rising
|
||||
* [Bandcamp](https://bandcamp.com/discover/free-music) - Free Music Release Platform
|
||||
* [Mirlo](https://mirlo.space/) - Free Music Release Platform
|
||||
* [Newgrounds Audio](https://www.newgrounds.com/audio) - User-Made Electronic Music
|
||||
* [Audius](https://audius.co/) - User Made Music
|
||||
* [AudionautiX](https://audionautix.com/) - Mood-Based Streaming
|
||||
* [LostMyspace](http://lostmyspace.com/) - Lost Myspace Songs
|
||||
* [Openwhyd](https://openwhyd.org/) - Music Sharing Community / [Chrome](https://chromewebstore.google.com/detail/openwhyd-%E2%9C%9A-track/foohaghobcolamikniehcnnijdjehfjk)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Genre Specific Streaming
|
||||
|
||||
* [The Urban Emporium](https://www.youtube.com/@theurbanemporium204/playlists) - Hip-Hop
|
||||
* [DatPiff](https://datpiff.com/) - Hip-Hop / Mixtapes
|
||||
* [MixtapeMonkey](https://mixtapemonkey.com/) - Hip-Hop / Mixtapes / [Discord](https://discord.gg/4Vsb73fQgd)
|
||||
* [DMO](https://dance-music.org/) - Electronic
|
||||
* [Vapor Archive](https://vaporarchive.neocities.org/) - Vaporwave
|
||||
* [Keygen Music](https://keygenmusic.tk/) - Keygen Music
|
||||
* [Hype Machine](https://hypem.com/popular) - Rising
|
||||
* [CitizenFreak](https://citizenfreak.com/) - Canadian Music
|
||||
* [Irama Nusantara](https://www.iramanusantara.org/en) - Indonesian Music
|
||||
* [Dream of the 90s](https://www.youtube.com/@Dreamofthe90s/playlists) - Obscure 90s
|
||||
* [OperaOnVideo](https://www.operaonvideo.com/) - Opera Recordings
|
||||
* [Classical Music Only](https://classicalmusiconly.com/) or [musopen](https://musopen.org/music/) - Classical Music
|
||||
* [New Age Music](https://newage.one/) - New Age Music
|
||||
* [Bandcamp](https://bandcamp.com/discover/free-music) - Free Music Release Platform
|
||||
* [Mirlo](https://mirlo.space/) - Free Music Release Platform
|
||||
* [Newgrounds Audio](https://www.newgrounds.com/audio) - User-Made Electronic Music
|
||||
* [Audius](https://audius.co/) - User Made Music
|
||||
* [AudionautiX](https://audionautix.com/) - Mood-Based Streaming
|
||||
* [Youtaite](https://www.youtaite.com/) - Youtaite Resources / Songs
|
||||
* [LostMyspace](http://lostmyspace.com/) - Lost Myspace Songs
|
||||
* [Musico](https://www.musi-co.com/listen/) - AI Generated Songs
|
||||
* [BitMidi](https://bitmidi.com/) - Stream / Download MIDI Files
|
||||
|
||||
***
|
||||
|
||||
# ► Specialty Streaming
|
||||
|
||||
* ⭐ **[UCSB Cylinders](https://cylinders.library.ucsb.edu/index.php)** - Cylinder Audio Archive
|
||||
* [CitizenFreak](https://citizenfreak.com/) - Canadian Music
|
||||
* [Irama Nusantara](https://www.iramanusantara.org/en) - Indonesian Music
|
||||
* [Dream of the 90s](https://www.youtube.com/@Dreamofthe90s/playlists) - Obscure 90s
|
||||
* [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/) or [Tinfoil](https://www.tinfoil.com/) - Phonograph / Gramophone Recordings
|
||||
* [i78s](https://i78s.org/), [Archeophone](https://www.archeophone.org/html/languages/en/index.en.html), [CLPGS](https://www.clpgs.org.uk/) or [Tinfoil](https://www.tinfoil.com/) - 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
|
||||
* [DigLib](https://diglib.library.vanderbilt.edu/ama-browse.pl) - East African Recordings
|
||||
* [Openwhyd](https://openwhyd.org/) - Music Sharing Community / [Chrome](https://chromewebstore.google.com/detail/openwhyd-%E2%9C%9A-track/foohaghobcolamikniehcnnijdjehfjk)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -81,8 +92,7 @@
|
|||
* 🌐 **[365 Radio](https://365.ilysm.nl/)** - List of YouTube DJ Channels
|
||||
* ⭐ **[bt.etree](https://bt.etree.org/)** - Concert Recordings / Torrents
|
||||
* ⭐ **[hate5six](https://hate5six.com/)** - Concert Recordings
|
||||
* ⭐ **[BBC Radio 1 Essential Mix](https://rentry.co/FMHYB64#bbc-essential)** - BBC Essential Mix / [Discovery Guide](https://rentry.co/musicdiscovery#bbc-radio-1-essential-mix)
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** / [DL Script](https://rentry.co/7preswd7) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** - A State of Trance Archive / DJ Mixes / [DL Script](https://rentry.co/7preswd7)
|
||||
* [JamBase](https://www.jambase.com/videos) - Concert Recordings
|
||||
* [Relisten](https://relisten.net/) - Concert Recordings / [GitHub](https://github.com/relistennet)
|
||||
* [DimeADozen](http://www.dimeadozen.org/) - Concert Recordings / Torrents
|
||||
|
|
@ -112,12 +122,69 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Radio Streaming
|
||||
## ▷ Podcast Streaming
|
||||
|
||||
* ↪️ **[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 / [SponsorBlock](https://spotsponsorblock.org/) / [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://www.podchaser.com/charts) or [Podstatus](https://podstatus.com/charts) - Podcast Charts / Databases
|
||||
* [Listen Notes](https://www.listennotes.com/) - Podcast Search Engine
|
||||
* [Rephonic](https://rephonic.com/graph) - Find Similar Podcasts
|
||||
* [Apple Podcasts](https://podcasts.apple.com/us/home)
|
||||
* [PodParadise](https://www.podparadise.com/)
|
||||
* [Podbean](https://www.podbean.com/)
|
||||
* [Podbay](https://podbay.fm/)
|
||||
* [BBC Podcasts](https://www.bbc.co.uk/sounds/podcasts) / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
* [Podcast Index](https://podcastindex.org/)
|
||||
* [Player FM](https://player.fm/)
|
||||
* [Podcast Republic](https://www.podcastrepublic.net/)
|
||||
* [Relay.fm](https://www.relay.fm/)
|
||||
* [PodClips](https://podclips.com/) - Podcast Clips
|
||||
* [podcast-dl](https://github.com/lightpohl/podcast-dl), [PodcastBulkDownloader](https://github.com/cnovel/PodcastBulkDownloader), [PodFetch](https://www.samtv.fyi/PodFetch/), [PodDL](https://github.com/freshe/poddl) or [PodGrab](https://github.com/akhilrex/podgrab) - Podcast Downloaders
|
||||
* [PodScripts](https://podscripts.co/) - Podcast Transcript Search
|
||||
* [OpenPodcast](https://openpodcast.dev) - Podcast Analytics
|
||||
* [castero](https://github.com/xgi/castero) - TUI Terminal Podcast Client
|
||||
* [Grover](https://www.microsoft.com/store/productId/9NBLGGH6C4BC) or [GPodder](https://gpodder.github.io/) - Podcast Client
|
||||
* [EchoWalk](https://www.echowalk.com/) - Turn Articles / Webpages into Podcasts
|
||||
* [PodSync](https://github.com/mxpv/podsync) - Turn YouTube Video into Podcasts
|
||||
|
||||
***
|
||||
|
||||
## ▷ Ambient / Relaxation
|
||||
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_relaxation)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_ios_relaxation)** - Ambient / Relaxation Mobile Apps
|
||||
* ⭐ **[Drone Zone](https://somafm.com/player/#/now-playing/dronezone)** or **[Music For Programming](https://musicforprogramming.net/latest/)** - Ambient Playlists
|
||||
* ⭐ **[myNoise](https://mynoise.net/)** - Customizable Ambient Sound Mixer
|
||||
* ⭐ **[Rainy Mood](https://www.rainymood.com/)** - Ambient Rain
|
||||
* [Rainbow Hunt](https://rainbowhunt.com/) - Ambient Rain
|
||||
* [Pluvior](https://pluvior.com/) - Ambient Rain
|
||||
* [Rainyscope](https://rainyscope.com/) - Ambient Rain
|
||||
* [ambiphone](https://ambiph.one/) or [Moodist](https://moodist.app/) - Simple Ambient Sound Mixers
|
||||
* [Ambie](https://ambieapp.com/) - Ambient Sound Mixer / App
|
||||
* [Click Bath](https://hamishlang.github.io/clickbath/) - Ambient Sound Mixer with Customizable Musical Scale / Instruments
|
||||
* [IMissTheOffice](https://imisstheoffice.eu/) - Ambient Office Sounds with Interactive UI
|
||||
* [Homesick](https://scoreascore.com/homesick) - Ambient Home Sounds
|
||||
* [VirtOcean](https://virtocean.com/) - Ambient Ocean Sounds
|
||||
* [imissmycafe](https://imissmycafe.com/) - Ambient Cafe Sounds
|
||||
* [Relaxing Sounds](https://unifycosmos.com/relaxing-sounds/), [Calmsound](https://www.calmsound.com/), [Click Relax](https://click-relax.com/), [Moszen](https://www.moszen.com/), [Zen Sounds](https://app.zenflowchart.com/zen-sounds) or [NoisyLoop](https://noisyloop.com/) - Ambient Soundscapes
|
||||
* [lofi-player](https://magenta.tensorflow.org/lofi-player), [2](https://magenta.github.io/lofi-player/) - Create Room / Lofi Player
|
||||
* [Wisdom Tree](https://github.com/HACKER097/wisdom-tree/) - TUI Concentration App
|
||||
* [Generative.fm](https://generative.fm/) or [Lofi Generator](https://lofigenerator.com/) - Generative Ambient Music
|
||||
* [Earth.fm](https://earth.fm/), [tree.fm](https://www.tree.fm/) or [Sounds of Maine](https://soundsofmaine.life/) - Field Recordings
|
||||
* [HaloMe](https://halome.nu/) - Halo Menu Screens
|
||||
* [CanvasCycle](http://www.effectgames.com/demos/canvascycle/) - 8-bit Scenes with Ambient Sounds
|
||||
* [Ambient Mixer](https://www.ambient-mixer.com/) - User-Made Soundscapes
|
||||
* [ChillOuts](http://www.chillouts.com/) - Meditation Aid
|
||||
* [You are Listening To LA](https://youarelistening.to/) - Ambient City Sounds & Live LAPD Police Radio
|
||||
* [TheWhiteNoiseMachine](https://thewhitenoisemachine.com/) - White Noise Generator
|
||||
|
||||
***
|
||||
|
||||
# ► Radio Streaming
|
||||
|
||||
* 🌐 **[FMSTREAM](https://fmstream.org/)**, **[Recommended Streams](https://github.com/deroverda/recommended-radio-streams)**, **[Station Index](https://en.wikipedia.org/wiki/List_of_Internet_radio_stations)** or **[Radio Browser](https://www.radio-browser.info/users)** - Radio Indexes
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_podcasts_.2F_radio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_podcasts_.2F_radio)** - Podcast / Radio Apps
|
||||
* ⭐ **[Radio Garden](https://radio.garden/)** / [Site Unblock](https://redd.it/18e12gf), [2](https://redd.it/13b53zs) or [RadioCast](https://www.radiocast.co/) - Worldwide Radio Globes
|
||||
* ⭐ **[BBC Sounds](https://www.bbc.co.uk/sounds)** - BBC Live & Catch-up Radio / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
* ⭐ **[BBC Sounds](https://www.bbc.co.uk/sounds)** - BBC Live & Catch-up Radio / UK VPN Required / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
* ⭐ **[Drive n Listen](https://drivenlisten.com/)** - Radio Driving Simulators
|
||||
* [iHeartRadio](https://www.iheart.com/), [Mixcloud](https://www.mixcloud.com/), [myTuner](https://mytuner-radio.com/) or [TuneIn](https://tunein.com/) - Podcasts / Radio
|
||||
* [Internet Archive](https://archive.org/details/audio?&sort=-downloads&page=1) - News / Classic Radio / Podcasts
|
||||
|
|
@ -126,23 +193,6 @@
|
|||
* [Braggoscope](https://www.braggoscope.com/) - BBC In Our Time Archive
|
||||
* [AudioFilesDrive](https://t.me/AudioFilesDrive) - Radio Drama Downloads
|
||||
* [radiobot](https://t.me/radiobot) - Radio / Telegram
|
||||
* [Radio Browser](https://www.radio-browser.info/users) - Open Radio Station Database / Index
|
||||
* [OnlineRadioBox](https://onlineradiobox.com/) - International Radio Directory / Playlists
|
||||
* [Streema](https://streema.com/) - Global AM/FM & Internet Radio Directory
|
||||
* [Radio.net](https://www.radio.net/) - International Radio Directory / Player
|
||||
* [myTuner](https://mytuner-radio.com/) - Global Radio & Podcasts / Multi-Platform
|
||||
* [TuneYou](https://tuneyou.com/) - Radio Directory / Discovery Focus
|
||||
* [LiveOnlineRadio](https://liveonlineradio.net/) - Global Radio Directory / Country & Genre
|
||||
* [WorldRadioMap](https://worldradiomap.com/) - Global Radio Map Interface
|
||||
* [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp) - Radio Directory / Hardware Integration
|
||||
* [radioline](https://www.radioline.co/) - Radio & Podcast Aggregator
|
||||
* [TheOneStopRadio](https://theonestopradio.com/) - Radio Directory
|
||||
* [Radio Guide](https://www.radioguide.fm/) - Radio Directory
|
||||
* [Xiph](https://dir.xiph.org/) - Icecast / Ogg Stream Directory
|
||||
* [UKRadioLive](https://ukradiolive.com/) or [RadioFeeds](http://www.radiofeeds.co.uk/) - UK Radio Station Directories
|
||||
* [ilovemusic](https://ilovemusic.de/) - German Radio Directory
|
||||
* [Tvradiotuner](https://tvradiotuner.com/) - TV & Radio Stream Aggregator
|
||||
* [VRadio](https://www.akouradio.com/) - Radio Directory / VRadio App
|
||||
* [raddio](https://raddio.net/) - Simple Radio Player / Directory
|
||||
* [Instant.audio](https://instant.audio/) - Minimalist Radio Player
|
||||
* [Flicker Radio](https://flickermini.pages.dev/radiostations) - Simple / Lightweight Radio Player
|
||||
|
|
@ -151,7 +201,7 @@
|
|||
* [LiveATC](https://www.liveatc.net/) - Air Traffic Radio Chatter
|
||||
* [Broadcastify](https://www.broadcastify.com/) - Live Emergency, Aircraft and Rail Radio
|
||||
* [OpenMHz](https://openmhz.com/) - Live Police Radio
|
||||
* [RadioReference](https://www.radioreference.com/) or [morsecode.me](https://morsecode.me/) - Morse Code Radio / Communication
|
||||
* [RadioReference](https://www.radioreference.com/) - Morse Code Radio / Communication
|
||||
* [Worldwide Radio](https://addons.mozilla.org/en-US/firefox/addon/worldwide-radio/) - Radio Extension
|
||||
|
||||
***
|
||||
|
|
@ -167,13 +217,14 @@
|
|||
* [Radiodeck](https://www.radiodeck.com/) - Online Radio Player / Directory
|
||||
* [Quasar Radio](https://kuasark.com/en/) - Online Radio Directory
|
||||
* [Freeform Radio](https://www.freeformradio.directory/) - Online Radio Directory
|
||||
* [AccuRadio](https://www.accuradio.com/) - Online Radio
|
||||
* [Q-3](https://www.q-3.eu/) - Online Radio
|
||||
* [DubLab](https://www.dublab.com/) - Online Radio
|
||||
* [BoxRadio](https://boxradio.net/) - Online Radio
|
||||
* [You Radio](https://play.you.radio/) - Online Radio
|
||||
* [Audiophile](https://audiophile.fm/) - Online Radio
|
||||
* [Vidbox Radio](https://vidbox.to/radio) - Online Radio
|
||||
* [Vijay's Radio Vibes](https://vijaysradiovibes.pages.dev/) - Random Radio Stations
|
||||
* [AccuRadio](https://www.accuradio.com/)
|
||||
* [Q-3](https://www.q-3.eu/)
|
||||
* [DubLab](https://www.dublab.com/)
|
||||
* [BoxRadio](https://boxradio.net/)
|
||||
* [You Radio](https://play.you.radio/)
|
||||
* [Audiophile](https://audiophile.fm/)
|
||||
* [Vidbox Radio](https://vidbox.cc/radio)
|
||||
* [ShoutCast](https://directory.shoutcast.com/) - User-Stations
|
||||
* [Zeno.fm](https://zeno.fm/) - User-Stations
|
||||
* [Live365](https://live365.com/) - User-Stations
|
||||
|
|
@ -192,7 +243,7 @@
|
|||
* [HappyHardcore](https://www.happyhardcore.com/radio/) - Hardcore Dance Radio
|
||||
* [Openings Moe](https://openings.moe/) - Anime Theme Radio
|
||||
* [Ongaku](https://ongaku.js.org/) or [r-a-d.io](https://r-a-d.io/) - Anime Radio
|
||||
* [Pool Suite](https://poolsuite.net/) - Summer Radio / [Mobile](https://play.google.com/store/apps/details?id=net.poolsuite.mobile)
|
||||
* [Pool Suite](https://poolsuite.net/) - Summer Radio
|
||||
* [J1 Radio](https://rec.torontocast.stream/player/) - J-Pop Radio
|
||||
* [LISTEN.moe](https://listen.moe/) - K-Pop Radio
|
||||
* [420.moe](https://420.moe/) - 420 Radio
|
||||
|
|
@ -206,50 +257,37 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Podcast Streaming
|
||||
## ▷ Radio Directories
|
||||
|
||||
* ↪️ **[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://www.podchaser.com/charts) or [Podstatus](https://podstatus.com/charts) - Podcast Charts / Databases
|
||||
* [Listen Notes](https://www.listennotes.com/) - Podcast Search Engine
|
||||
* [Rephonic](https://rephonic.com/graph) - Find Similar Podcasts
|
||||
* [Apple Podcasts](https://podcasts.apple.com/us/home) - Podcasts
|
||||
* [PodParadise](https://www.podparadise.com/) - Podcasts
|
||||
* [Podbean](https://www.podbean.com/) - Podcasts
|
||||
* [Podbay](https://podbay.fm/) - Podcasts
|
||||
* [BBC Podcasts](https://www.bbc.co.uk/sounds/podcasts) - Podcasts / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
* [Podcast Index](https://podcastindex.org/) - Podcasts
|
||||
* [Player FM](https://player.fm/) - Podcasts
|
||||
* [Podcast Republic](https://www.podcastrepublic.net/) - Podcasts
|
||||
* [Relay.fm](https://www.relay.fm/) - Podcasts
|
||||
* [PodClips](https://podclips.com/) - Podcast Clips
|
||||
* [podcast-dl](https://github.com/lightpohl/podcast-dl), [PodcastBulkDownloader](https://github.com/cnovel/PodcastBulkDownloader), [PodFetch](https://www.samtv.fyi/PodFetch/), [PodDL](https://github.com/freshe/poddl) or [PodGrab](https://github.com/akhilrex/podgrab) - Podcast Downloaders
|
||||
* [PodScripts](https://podscripts.co/) - Podcast Transcript Search
|
||||
* [OpenPodcast](https://openpodcast.dev) - Podcast Analytics
|
||||
* [castero](https://github.com/xgi/castero) - TUI Terminal Podcast Client
|
||||
* [Grover](https://www.microsoft.com/store/productId/9NBLGGH6C4BC) or [GPodder](https://gpodder.github.io/) - Podcast Client
|
||||
* [EchoWalk](https://www.echowalk.com/) - Turn Articles / Webpages into Podcasts
|
||||
* [PodSync](https://github.com/mxpv/podsync) - Turn YouTube Video into Podcasts
|
||||
* ⭐ **[Radio Garden](https://radio.garden/)** / [Site Unblock](https://redd.it/18e12gf), [2](https://redd.it/13b53zs), [WorldRadioMap](https://worldradiomap.com/), [GlobeRadio](https://globeradio.app/) or [RadioCast](https://www.radiocast.co/) - Worldwide Radio Globes
|
||||
* [LiveOnlineRadio](https://liveonlineradio.net/) - Global Radio Directory / Country & Genre
|
||||
* [OnlineRadioBox](https://onlineradiobox.com/) - International Radio Directory / Playlists
|
||||
* [Streema](https://streema.com/) - Global AM/FM & Internet Radio Directory
|
||||
* [Radio.net](https://www.radio.net/) - International Radio Directory / Player
|
||||
* [RadioPuppy](https://www.radiopuppy.com/) - Radio Directory
|
||||
* [myTuner](https://mytuner-radio.com/) - Global Radio & Podcasts / Multi-Platform
|
||||
* [TuneYou](https://tuneyou.com/) - Radio Directory / Discovery Focus
|
||||
* [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp) - Radio Directory / Hardware Integration
|
||||
* [radioline](https://www.radioline.co/) - Radio & Podcast Aggregator
|
||||
* [TheOneStopRadio](https://theonestopradio.com/) - Radio Directory
|
||||
* [Radio Guide](https://www.radioguide.fm/) - Radio Directory
|
||||
* [Xiph](https://dir.xiph.org/) - Icecast / Ogg Stream Directory
|
||||
* [UKRadioLive](https://ukradiolive.com/) or [RadioFeeds](http://www.radiofeeds.co.uk/) - UK Radio Station Directories
|
||||
* [ilovemusic](https://ilovemusic.de/) - German Radio Directory
|
||||
* [Tvradiotuner](https://tvradiotuner.com/) - TV & Radio Stream Aggregator
|
||||
* [VRadio](https://www.akouradio.com/) - Radio Directory / VRadio App
|
||||
|
||||
***
|
||||
|
||||
## ▷ Ambient / Relaxation
|
||||
## ▷ Lofi Radio
|
||||
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_relaxation)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_ios_relaxation)** - Ambient / Relaxation Mobile Apps
|
||||
* ⭐ **[Drone Zone](https://somafm.com/player/#/now-playing/dronezone)** or **[Music For Programming](https://musicforprogramming.net/latest/)** - Ambient Playlists
|
||||
* ⭐ **[CityHop](https://www.cityhop.cafe/)** or [Japan Walkaround](https://thatguyedd.github.io/) - Lofi Radio / City Walks
|
||||
* ⭐ **[Coding Cat](https://hostrider.com/)** - Lofi Radio / Nyan Cat's Cousin
|
||||
* ⭐ **[Chillhop](https://chillhop.com/)** - Lofi Radio
|
||||
* ⭐ **[myNoise](https://mynoise.net/)** - Customizable Ambient Sound Mixer
|
||||
* ⭐ **[Rainy Mood](https://www.rainymood.com/)** - Ambient Rain
|
||||
* [Flow-fi](https://www.flowfi.app/) - Lofi Radio / 360+ Combined Channels
|
||||
* [Lofi and Games](https://lofiandgames.com/) - Lofi Radio + Simple Games
|
||||
* [FlowTunes](https://www.flowtunes.app/) - Lofi + Focus Radio / Ambient Sounds
|
||||
* [Lofizen](https://www.lofizen.co/) - Lofi Radio / Ambient Sounds
|
||||
* [Rainbow Hunt](https://rainbowhunt.com/) - Ambient Rain
|
||||
* [Pluvior](https://pluvior.com/) - Ambient Rain
|
||||
* [Rainyscope](https://rainyscope.com/) - Ambient Rain
|
||||
* [Moon Phase Radio](https://www.moonphaseradio.com/) - Lofi Radio
|
||||
* [Ambient Sleeping Pill](https://ambientsleepingpill.com/) - Lofi Radio
|
||||
* [LofiCafe](https://www.loficafe.net/) - Lofi Radio
|
||||
|
|
@ -260,24 +298,6 @@
|
|||
* [Lofi Limo](https://lofi.limo/) - Lofi Radio
|
||||
* [DevTunes FM](https://radio.madza.dev/) - Lofi Radio
|
||||
* [Moss Garden](https://moss.garden/) - Lofi Radio
|
||||
* [ambiphone](https://ambiph.one/) or [Moodist](https://moodist.app/) - Simple Ambient Sound Mixers
|
||||
* [Click Bath](https://hamishlang.github.io/clickbath/) - Ambient Sound Mixer with Customizable Musical Scale / Instruments
|
||||
* [IMissTheOffice](https://imisstheoffice.eu/) - Ambient Office Sounds with Interactive UI
|
||||
* [Homesick](https://scoreascore.com/homesick) - Ambient Home Sounds
|
||||
* [VirtOcean](https://virtocean.com/) - Ambient Ocean Sounds
|
||||
* [imissmycafe](https://imissmycafe.com/) - Ambient Cafe Sounds
|
||||
* [Relaxing Sounds](https://unifycosmos.com/relaxing-sounds/), [Calmsound](https://www.calmsound.com/), [Click Relax](https://click-relax.com/), [Moszen](https://www.moszen.com/), [Zen Sounds](https://app.zenflowchart.com/zen-sounds) or [NoisyLoop](https://noisyloop.com/) - Ambient Soundscapes
|
||||
* [lofi-player](https://magenta.tensorflow.org/lofi-player), [2](https://magenta.github.io/lofi-player/) - Create Room / Lofi Player
|
||||
* [Wisdom Tree](https://github.com/HACKER097/wisdom-tree/) - TUI Concentration App
|
||||
* [Ambie](https://ambieapp.com/) - Ambient Sound Desktop App
|
||||
* [Generative.fm](https://generative.fm/) or [Lofi Generator](https://lofigenerator.com/) - Generative Ambient Music
|
||||
* [Earth.fm](https://earth.fm/), [tree.fm](https://www.tree.fm/) or [Sounds of Maine](https://soundsofmaine.life/) - Field Recordings
|
||||
* [HaloMe](https://halome.nu/) - Halo Menu Screens
|
||||
* [CanvasCycle](http://www.effectgames.com/demos/canvascycle/) - 8-bit Scenes with Ambient Sounds
|
||||
* [Ambient Mixer](https://www.ambient-mixer.com/) - User-Made Soundscapes
|
||||
* [ChillOuts](http://www.chillouts.com/) - Meditation Aid
|
||||
* [You are Listening To LA](https://youarelistening.to/) - Ambient City Sounds & Live LAPD Police Radio
|
||||
* [TheWhiteNoiseMachine](https://thewhitenoisemachine.com/) - White Noise Generator
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -287,6 +307,7 @@
|
|||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25BA_android_audio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25BA_ios_audio)** - Mobile Spotify Patchers
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Notes](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#spicetify-note) / [Discord](https://discord.gg/VnevqPp2Rr) / [GitHub](https://github.com/spicetify/cli)
|
||||
* ⭐ **[SpotX](https://github.com/SpotX-Official/SpotX)** / [Telegram](https://t.me/SpotxCommunity) or **[BlockTheSpot](https://github.com/mrpond/BlockTheSpot)** / [Discord](https://discord.gg/9tCNMFESuC) - Ad-Free Spotify Patchers
|
||||
* [Spot SponsorBlock](https://spotsponsorblock.org/) - Skip Sponsored Spotify Podcast Ads
|
||||
* [Lofi](https://www.lofi.rocks/) - Mini Spotify Player Widget / [GitHub](https://github.com/dvx/lofi)
|
||||
* [Trikatuka](https://trikatuka.aknakn.eu/) - Migrate Spotify Data to New Accounts
|
||||
* [Kotify](https://github.com/dzirbel/kotify) or [Skiley](https://skiley.net/) - Spotify Library Managers
|
||||
|
|
@ -301,15 +322,15 @@
|
|||
* [Canvas Downloader](https://www.canvasdownloader.com/) - Extract Spotify Canvas Walls
|
||||
* [ListenByLabel](https://www.lbl.fm/) - Search Spotify Record Labels
|
||||
* [ReleaseFeed](https://releasefeed.elomatreb.eu/) - Create RSS Feeds of Favorite Artists
|
||||
* [xmplaylist](https://xmplaylist.com/) - Listen to SiriusXM Channels on Spotify
|
||||
* [xmplaylist](https://xmplaylist.com/) - Listen to SiriusXM Channels on Spotify / [Discord](https://discord.com/invite/H7Xg9AAHsq)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Playlist Tools
|
||||
|
||||
* ⭐ **[Exportify](https://exportify.app/)** / [GitHub](https://github.com/watsonbox/exportify) or [spotify-backup](https://github.com/caseychu/spotify-backup) - Export Playlists
|
||||
* ⭐ **[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
|
||||
* ⭐ **[spotgen](https://epsil.github.io/spotgen)**, [chat jams](https://www.chatjams.ai/), [Unheard.FM](https://unheard.fm/) or [Chosic](https://www.chosic.com/) - Playlist Generators
|
||||
* [SpotTransfer](https://spot-transfer.vercel.app/) / [GitHub](https://github.com/Pushan2005/SpotTransfer), [Trikatuka](https://trikatuka.aknakn.eu/) or [Spotify2YouTubeMusic](https://github.com/mahdi-y/Spotify2YoutubeMusic) - Playlist Transfer Tools
|
||||
* [Playlist Hospital](https://playlisthospital.com/) - Restore Disabled Songs in Spotify Playlists
|
||||
* [Spotlistr](https://www.spotlistr.com/) - Platform-to-Spotify Playlist Converter
|
||||
* [Playlistor](https://playlistor.io/) - Convert Apple Music Playlists to Spotify
|
||||
|
|
@ -317,10 +338,10 @@
|
|||
* [Playlist Sorter](https://www.playlistsorter.com/) or [Sort Your Music](http://sortyourmusic.playlistmachinery.com/) / [GitHub](https://github.com/plamere/SortYourMusic) - Sort Playlists
|
||||
* [Spotify Dedup](https://spotify-dedup.com/) - Remove Duplicates in Playlists / [GitHub](https://github.com/JMPerez/spotify-dedup/)
|
||||
* [Timelineify](https://www.timelineify.com/) - Create Playlist from an Artist's Discography
|
||||
* [Share Liked Songs](https://nonnullish.github.io/share-liked-songs/) - Create Shareable Playlist from Liked Songs
|
||||
* [Share Liked Songs](https://nonnullish.github.io/share-liked-songs/) - Create Shareable Playlist from Liked Songs / [GitHub](https://github.com/nonnullish/share-liked-songs)
|
||||
* [Tagify](https://tagify.me/) - Create Tagged Playlists from Spotify Library
|
||||
* [PlaylistProxy](https://playlistproxy.net/) - Share Playlists Anonymously / [GitHub](https://github.com/okanten/playlistproxy.net)
|
||||
* [Spotify Playlist Archive](https://spotifyplaylistarchive.com/) - Public Spotify Playlists Archive / [GitHub](https://github.com/mackorone/spotify-playlist-archive)
|
||||
* [Spotify Playlist Archive](https://spotifyplaylistarchive.com/) - Public Spotify Playlists Archive / [GitHub](https://github.com/mackorone/spotify-playlist-archive), [2](https://github.com/maciejpedzich/spotifyplaylistarchive.com)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -332,15 +353,15 @@
|
|||
|
||||
## ▷ Audio Ripping Sites
|
||||
|
||||
* ⭐ **[DAB Music Player](https://dabmusic.xyz/)** - FLAC / Uses Qobuz / [Desktop App](https://dabmusic.xyz/download) / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/EBKcDZwEHJ)
|
||||
* ⭐ **[lucida](https://lucida.to/)** - Multi-Site / 320kb / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE)
|
||||
* ⭐ **[DoubleDouble](https://doubledouble.top/)** - Multi-Site / 320kb / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic)
|
||||
* ⭐ **[QQDL](https://qqdl.site/)** - Qobuz / [GitHub](https://github.com/QobuzDL/Qobuz-DL)
|
||||
* ⭐ **[squid.wtf](https://squid.wtf/)** - Qobuz / Khinsider / FLAC / [GitHub](https://github.com/QobuzDL/Qobuz-DL)
|
||||
* [Jumo-DL](https://jumo-dl.pages.dev/) - Qobuz
|
||||
* [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||
* [AMP3](https://amp3.cc/) - YouTube / 320kb
|
||||
* [EzConv](https://ezconv.com/) - YouTube / 320kb
|
||||
* ⭐ **[lucida](https://lucida.to/)** - Multi-Site / 320kb / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.com/invite/dXEGRWqEbS)
|
||||
* ⭐ **[DoubleDouble](https://doubledouble.top/)** - Multi-Site / 320kb / FLAC / [Telegram](https://t.me/lucidahasmusic)
|
||||
* ⭐ **[squid.wtf](https://tidal.squid.wtf)**, **[Monochrome](https://monochrome.tf/)**, [2](https://monochrome.prigoana.com/) / [GitHub](https://github.com/eduardprigoana/monochrome), [Digger](https://digger-ui.vercel.app/), [QQDL](https://tidal.qqdl.site/) or [BiniLossless](https://music.binimum.org/) - Tidal / FLAC / [Full List](https://github.com/eduardprigoana/hifi-instances/)
|
||||
* ⭐ **[DAB Music Player](https://dab.yeet.su/)**, [2](https://dabmusic.xyz/) - FLAC / Sign-Up Required / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/rmzH6ttgcC)
|
||||
* [Spotisaver](https://spotisaver.net/) - Multi-Site
|
||||
* [YAMS](https://yams.tf/) - Deezer / FLAC / Sign-Up Required
|
||||
* [AMP3](https://amp3.cc/) - YouTube / 256kb
|
||||
* [EzConv](https://ezconv.com/) - YouTube / 256kb
|
||||
* [YTiz](https://ytiz.xyz/) - SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||
* [cobalt](https://cobalt.tools/) - SoundCloud / 320kb / MP3 / [Instances](https://instances.cobalt.best/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
||||
|
||||
***
|
||||
|
|
@ -348,7 +369,7 @@
|
|||
## ▷ Audio Ripping Tools
|
||||
|
||||
* ↪️ **[YouTube Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)**
|
||||
* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - P2P Audio Sharing Networks / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl)
|
||||
* ⭐ **[Nicotine+](https://nicotine-plus.org/)** or [Soulseek](https://slsknet.org/) - P2P Audio Sharing Networks / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl)
|
||||
* ⭐ **[Soggfy](https://github.com/Rafiuth/Soggfy)** - Spotify / 160kb Free / 320kb Premium
|
||||
* ⭐ **[OnTheSpot](https://github.com/justin025/onthespot)** - Multi-Site / [Discord](https://discord.com/invite/hz4mAwSujH)
|
||||
* ⭐ **[Exact Audio Copy](https://www.exactaudiocopy.de/)** / [Guide](https://docs.google.com/document/d/1b1JJsuZj2TdiXs--XDvuKdhFUdKCdB_1qrmOMGkyveg) or [Whipper](https://github.com/whipper-team/whipper) - CD / DVD Audio Ripper
|
||||
|
|
@ -356,14 +377,15 @@
|
|||
* [Votify](https://github.com/glomatico/votify) - Spotify / 160kb Free / 320kb Premium / Requires WVD Keys / [Discord](https://discord.gg/aBjMEZ9tnq)
|
||||
* [streamrip](https://github.com/nathom/streamrip) - Deezer / Tidal / Qobuz / SoundCloud / 128kb Free / FLAC / Use Firehawk52 / [Colab](https://github.com/privateersclub/rip)
|
||||
* [OrpheusDL](https://github.com/OrfiTeam/OrpheusDL) - Deezer / Qobuz / 128kb Free / FLAC / Use Firehawk52 / [Deezer Module](https://github.com/uhwot/orpheusdl-deezer) / [Qobuz Module](https://github.com/OrfiDev/orpheusdl-qobuz)
|
||||
* [Archive](https://rentry.co/FMHYB64#archive) - Qobuz / Tidal / Soundcloud / FLAC
|
||||
* [DeemixFix](https://gitlab.com/deeplydrumming/DeemixFix), [Deemix Revival](https://github.com/bambanah/deemix) or [SaturnMusic](https://github.com/SaturnMusic/) - Deezer / FLAC
|
||||
* [Murglar](https://murglar.app/) - Deezer / SoundCloud / VK / 320kb MP3
|
||||
* [Shira](https://github.com/KraXen72/shira) - YouTube / SoundCloud / Bandcamp / 128kb AAC
|
||||
* [QobuzDownloaderX-MOD](https://github.com/DJDoubleD/QobuzDownloaderX-MOD) - Qobuz / 128kb Free / FLAC / Use Firehawk52
|
||||
* [SpotiFLAC](https://github.com/afkarxyz/SpotiFLAC) - Tidal / Deezer
|
||||
* [Shira](https://github.com/KraXen72/shira) - YouTube / SoundCloud / 128kb AAC
|
||||
* [QobuzDownloaderX-MOD](https://github.com/DJDoubleD/QobuzDownloaderX-MOD) - Qobuz / 128kb Free 256 ACC Premium / FLAC / Use Firehawk52
|
||||
* [qobuz-dl](https://github.com/vitiko98/qobuz-dl) - Qobuz / 128kb Free / FLAC / Use Firehawk52
|
||||
* [you-get](https://you-get.org/) - SoundCloud / Bilibili / 128kb MP3
|
||||
* [tidal-dl-ng](https://github.com/exislow/tidal-dl-ng) - Tidal / Use Firehawk52
|
||||
* [GamDL](https://github.com/glomatico/gamdl) - Apple / FLAC / Use Firehawk52
|
||||
* [BandCamp-DL](https://github.com/iheanyi/bandcamp-dl) - Bandcamp / 128kb MP3 / Free Only / [Discord](https://discord.com/invite/nwdT4MP)
|
||||
* [AccurateRip](https://www.accuraterip.com/) - Verify Ripped Tracks are Error-Free
|
||||
|
||||
|
|
@ -371,18 +393,16 @@
|
|||
|
||||
## ▷ Telegram Bots
|
||||
|
||||
* [BeatSpotBot](https://t.me/BeatSpotBot) - Spotify / Deezer / Tidal / Yandex / VK / FLAC / 25 Daily
|
||||
* [JioDLBot](https://t.me/JioDLBot) - JioSaavn / Gaana / FLAC
|
||||
* [Music_Hunters](https://t.me/MusicsHuntersbot) - Spotify / Apple / Tidal / Deezer / 320kb MP3
|
||||
* [DeezerMusicBot](https://t.me/DeezerMusicBot) - Deezer / Soundcloud / VK / 320kb MP3 / FLAC / [Support](https://t.me/DeezerMusicNews)
|
||||
* [deezload2bot](https://t.me/deezload2bot) - Deezer / 320kb MP3 / [Updates](https://t.me/DEDSEClulz)
|
||||
* [BeatSpotBot](https://t.me/BeatSpotBot) - Spotify /Apple / YouTube / FLAC / 25 Daily
|
||||
* [Motreeb](https://t.me/motreb_downloader_bot) - Spotify / 320kb MP3
|
||||
* [scdlbot](https://t.me/scdlbot) - YouTube / SoundCloud / Bandcamp / Mixcloud / 128kb MP3
|
||||
* [vkmusbot](https://t.me/vkmusbot) or [Meph Bot](https://t.me/mephbot) - VK / 320kb MP3
|
||||
* [soundcloudaudiodownloader](https://t.me/soundcloudaudiodownloader) - YouTube / SoundCloud / 128kb MP3
|
||||
* [GlomaticoBlueMusicBot](https://t.me/GlomaticoBlueMusicBot) - Amazon Music Downloader / [Telegram](https://t.me/GlomaticoBotSupport) / [Discord](https://discord.gg/aBjMEZ9tnq)
|
||||
* [GlomaticoPinkMusicBot](https://t.me/GlomaticoPinkMusicBot) - Apple Music Downloader / [Telegram](https://t.me/GlomaticoBotSupport) / [Discord](https://discord.gg/aBjMEZ9tnq)
|
||||
* [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
|
||||
* [Motreeb](https://t.me/motreb_downloader_bot) - Spotify / 320kb MP3
|
||||
* [scdlbot](https://t.me/scdlbot) - YouTube / SoundCloud / Bandcamp / 128kb MP3
|
||||
* [soundcloudaudiodownloader](https://t.me/soundcloudaudiodownloader) - YouTube / SoundCloud / 128kb MP3
|
||||
* [VK Bot](https://t.me/vkmsaverbot), [vkmusbot](https://t.me/vkmusbot) or [Meph Bot](https://t.me/mephbot) - VK / 320kb MP3
|
||||
* [Song_downloaderbot](https://t.me/Song_downloaderbot) - JioSaavn / 128kb MP3
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -393,7 +413,7 @@
|
|||
***
|
||||
|
||||
* 🌐 **[Music Download Guide](https://rentry.co/wheredownloadmusic)** - Downloading Guide / Site Index
|
||||
* ⭐ **[ArtistGrid](https://artistgrid.cx/)** or [TrackerHub](https://trackerhub.cx/) / [Discord](https://discord.gg/trackerhub) - Unreleased / Check Google Sheets
|
||||
* ⭐ **[ArtistGrid](https://artistgrid.cx/)** - Unreleased / [Render](https://dev.artistgrid.cx/) / [Discord](https://discord.gg/tns89b3w7R) / [GitHub](https://github.com/ArtistGrid/)
|
||||
* ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [CSE 3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Multi-Site Search
|
||||
* [r/xTrill](https://reddit.com/r/xTrill) - Download App / [Backup](https://reddit.com/r/xTrillBackup)
|
||||
* [VK::MP3](https://metacpan.org/pod/VK::MP3) - VK MP3 Search Tool
|
||||
|
|
@ -424,7 +444,6 @@
|
|||
* [Lossless-FLAC](https://lossless-flac.com/) - FLAC
|
||||
* [DiscogC](https://www.discogc.com/) - FLAC
|
||||
* [LosslessAlbums](https://losslessalbums.club/) - FLAC
|
||||
* [QMusic](https://rentry.co/FMHYB64#qmusic) - MP3 / FLAC
|
||||
* [IntMusic](https://intmusic.net/) - MP3 / FLAC
|
||||
* [Gangster](https://gangster.su/) - MP3 / FLAC
|
||||
* [GetRockMusic](https://getrockmusic.net/) - MP3 / FLAC
|
||||
|
|
@ -444,9 +463,9 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Genre Specific
|
||||
## ▷ Genre Specific Ripping
|
||||
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** / [DL Script](https://rentry.co/7preswd7) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** - A State of Trance Archive / DJ Mixes / [DL Script](https://rentry.co/7preswd7)
|
||||
* [Take Metal](https://takemetal.org/) - Metal / MP3
|
||||
* [Metalminos](https://metalminos.net/) - Metal / MP3
|
||||
* [In The Fog](https://in-the-fog.ru/) - Metal / MP3
|
||||
|
|
@ -496,6 +515,7 @@
|
|||
* [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
|
||||
* [The T-SQUARE Plaza](https://tsquareplaza.blogspot.com/) - Japanese / International Jazz Fusion / City Pop / FLAC
|
||||
* [FondSound](https://www.fondsound.com/) - Experimental / MP3
|
||||
* [Hipstrumentals](https://hipstrumentals.com/) - Instrumentals / MP3
|
||||
|
||||
|
|
@ -545,7 +565,7 @@
|
|||
* [freemusicpublicdomain](https://www.freemusicpublicdomain.com/) - Public Domain Tracks
|
||||
* [Incompetech Music](https://incompetech.com/music/royalty-free/music.html) - Composer Library / CC-BY License
|
||||
* [joshwoodward](https://www.joshwoodward.com/) - Single Artist Collection
|
||||
* [Sampld](https://sampld.app/) - Sample Finder
|
||||
* [Sampld](https://sampld.app/) - Find Audio Samples
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -583,14 +603,13 @@
|
|||
* [Cirrus Retro](https://cirrusretro.com/) - Game Music Radio
|
||||
* [JetSetRadio](https://jetsetradio.live/), [2](https://jetsetradiofuture.live/) - Game Music Radio
|
||||
* [Rainwave](https://rainwave.cc/) - Game Music Radio
|
||||
* [RPGGamers Radio](http://www.rpgamers.net/radio/) - Game Music Radio
|
||||
* [RPGGamers Radio](https://www.rpgamers.net/radio/) - Game Music Radio
|
||||
* [VGMRadio](https://vgmradio.com/) - Game Music Radio
|
||||
* [VGM](https://vgm.mmosvc.com/) - Game Music Radio
|
||||
* [NSF j](https://nsf.nesbbs.com/) - NES Music
|
||||
* [HVSC](https://www.hvsc.c64.org/) - Commodore 64 Music
|
||||
* [Goldenrod Radio](https://www.youtube.com/@GoldenrodRadio251) - Pokémon Music
|
||||
* [Animal Crossing Radio](https://animal-crossing-radio.com/) - Animal Crossing Radio
|
||||
* [GTA Radio Stations Music](https://rentry.co/FMHYB64#gta-radio-stations) - GTA Radio Stations
|
||||
* [Exotica](https://www.exotica.org.uk/) - Retro Gaming Music Wiki
|
||||
* [VGMdb](https://vgmdb.net/) - Video Game Music Database
|
||||
|
||||
|
|
@ -598,79 +617,87 @@
|
|||
|
||||
# ► Tracking / Databases
|
||||
|
||||
* ⭐ **[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/)
|
||||
* ⭐ **[RateYourMusic](https://rateyourmusic.com/)** - Ratings / Reviews / [Add Features](https://rateyourmusic.com/list/CaptainMocha/betterrym-browser-extension/) / [Forum](https://rym.fm/)
|
||||
* ⭐ **[Last.fm](https://www.last.fm/home)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio/#wiki_.25B7_last.fm_tools) or [ListenBrainz](https://listenbrainz.org/) - 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
|
||||
* ⭐ **[Tunefind](https://www.tunefind.com/)** - Find Music from Movies / TV Shows
|
||||
* ⭐ **[MixesDB](https://www.mixesdb.com/)** - DJ Set Database
|
||||
* [Discogs](https://www.discogs.com/) - Ratings / Reviews / [Scout](https://greasyfork.org/en/scripts/439452-discogs-scout) / [Timestamps](https://martinbarker.me/tagger)
|
||||
* [Music Board](https://musicboard.app/) - Ratings / Reviews
|
||||
* [Odesli](https://odesli.co/) - Song / Podcast Platform Search / [Telegram Bot](https://t.me/odesli_bot)
|
||||
* [Has it Leaked](https://hasitleaked.com/) - Album Leak Tracker
|
||||
* [MyPitchFork](https://mypitchfork.fun/) - Individual Song Rating / Tracking
|
||||
* [DAHR](https://adp.library.ucsb.edu/index.php) - American Historical Recordings Database
|
||||
* [TrackID](https://trackid.net/) or [1001Tracklists](https://www.1001tracklists.com/) - Live Set Tracklist Databases
|
||||
* [SecondHandSongs](https://secondhandsongs.com/), [RemixSearch](https://remixsearch.net/) or [WhoSampled](https://www.whosampled.com/) - Cover, Sample and Remix Databases
|
||||
* [SoundtrackTracklist](https://soundtracktracklist.com/) or [FilmMusicSite](https://www.filmmusicsite.com/en/) - Soundtrack Databases
|
||||
* [dbkpop](https://dbkpop.com/), [KPop Fandom](https://kpop.fandom.com/wiki/) or [KPopping](https://kpopping.com/) - K-Pop Databases
|
||||
* [Loudness War](https://dr.loudness-war.info/) - Albums Dynamic Range Database
|
||||
* [TuneMyMusic](https://www.tunemymusic.com/) - Transfer Playlists Between Services
|
||||
* [TheIndieRockPlaylist](https://www.theindierockplaylist.com/) - Indie Rock Archive
|
||||
* [Metal Archives](https://www.metal-archives.com/) - Metal Band Archive
|
||||
* [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive
|
||||
* [ClassicRockHistory](https://www.classicrockhistory.com/classic-rock-bands-list-and-directory/) - Classic Rock Band Archive
|
||||
* [LibraryThing](https://www.talpasearch.com/) - Find Albums by Describing Them
|
||||
* [This Is What You Listen To](https://tiwylt.musimap.io/) - Song Genre / Info Analyzer
|
||||
* [rate.house](https://rate.house/) - Media Tracker
|
||||
* [MediaTracker](https://github.com/bonukai/MediaTracker) - Self-Hosted Media Tracker
|
||||
* [Maloja](https://maloja.krateng.ch) / [GitHub](https://github.com/krateng/maloja) or [Multi Scrobbler](https://github.com/FoxxMD/multi-scrobbler) - Self-Hosted Audio Scrobbling
|
||||
* [libib](https://www.libib.com/) - Desktop Media Catalog
|
||||
* [Obscurify](https://obscurifymusic.com/) or [MusicTaste](https://musictaste.space/) - Compare Music Taste to Others
|
||||
* [MediaTracker](https://github.com/bonukai/MediaTracker) - Self-Hosted Media Tracker
|
||||
* [Maloja](https://github.com/krateng/maloja) or [Multi Scrobbler](https://github.com/FoxxMD/multi-scrobbler) - Self-Hosted Audio Scrobbling
|
||||
* [AME](https://gitlab.com/SuperSaltyGamer/ame) - Music Site Enhancement Userscripts
|
||||
* [Music Chart Maker](https://musicchartmaker.com/) - Create Album Collages
|
||||
|
||||
***
|
||||
|
||||
## ▷ Curated Recommendations
|
||||
|
||||
* 🌐 **[/music discovery/](https://dan.valeena.dev/guides/music-discovery/), [2](https://rentry.co/musicdiscovery)** - Music Discovery Guide
|
||||
* ⭐ **[AnyDecentMusic](http://www.anydecentmusic.com/)** - Album Review Aggregator
|
||||
* ⭐ **[Acclaimed Music](https://www.acclaimedmusic.net/)** - Discover Acclaimed Music of the Times
|
||||
* ⭐ **[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
|
||||
* [Chosic](https://www.chosic.com/), [lazyrecords](https://lazyrecords.app/), [Discover Quickly](https://discoverquickly.com/), [TapeFear](https://www.tapefear.com/), [SongsLikeX](https://songslikex.com/), [Dubolt](https://dubolt.com/), [Maroofy](https://maroofy.com/) or [Playlost.fm](http://playlost.fm/) - Song Discovery Tools
|
||||
* [Music-Map](https://www.music-map.com/), [Musicroamer](https://www.musicroamer.com/), [Music Galaxy](https://galaxy.spotifytrack.net/), [Unchartify](https://unchartify.com/) / [Telegram](https://t.me/spotifyuncharted), [SAGE](https://hate5six.com/sage), [LivePlasma](https://liveplasma.com/) or [GNOD](https://www.gnod.com/) - Artist Discovery Tools
|
||||
* [Essential Charts](https://4chanmusic.miraheze.org/wiki/Essential_Charts) - Album Recommendation Charts
|
||||
* [Sputnik](https://www.sputnikmusic.com/) - Ratings / Reviews
|
||||
* [AlbumOfTheYear](https://www.albumoftheyear.org/) - Ratings / Reviews
|
||||
* [AllMusic](https://www.allmusic.com/) - Ratings / Reviews
|
||||
* [MusicBrainz](https://musicbrainz.org/) - Ratings / Reviews
|
||||
* [Odesli](https://odesli.co/) - Song / Podcast Platform Search / [Telegram Bot](https://t.me/odesli_bot)
|
||||
* [Kworb](https://kworb.net/), [Spotify Charts](https://charts.spotify.com/home) or [SuperFridayChart](https://www.superfridaychart.com/) - Music Top Charts
|
||||
* [ClassicRockHistory](https://www.classicrockhistory.com/classic-rock-bands-list-and-directory/) - Classic Rock Band Archive
|
||||
* [TheIndieRockPlaylist](https://www.theindierockplaylist.com/) - Indie Rock Archive
|
||||
* [Musicmap](https://musicmap.info/) - Genealogy / History of Music Genres
|
||||
* [Map of Metal](https://mapofmetal.com/) - Interactive Map of Metal History
|
||||
* [Metal Archives](https://www.metal-archives.com/) - Metal Band Archive
|
||||
* [DAHR](https://adp.library.ucsb.edu/index.php) - American Historical Recordings Database
|
||||
* [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive
|
||||
* [TrackID](https://trackid.net/) or [1001Tracklists](https://www.1001tracklists.com/) - Live Set Tracklist Databases
|
||||
* [Charts and Culture](https://pastebin.com/uRDJVGkL) - Music Recommendation Directory
|
||||
* [Shfl](https://theshfl.com/) - Album Recommendations
|
||||
* [Melondy](https://melondy.com/) - Curated List of Albums Rated by Anthony Fantano
|
||||
* [45Cat](https://www.45cat.com/) - Vinyl Ratings / Reviews
|
||||
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
||||
* [MusicTo](https://www.musicto.com/) - Musician Curated Playlists
|
||||
* [BoilTheFrog](http://boilthefrog.playlistmachinery.com/) - Create Playlist from 2 Artists
|
||||
* [Obscurify](https://obscurifymusic.com/) or [MusicTaste](https://musictaste.space/) - Compare Music Taste to Others
|
||||
* [Random Song](https://randomsong.org/), [Random Song Generator](https://randomsonggenerator.com/) or [Samplette](https://samplette.io/) - Play Random YouTube Songs
|
||||
* [1001 Albums Generator](https://1001albumsgenerator.com/) - Generates Random Album Everyday
|
||||
* [DigitalDreamDoor](https://digitaldreamdoor.com/) - Greatest 100 Lists
|
||||
* [CET](https://rentry.org/CET) - Music Comps & Edits / [Discord](https://discord.gg/DfAfVPPvq4)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Song / Artist Discovery
|
||||
|
||||
* 🌐 **[/music discovery/](https://dan.valeena.dev/guides/music-discovery/), [2](https://rentry.co/musicdiscovery)** - Music Discovery Guide
|
||||
* ⭐ **[Acclaimed Music](https://www.acclaimedmusic.net/)** - Discover Acclaimed Music of the Times
|
||||
* ⭐ **[EveryNoise](https://everynoise.com/)** - Music Genre Discovery Tool / [New Music](https://www.furia.com/page.cgi?type=log#id492)
|
||||
* [Music-Map](https://www.music-map.com/), [Musicroamer](https://www.musicroamer.com/), [Music Galaxy](https://galaxy.spotifytrack.net/), [Unchartify](https://unchartify.com/) / [Telegram](https://t.me/spotifyuncharted), [SAGE](https://hate5six.com/sage), [LivePlasma](https://liveplasma.com/) or [GNOD](https://www.gnod.com/) - Artist Discovery Tools
|
||||
* [Kworb](https://kworb.net/), [Spotify Charts](https://charts.spotify.com/home) or [SuperFridayChart](https://www.superfridaychart.com/) - Music Top Charts
|
||||
* [BoilTheFrog](http://boilthefrog.playlistmachinery.com/) - Create Playlist from 2 Artists
|
||||
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
||||
* [Chosic](https://www.chosic.com/), [lazyrecords](https://lazyrecords.app/), [SongsLikeX](https://songslikex.com/), [Discover Quickly](https://discoverquickly.com/), [TapeFear](https://www.tapefear.com/), [Dubolt](https://dubolt.com/) or [Playlost.fm](https://playlost.fm/) - Song Discovery Tools
|
||||
* [Random Song](https://randomsong.org/), [Random Song Generator](https://randomsonggenerator.com/), [SampleRoulette](https://www.sampleroulette.io/) or [Samplette](https://samplette.io/) - Play Random YouTube Songs
|
||||
* [Best Ever Albums](https://www.besteveralbums.com/index.php) - Discover Albums
|
||||
* [MusicGenreTree](https://www.musicgenretree.org/chart.html) - Discover New Music by Genre
|
||||
* [1001 Albums Generator](https://1001albumsgenerator.com/) - Daily Random Album Recommendation
|
||||
* [OrbitMusic](https://www.bbc.co.uk/orbitmusic) - Undiscovered Artist Recommendations / [Limit Bypass](https://i.imgur.com/FDx8jKa.png)
|
||||
* [SecondHandSongs](https://secondhandsongs.com/), [RemixSearch](https://remixsearch.net/) or [WhoSampled](https://www.whosampled.com/) - Cover / Remix Databases
|
||||
* [SoundtrackTracklist](https://soundtracktracklist.com/) or [FilmMusicSite](https://www.filmmusicsite.com/en/) - Soundtrack Databases
|
||||
* [generasia](https://www.generasia.com/) - Asian Music Wiki
|
||||
* [dbkpop](https://dbkpop.com/), [Stage48](http://stage48.net/wiki/index.php/Main_Page), [KPop Fandom](https://kpop.fandom.com/wiki/) or [KPopping](https://kpopping.com/) - K-Pop Databases
|
||||
* [Music.ishkur](https://music.ishkur.com/) - Electronic Music Guide
|
||||
* [MusicGenreTree](https://www.musicgenretree.org/chart.html) - Discover New Music by Genre
|
||||
* [Identifying Music Genres](https://chunisama.github.io/Identifying-Music-Genres/) - Compare Music Genres
|
||||
* [Musicmap](https://musicmap.info/) - Genealogy / History of Music Genres
|
||||
* [Map of Metal](https://mapofmetal.com/) - Interactive Map of Metal History
|
||||
* [Music.ishkur](https://music.ishkur.com/) - Electronic Music Genre Guide
|
||||
* [HappyHardcore](https://www.happyhardcore.com/forums/) - Hardcore Dance Music Forum
|
||||
* [TranceFix](https://www.trancefix.nl/index.php) - Trance Music Forum
|
||||
* [This Is What You Listen To](https://tiwylt.musimap.io/) - Song Genre / Info Analyzer
|
||||
* [Identifying Music Genres](https://chunisama.github.io/Identifying-Music-Genres/) - Compare Music Genres
|
||||
* [Loudness War](https://dr.loudness-war.info/) - Albums Dynamic Range Database
|
||||
* [AME](https://gitlab.com/SuperSaltyGamer/ame) - Music Site Enhancement Userscripts
|
||||
* [Music Chart Maker](https://musicchartmaker.com/) - Create Album Collages
|
||||
|
||||
***
|
||||
|
||||
## ▷ Last.fm Tools
|
||||
|
||||
* 🌐 **[Awesome Last.fm](https://github.com/jnguyen1098/awesome-lastfm)** or [Last.fm Tool List](https://redd.it/1h8ec76) - Last.fm Tool Indexes
|
||||
* ⭐ **[bleh](https://katelyn.moe/bleh/)** - Last.fm Customization Script / [GitHub](https://github.com/katelyynn/bleh)
|
||||
* ⭐ **[bleh](https://bleh.katelyn.moe/)** - Last.fm Customization Script / [GitHub](https://github.com/katelyynn/bleh)
|
||||
* ⭐ **[OpenScrobbler](https://openscrobbler.com/)** - Manually Scrobble Anything / [Discord](https://discord.gg/SEDp6Zy) / [GitHub](https://github.com/elamperti/openwebscrobbler)
|
||||
* ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Multi-Platform Scrobbler
|
||||
* ⭐ **[Last.fm Stats](https://lastfmstats.com/)** - In-Depth Last.fm Stats / [GitHub](https://github.com/felhag/lastfm-stats-web)
|
||||
|
|
@ -680,8 +707,8 @@
|
|||
* [Chart My Music](https://www.chartmymusic.com/lastfm/), [TapMusic](https://www.tapmusic.net/) or [MusicCoruMap](https://musicorumapp.com/generate) - Album Collages
|
||||
* [Last.fm Iceberg](https://lastfm-iceberg.dawdle.space/) - Last.fm Artist Iceberg
|
||||
* [TagCloud](https://tagcloud.rainosullivan.com/) - Last.fm Tag Cloud
|
||||
* [Mainstream Calc](http://mainstream.ghan.nl/) - Mainstream Calculator
|
||||
* [Decent.live](https://descent.live/) - Now Playing Tool
|
||||
* [Mainstream Calc](https://mainstream.ghan.nl/) - Mainstream Calculator
|
||||
* [Descent](https://descent.live/) - Now Playing Tool
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -694,13 +721,12 @@
|
|||
* ↪️ **[Text to Speech](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
|
||||
* ⭐ **[Audio Glossary](https://wotaku.wiki/glossary/audio)** - Audio Terms Glossary
|
||||
* ⭐ **[FFmpeg](https://ffmpeg.org/)**, [fre:ac](https://www.freac.org/) / [GitHub](https://github.com/enzo1982/freac), [FlicFlac](https://github.com/DannyBen/FlicFlac), [LameXP](https://sourceforge.net/projects/lamexp/) or [Sox](https://sourceforge.net/projects/sox/) - Audio Converters
|
||||
* [Hydrogenaudio](https://wiki.hydrogenaud.io/) - Audio Technology Wiki
|
||||
* [CUETools](http://cue.tools/wiki/CUETools) - Manipulate .cue Files / [GitHub](https://github.com/gchudov/cuetools.net/)
|
||||
* [Phiola](https://github.com/stsaz/phiola), [AudioToolSet](https://audiotoolset.com/) or [Safeaudiokit](https://safeaudiokit.com/) - Audio Multi-Tool Apps / Sites
|
||||
* [Vocaroo](https://vocaroo.com/) - Online Voice Recorder
|
||||
* [Tunebat](https://tunebat.com/) or [QO & SPECTRE](https://docs.google.com/spreadsheets/u/0/d/1QEvWoGa10BctJ1yqDgZl3IoY8bhB3AwbHzgCHjJ5neI/htmlview) - Music Key / BPM Databases
|
||||
* [Karaoke Mugen](https://mugen.karaokes.moe/en/) - Karaoke App
|
||||
* [X-Minus](https://x-minus.pro/) or [LRC Maker](https://lrcmaker.com/) - Create / Find Karaoke Songs
|
||||
* [VB Cables](https://rentry.co/FMHYB64#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
|
||||
|
||||
|
|
@ -708,11 +734,12 @@
|
|||
|
||||
## ▷ Audio Players
|
||||
|
||||
* ↪️ **[Android Audio Players](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_audio_players)**
|
||||
* ⭐ **[Foobar2000](https://www.foobar2000.org/)**
|
||||
* ⭐ **Foobar2000 Tools** - [Components](https://audio-file.org/foobar2000-list-of-components/), [2](https://www.foobar2000.org/components) / [VU Meter](https://audio-file.org/foobar2000-vu-meter-skins-gallery/) / [Scrobble](https://github.com/gix/foo_scrobble) / [Lyric Sync](https://rentry.co/FB2K-SyncedLyrics)
|
||||
* ⭐ **Foobar2000 Tools** - [Components](https://audio-file.org/foobar2000-list-of-components/), [2](https://www.foobar2000.org/components) / [VU Meter](https://audio-file.org/foobar2000-vu-meter-skins-gallery/) / [Lyric Sync](https://rentry.co/FB2K-SyncedLyrics)
|
||||
* ⭐ **[WACUP](https://getwacup.com/)** / [Discord](https://discord.gg/5pVTdbj)
|
||||
* ⭐ **[AIMP](https://www.aimp.ru/)**
|
||||
* ⭐ **[MusicBee](https://getmusicbee.com/)** / [Quality Bades](https://wiki.musichoarders.xyz/reference/musicbee/)
|
||||
* ⭐ **[MusicBee](https://getmusicbee.com/)** / [Quality Badges](https://wiki.musichoarders.xyz/reference/musicbee/)
|
||||
* [Harmonoid](https://harmonoid.com/) / [Discord](https://discord.gg/2Rc3edFWd8)
|
||||
* [Namida](https://github.com/namidaco/namida) - Feature-Rich
|
||||
* [TimeStetch](https://29a.ch/timestretch/) - Web-Based
|
||||
|
|
@ -721,6 +748,7 @@
|
|||
* [Butterchurn Visualizer](https://butterchurnviz.com/), [MusicVid](https://musicvid.org/), [Vizzy](https://vizzy.io/) or [CatNip](https://github.com/noriah/catnip) - Audio Visualizers
|
||||
* [PartyEngine](https://aggrocrab.itch.io/partyengine) - Audio Party Visualizer
|
||||
* [NCurses++](https://github.com/ncmpcpp/ncmpcpp)
|
||||
* [Nagi](https://github.com/Anthonyy232/Nagi)
|
||||
* [Museeks](https://museeks.io/)
|
||||
* [Audacious](https://audacious-media-player.org/)
|
||||
* [Strawberry](https://www.strawberrymusicplayer.org/)
|
||||
|
|
@ -743,7 +771,7 @@
|
|||
* ⭐ **[Airsonic](https://airsonic.github.io/)** or [Airsonic Advanced](https://github.com/airsonic-advanced/airsonic-advanced) / [Web UI](https://github.com/tamland/airsonic-refix)
|
||||
* ⭐ **[koel](https://koel.dev/)**
|
||||
* ⭐ **[iBroadcast](https://ibroadcast.com)**
|
||||
* ⭐ **[AudioRelay](https://audiorelay.net/)** - Stream Audio Between Devices / [Mobile](https://rentry.co/FMHYB64#audio-relay)
|
||||
* ⭐ **[AudioRelay](https://audiorelay.net/)** - Stream Audio Between Devices / [Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search)
|
||||
* [Lyrion](https://lyrion.org/) / [Extensions](https://lyrion.org/extensions/applications/)
|
||||
* [SnapCast](https://github.com/badaix/snapcast) or [SonoBus](https://sonobus.net/) - Sound System Sync
|
||||
* [mStream](https://mstream.io/)
|
||||
|
|
@ -752,7 +780,6 @@
|
|||
* [Music Player Daemon](https://www.musicpd.org/)
|
||||
* [Polaris](https://github.com/agersant/polaris)
|
||||
* [Gonic](https://github.com/sentriz/gonic)
|
||||
* [SynchronousAudioRouter](https://github.com/eiz/SynchronousAudioRouter)
|
||||
* [Ampache](https://ampache.org/)
|
||||
|
||||
***
|
||||
|
|
@ -760,7 +787,7 @@
|
|||
## ▷ Audio Metadata
|
||||
|
||||
* ⭐ **[MP3Tag](https://www.mp3tag.de/en/)** - Metadata Organizer
|
||||
* ⭐ **[MusicBrainz Picard](https://picard.musicbrainz.org/)** - Metadata Organizer
|
||||
* ⭐ **[MusicBrainz Picard](https://picard.musicbrainz.org/)** - Metadata Organizer / [GitHub](https://github.com/metabrainz/picard)
|
||||
* [YADG](https://yadg.cc/) - Scrape Music Release Info / [API](https://yadg.cc/api/)
|
||||
* [Beets](https://beets.io/) - Metadata Organizer / [Guides](https://redd.it/11iaafu) / [GitHub](https://github.com/beetbox/beets)
|
||||
* [TagEditor](https://github.com/Martchus/tageditor) - Metadata Organizer
|
||||
|
|
@ -775,7 +802,7 @@
|
|||
## ▷ Album Artwork
|
||||
|
||||
* ⭐ **[Cover Search Engine](https://covers.musichoarders.xyz)**, [Albumart.Digital](https://albumart.digital/) or [bigpictures](https://bigpictures.xyz/) - Album Art Search Engines
|
||||
* ⭐ **[SpotifyArt](https://spotify-art.vercel.app/)** - Spotify Album Art Downloaders / Web
|
||||
* ⭐ **[SpotifyArt](https://spotify-art.vercel.app/)** - Spotify Album Art Downloader / Web / [GitHub](https://github.com/Shiawaseu/SpotifyArt)
|
||||
* [Apple Artwork](https://artwork.thekvt.eu.org/) - Apple Music Album Art Downloader
|
||||
* [MediUX Album Covers](https://mediux.pro/albums) - Media Soundtrack Album Art
|
||||
* [Classic Rock Covers](https://www.classic-rock-covers.com/) - Rock Album Art
|
||||
|
|
@ -786,7 +813,7 @@
|
|||
## ▷ Song Identification
|
||||
|
||||
* ⭐ **[Google Assistant](https://assistant.google.com/)** - Google's Music Recognition / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#google-music-recognition)
|
||||
* ⭐ **[Shazam](https://www.shazam.com/)** / Android, iOS / [Modded](https://rentry.co/FMHYB64#shazam) / [Desktop App](https://github.com/BayernMuller/vibra), [2](https://github.com/zemoto/WhatAmIHearing) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/librezam/) / [Chrome](https://chromewebstore.google.com/detail/shazam-find-song-names-fr/mmioliijnhnoblpgimnlajmefafdfilb)
|
||||
* ⭐ **[Shazam](https://www.shazam.com/)** / Android, iOS / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) / [Desktop App](https://github.com/BayernMuller/vibra), [2](https://github.com/zemoto/WhatAmIHearing) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/librezam/) / [Chrome](https://chromewebstore.google.com/detail/shazam-find-song-names-fr/mmioliijnhnoblpgimnlajmefafdfilb)
|
||||
* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** or [r/NameThatSong](https://reddit.com/r/NameThatSong) - Song ID Communities
|
||||
* [FlairMax](https://apps.microsoft.com/detail/9pdzvj34ztxg) / Windows
|
||||
* [AudioTag](https://audiotag.info/) / Web
|
||||
|
|
@ -807,6 +834,7 @@
|
|||
* [Lyricify](https://github.com/WXRIW/Lyricify-App) - Lyrics Desktop App
|
||||
* [Versefy](https://versefy.app/) or [Lyrics-In-Terminal](https://github.com/Jugran/lyrics-in-terminal) - Lyric Finder for Spotify / Tidal / VLC
|
||||
* [LyricsTranslate](https://lyricstranslate.com/) - Lyric Translator
|
||||
* [LRC Maker](https://lrc-maker.github.io/) - Web-Based Lyrics Editor / [GitHub](https://github.com/magic-akari/lrc-maker)
|
||||
* [LRCGET](https://github.com/tranxuanthang/lrcget) - Download Synced Lyrics
|
||||
* [LRCLIB](https://lrclib.net/) - Synced Lyrics Search
|
||||
|
||||
|
|
@ -818,7 +846,6 @@
|
|||
* 🌐 **[Awesome Sheet Music](https://github.com/ad-si/awesome-sheet-music)** - Sheet Music Software & Resources
|
||||
* ↪️ **[Music Sheet Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_music_sheet_collections)**
|
||||
* ⭐ **[MuseScore](https://musescore.org/)**, [MC Musiceditor](https://www.mcmusiceditor.com/) or [Score Perfect Professional](https://archive.org/details/score-perfect-professional-lite-5.1/) - Music Scoring Software
|
||||
* [Sheethost](https://sheet.host/) - Publish Sheet Music
|
||||
* [The ABC Music Project](https://abc.sourceforge.net/) / [Editor](https://sourceforge.net/projects/toadflax/), [2](https://runabc.sourceforge.io/), [3](https://easyabc.sourceforge.net/) / [PNG Convert](https://sourceforge.net/projects/abccairo/) / [MIDI Convert](https://abcmidi.sourceforge.io/) / [Webpages](https://netabc.sourceforge.io/) - Notation Markup Language
|
||||
* [Chordly](https://chordly.co.uk/) - Chord Sheet Creator / [GitHub](https://github.com/stufro/chordly)
|
||||
* [Piascore](https://apps.apple.com/app/piascore-hd/id406141702) - iOS Music Score Viewer
|
||||
|
|
@ -837,19 +864,18 @@
|
|||
## ▷ Spectrum Analyzers
|
||||
|
||||
* ⭐ **[Audio Quality Check Guide](https://redd.it/3l0yxp)**
|
||||
* ⭐ **[Comparison of Audio Compression](https://nigelcoldwell.co.uk/audio/)**
|
||||
* ⭐ **[Fakin' The Funk?](https://fakinthefunk.net/)**
|
||||
* ⭐ **[Sonic Visualizer](https://www.sonicvisualiser.org/)**
|
||||
* ⭐ **[Spek](https://www.spek.cc/)**
|
||||
* [Acoustic Spectrum Analyzer](https://spec.squid.wtf/) or [WhatsMyBitrate](https://whatsmybitrate.com/) - Web-Based
|
||||
* [Visual Analyser](https://www.sillanumsoft.org/)
|
||||
* [WhatsMyBitrate](https://whatsmybitrate.com/)
|
||||
* [Friture](https://friture.org/)
|
||||
* [Friture](https://friture.org/) / [GitHub](https://github.com/tlecomte/friture)
|
||||
* [Spectro](http://spectro.enpts.com/)
|
||||
* [Cambia](https://logs.musichoarders.xyz/) - CD Rip Log Checker
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Linux Audio Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_video)
|
||||
## ▷ [Linux Audio Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_audio)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -865,7 +891,7 @@
|
|||
* ⭐ **[AudioSEX](https://audiosex.pro/)**, [KVR Audio](https://www.kvraudio.com/) or [VI-CONTROL](https://vi-control.net/community/) - Audio Production Forums / News
|
||||
* [ProducerLibrary](https://producerlibrary.carrd.co/) - Audio Production Tutorials / [Discord](https://discord.gg/KfyHfUTjsK)
|
||||
* [Tonocracy](https://tonocracy.com/), [NeuralAmpModeler](https://www.neuralampmodeler.com/), [GuitarML](https://guitarml.com/index.html) or [TONEX CS](https://www.ikmultimedia.com/products/tonex/#tonexcs) - Guitar Tones, Effects & Virtual Amps
|
||||
* [ToneHunt](https://tonehunt.org/) - Guitar Tone Profiles
|
||||
* [Tone3000](https://tone3000.com/) - Guitar Tone Profiles
|
||||
* [PresetShare](https://presetshare.com/) - Audio Presets / Signup
|
||||
* [VSTSkins](https://vstskins.com/category/skins/?fwp_license=free) - VST Skins
|
||||
|
||||
|
|
@ -897,7 +923,7 @@
|
|||
## ▷ Browser Editors / Synths
|
||||
|
||||
* ⭐ **[Audioalter](https://audioalter.com/)**, **[WavaCity](https://wavacity.com/)**, [AudioMass](https://audiomass.co/), [editor.audio](https://editor.audio/), [TwistedWave](https://twistedwave.com/online) or [xAudioPro](https://www.xaudiopro.com/en/) - Online Editors
|
||||
* ⭐ **[BandLab](https://www.bandlab.com/)** - Digtal Audio Workstation
|
||||
* ⭐ **[BandLab](https://www.bandlab.com/)** - Digital Audio Workstation
|
||||
* ⭐ **[Drumhaus](https://www.drumha.us/)**, [iO-808](https://io808.com/), [Sequencer64](https://www.sequencer64.com/), [Drummy](https://drummy.io/), [DrumBit](https://drumbit.app/), [Roland50.studio](https://roland50.studio/), [Acid Machine 2](https://errozero.co.uk/acid-machine/), [orDrumbox](https://www.ordrumbox.com/) or [Hydrogen](http://hydrogen-music.org/) - Virtual Drum Machines
|
||||
* [UltraBox](https://ultraabox.github.io/), [AbyssBox](https://choptop84.github.io/abyssbox-app/), [JummBox](https://jummb.us/) / [GitHub](https://github.com/jummbus/jummbox), [BeepBox](https://www.beepbox.co/) or [GoldBox](https://aurysystem.github.io/goldbox/) - Online Sequencer / BeepBox Forks
|
||||
* [Efflux](https://www.igorski.nl/application/efflux/) - Online Tracker / Sequencer
|
||||
|
|
@ -924,7 +950,6 @@
|
|||
|
||||
* ⭐ **[AudioZ](https://audioz.download/)** - Download / [Forum](https://audiosex.pro/)
|
||||
* ⭐ **[Team V.R releases](https://rentry.co/FMHYB64#team-vr)** - Download
|
||||
* ⭐ **[bobdule](https://bobdule999.wixsite.com/bob-dule-factory-2)** - Kontakt / Native Instruments Plugins & Tools
|
||||
* [G-MEH](https://g-meh.com/) - Download / [Discord](https://discord.com/invite/g-meh)
|
||||
* [AudioWavePro](https://t.me/AudioWavePro) - Telegram / AudioZ Reuploads
|
||||
* [AudioTools](https://audiotools.in/) - Torrent / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
|
|
@ -942,7 +967,7 @@
|
|||
* [Decent Sampler](https://www.decentsamples.com/product/decent-sampler-plugin/) or [sforzando](https://www.plogue.com/products/sforzando.html) - VST Samplers / [Libraries](https://www.decentsamples.com/), [2](https://sfzinstruments.github.io/), [3](https://unreal-instruments.wixsite.com/unreal-instruments)
|
||||
* [Pianobook](https://www.pianobook.co.uk/) - 1500+ Sample Packs / Signup
|
||||
* [VCV Rack 2](https://vcvrack.com/Rack) or [Cardinal](https://cardinal.kx.studio/) - Eurorack Simulators
|
||||
* [IEM Plug-in Suite](https://plugins.iem.at/), [ModularSamples](https://www.modularsamples.com/Plugins.html) / [Github](https://github.com/publicsamples), [Igorski](https://www.igorski.nl/download) / [GitHub](https://github.com/igorski?utf8=✓&tab=repositories&q=vst), [SPARTA](https://leomccormack.github.io/sparta-site/) or [Chowdhury DSP](https://chowdsp.com/products.html) - Open-Source Plugins
|
||||
* [IEM Plug-in Suite](https://plugins.iem.at/), [ModularSamples](https://github.com/publicsamples), [Igorski](https://www.igorski.nl/download) / [GitHub](https://github.com/igorski?utf8=✓&tab=repositories&q=vst), [SPARTA](https://leomccormack.github.io/sparta-site/) or [Chowdhury DSP](https://chowdsp.com/products.html) - Open-Source Plugins
|
||||
* [Plugins4Free](https://plugins4free.com/), [looperman](https://www.looperman.com/free-music-software) or [AirWindows](https://www.airwindows.com/) / [Consolidated](https://www.airwindows.com/consolidated/) - Plugins
|
||||
* [Krush](https://www.tritik.com/product/krush/) - Bitcrusher Plugin
|
||||
* [samplv1](https://samplv1.sourceforge.io/) - Voice Synth
|
||||
|
|
@ -955,7 +980,7 @@
|
|||
|
||||
* ⭐ **[Kits4Beats](https://kits4beats.com/)** - Download / Torrent / [Telegram](https://t.me/kits4beats)
|
||||
* ⭐ **[PLUGG SUPPLY](https://t.me/pluggsupply)** - Telegram / [VK](https://vk.com/pluggsupply)
|
||||
* ⭐ **[OrangeFreeSounds](https://orangefreesounds.com/)**, [FreeSoundsLibrary](https://www.freesoundslibrary.com/) or [SoundGator](https://www.soundgator.com/) - Free-to-Use
|
||||
* ⭐ **[OrangeFreeSounds](https://orangefreesounds.com/)**, [FreeSoundsLibrary](https://www.freesoundslibrary.com/), [BandLab Samples](https://www.bandlab.com/sounds/free-samples) or [SoundGator](https://www.soundgator.com/) - Free-to-Use
|
||||
* [EXP Soundboard](https://sourceforge.net/projects/expsoundboard/), [Sound Show](https://soundshow.app/) / [Discord](https://discord.com/invite/8pGnfJyzNq), [Soundux](https://soundux.rocks/) or [Resanance](https://resanance.com/) - Soundboard Programs
|
||||
* [MyInstants](https://www.myinstants.com/index/us/), [101soundboards](https://www.101soundboards.com/) or [Soundboard.com](https://www.soundboard.com/) - Online Soundboards
|
||||
* [SampleBrain](https://gitlab.com/then-try-this/samplebrain), [rFXGen](https://raylibtech.itch.io/rfxgen), [Bfxr](https://www.bfxr.net/) / [GitHub](https://github.com/increpare/bfxr2), [ChipTone](https://sfbgames.itch.io/chiptone) or [SFXR](https://sfxr.me/) - Sound Effect Creators
|
||||
|
|
@ -964,7 +989,6 @@
|
|||
* [BBC Sound Effects](https://sound-effects.bbcrewind.co.uk/) / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
* [GDC](https://sonniss.com/gameaudiogdc) - Royalty Free Sound Effects Archive
|
||||
* [Citizen DJ](https://citizen-dj.labs.loc.gov/) - Free-to-Use Sounds from the Library of Congress
|
||||
* [FindSounds](https://www.findsounds.com/) - Find Sounds from Websites
|
||||
* [SNES Soundfonts](https://www.williamkage.com/snes_soundfonts/) or [Musical Artifacts](https://musical-artifacts.com/) - Soundfonts
|
||||
|
||||
***
|
||||
|
|
|
|||
|
|
@ -14,12 +14,22 @@ 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://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_redirect_bypass)** to skip annoying countdowns.
|
||||
|
||||
For mobile **[AdGuard Premium](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_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://revanced.app/)** / [Easy Setup](https://wispydocs.pages.dev/lg-tv-homebrew/). Note that uBO works on mobile browsers like Firefox / Brave too.
|
||||
For mobile **[AdGuard Premium](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_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://revanced.app/)** / [Easy Setup](https://wispydocs.pages.dev/revanced-obtainium/). Note that uBO works on mobile browsers like Firefox / Brave too.
|
||||
|
||||
!!!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.
|
||||
|
||||
***
|
||||
|
||||
### Antivirus
|
||||
|
||||
> How can I safely scan files, and determine if detections are false positives?
|
||||
|
||||
Before installing any file, it's recommended to scan the setup / install with **[VirusTotal](https://www.virustotal.com/)**. If you're having trouble determining if something is a false positive, refer to the **[Scan Guide](https://claraiscute.neocities.org/Guides/vtguide)** / [2](https://claraiscute.pages.dev/Guides/vtguide), or send it to us in Discord and we'll take a look for you.
|
||||
|
||||
!!!note Most antivirus programs are unnecessary and can cause slow down. If you use trusted websites, Windows Defender should be all you need to stay safe, and you can run a [Malwarebytes](https://www.malwarebytes.com/) scan from time to time for extra protection.
|
||||
|
||||
***
|
||||
|
||||
### Browsers
|
||||
|
||||
> Which web browser should I use?
|
||||
|
|
@ -28,7 +38,7 @@ We recommend **[Firefox](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/interne
|
|||
|
||||
For Android, we recommend **[Firefox](https://www.firefox.com/browsers/mobile/android/)**, **[Brave](https://brave.com/)** or **[Cromite](https://github.com/uazo/cromite)**.
|
||||
|
||||
For iOS, we recommend **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Safari + [AdGuard](https://adguard.com/en/adguard-ios/overview.html).
|
||||
For iOS, we recommend **[Orion](https://kagi.com/orion/)**, **[Brave](https://brave.com/)** or **Safari + [AdGuard](https://adguard.com/en/adguard-ios/overview.html)**.
|
||||
|
||||
!!!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.
|
||||
|
||||
|
|
@ -46,11 +56,11 @@ If you see a string of text that looks like this `aHR0cHM6Ly9mbWh5Lm5ldC8` you c
|
|||
|
||||
### Movies / Shows
|
||||
|
||||
* **Streaming: [P-Stream](https://pstream.mov/) / [Cineby](https://www.cineby.app/) / [Hexa](https://hexa.watch/)**
|
||||
* **Streaming: [Cineby](https://www.cineby.gd/) / [P-Stream](https://pstream.mov/)**
|
||||
* **Downloading: [Directories](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25B7_drives_.2F_directories)**
|
||||
* **Torrenting: [1337x](https://1337x.to/movie-library/1/) / [ExT.to](https://ext.to/browse/?cat=1)**
|
||||
* **Sports Streaming: [Streamed](https://streamed.su/) / [WatchSports](https://watchsports.to/)**
|
||||
* **Drama Streaming: [DramaGo](https://dramago.me/) / [DramaCool](https://dramacool.com.tr/)**
|
||||
* **Drama Streaming: [DramaCool](https://dramacool.com.tr/)**
|
||||
* **Track / Discover: [Trakt](https://trakt.tv/) / [Simkl](https://simkl.com/) / [Letterboxd](https://letterboxd.com/)**
|
||||
|
||||
***
|
||||
|
|
@ -59,14 +69,14 @@ If you see a string of text that looks like this `aHR0cHM6Ly9mbWh5Lm5ldC8` you c
|
|||
|
||||
* **Streaming: [AnimeKai](https://animekai.to/home) / [Miruro](https://www.miruro.com/) / [HiAnime](https://hianime.to/)**
|
||||
* **Downloading: [Tokyo Insider](https://www.tokyoinsider.com/) / [Hi10Anime](https://hi10anime.com/)**
|
||||
* **Torrenting: [Nyaa](https://nyaa.si/) / [Hayase](https://hayase.watch/)**
|
||||
* **Torrenting: [Nyaa](https://nyaa.si/) / [Hayase](https://hayase.watch/) / [Extensions](https://rentry.co/FMHYB64#hayase)**
|
||||
* **Track / Discover: [MyAnimeList](https://myanimelist.net/) / [AniList](https://anilist.co/)**
|
||||
|
||||
***
|
||||
|
||||
### Music
|
||||
|
||||
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX)**
|
||||
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [DAB Music Player](https://dab.yeet.su/)**
|
||||
* **Downloading: [lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/) / [Soulseek](https://slsknet.org/)**
|
||||
* **Mobile: [Metrolist](https://github.com/mostafaalagamy/metrolist) (Android) / [ReVanced Manager](https://revanced.app/) (Android) / [SpotC++](https://spotc.yodaluca.dev/) (iOS)**
|
||||
* **Track / Discover: [Last.fm](https://www.last.fm/home) / [RateYourMusic](https://rateyourmusic.com/)**
|
||||
|
|
@ -76,7 +86,7 @@ If you see a string of text that looks like this `aHR0cHM6Ly9mbWh5Lm5ldC8` you c
|
|||
### Gaming
|
||||
|
||||
* **Download / Torrent: [SteamRIP](https://steamrip.com/) / [FitGirl Repacks](https://fitgirl-repacks.site/)**
|
||||
* **Emulation / ROMs: [Emulation Wiki](https://emulation.gametechwiki.com/index.php/Main_Page) / [r/ROMs Mega](https://r-roms.github.io/) / [Myrient](https://rentry.co/FMHYB64#myrient)**
|
||||
* **Emulation / ROMs: [Emulation Wiki](https://emulation.gametechwiki.com/index.php/Main_Page) / [CrocDB](https://crocdb.net/) / [r/ROMs Mega](https://r-roms.github.io/) / [Myrient](https://rentry.co/FMHYB64#myrient)**
|
||||
* **Download Managers: [JDownloader](https://jdownloader.org/jdownloader2)**
|
||||
* **Track / Discover: [Backloggd](https://www.backloggd.com/) / [Glitchwave](https://glitchwave.com/)**
|
||||
|
||||
|
|
@ -89,21 +99,11 @@ If you see a string of text that looks like this `aHR0cHM6Ly9mbWh5Lm5ldC8` you c
|
|||
* **Manga: [Weeb Central](https://weebcentral.com/) / [MangaDex](https://mangadex.org/)**
|
||||
* **Comics: [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)**
|
||||
* **Ebook Readers: [Google Play Books](https://play.google.com/books) / [Koodo](https://www.koodoreader.com/) / [Foxit](https://www.foxit.com/pdf-reader/)** + [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#foxit-warning)
|
||||
* **Android Readers: [Librera](https://librera.mobi/) / [Moon+ Reader](https://www.moondownload.com/) / [Readera](https://readera.org/)**
|
||||
* **Android Readers: [Librera](https://librera.mobi/) / [Moon+ Reader](https://www.moondownload.com/) + [Theme Guide](https://claraiscute.neocities.org/Guides/moontheme/), [2](https://claraiscute.pages.dev/Guides/moontheme) / [Legado](https://github.com/gedoor/legado/blob/master/English.md)**
|
||||
* **Track / Discover: [GoodReads](https://www.goodreads.com/)** (books) / [StoryGraph](https://www.thestorygraph.com/) (books) / **[MAL](https://myanimelist.net/)** (manga) / **[LeagueOfComicGeeks](https://leagueofcomicgeeks.com/)** (comics)
|
||||
|
||||
***
|
||||
|
||||
### Antivirus
|
||||
|
||||
> How can I safely scan files, and determine if detections are false positives?
|
||||
|
||||
Before installing any file, it's recommended to scan the setup / install with **[VirusTotal](https://www.virustotal.com/)**. If you're having trouble determining if something is a false positive, refer to the **[Scan Guide](https://rentry.co/VTGuide)**, or send it to us in Discord and we'll take a look for you.
|
||||
|
||||
!!!note Most antivirus programs are unnecessary and can cause slow down. If you use trusted websites, Windows Defender should be all you need to stay safe, and you can run a [Malwarebytes](https://www.malwarebytes.com/) scan from time to time for extra protection.
|
||||
|
||||
***
|
||||
|
||||
### Privacy
|
||||
|
||||
> I don't have anything to hide, why should I care about privacy?
|
||||
|
|
@ -122,7 +122,7 @@ For email privacy, we recommend **[Proton](https://proton.me/mail)** and for sea
|
|||
|
||||
> How can I download / activate Windows for free?
|
||||
|
||||
Download an ISO from Massgrave's **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** page, and follow the **[Clean Install Windows Guide](https://gravesoft.dev/clean_install_windows)** to install it. After install, activate it with **[Microsoft Activation Scripts](https://rentry.co/FMHYB64#mas)**. If you'd like to use Windows 10 past its End-Of-Life date, follow **[Windows 10 After EOL](https://massgrave.dev/windows10_eol)**.
|
||||
Download an ISO from Massgrave's **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** page, and follow the **[Clean Install Windows Guide](https://massgrave.dev/clean_install_windows)** to install it. After install, activate it with **[Microsoft Activation Scripts](https://rentry.co/FMHYB64#mas)**. If you'd like to use Windows 10 past its End-Of-Life date, follow **[Windows 10 After EOL](https://massgrave.dev/windows10_eol)**.
|
||||
|
||||
* **[Windows Install / Debloat Guide](https://wispydocs.pages.dev/windows/)**
|
||||
* **Software Piracy: [CracksURL](https://cracksurl.com/) / [LRepacks](https://lrepacks.net/)**
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
* [Talos Blog](https://blog.talosintelligence.com/) - Cybersecurity News
|
||||
* [IT Security Guru](https://www.itsecurityguru.org/) - Cybersecurity News
|
||||
* [This Week in Rust](https://this-week-in-rust.org/) - Rust News / Updates
|
||||
* [hackertab.dev](https://hackertab.dev/) or [daily.dev](https://daily.dev/) - Dev Browser Startpages
|
||||
* [hackertab.dev](https://hackertab.dev/) - Dev Browser Startpages
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
* [PrivacyPolicyTemplate](https://www.privacypolicytemplate.net/) - Generate Privacy Policies
|
||||
* [Eternal Terminal](https://eternalterminal.dev/), [Termius](https://termius.com/) or [NxShell](https://nxshell.github.io/) - SSH Clients / Servers
|
||||
* [Beszel](https://beszel.dev/) - Dev Data Dashboard
|
||||
* [PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/) - SSH & Telnet Client / [Multi-Tab](https://ttyplus.com/) / [Fork](https://www.9bis.net/kitty/#!index.md) / [GitHub](https://github.com/cyd01/KiTTY/)
|
||||
* [PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/) - SSH & Telnet Client / [Multi-Tab](https://ttyplus.com/)
|
||||
* [Penpot](https://penpot.app/) - Cross Domain Design & Prototyping Platform
|
||||
* [Webhook.site](https://webhook.site/) - Webhook Tools
|
||||
* [Libraries.io](https://libraries.io/) - Package, Framework & Tool Search
|
||||
|
|
@ -63,10 +63,8 @@
|
|||
* [Bardeen](https://www.bardeen.ai/) or [N8N](https://n8n.io/) / [Workflow Index](https://github.com/Zie619/n8n-workflows) - Workflow Automation
|
||||
* [UI.Vision RPA](https://ui.vision/) - Workflow Automation Extension
|
||||
* [Hajimari](https://hajimari.io/) - Kubernetes Startpage / [Discord](https://discord.com/invite/HWGZSWJsA8)
|
||||
* [discord-api-libs](https://github.com/Apacheli/discord-api-libs) - Community Libraries for Discord API
|
||||
* [botwiki](https://botwiki.org/) - Learn How to Make Bots
|
||||
* [reddit-moderator-toolbox](https://github.com/toolbox-team/reddit-moderator-toolbox) - Toolbox for Reddit Extension Development
|
||||
* [devSwag](https://devswag.io/) - Developer Giveaways
|
||||
* [Commands.dev](https://www.commands.dev/) - Terminal Commands
|
||||
* [AirBroke](https://airbroke.icorete.ch/) or [Glitchtip](https://glitchtip.com) - Error Tracking Platforms
|
||||
* [UMLet](https://www.umlet.com/), [PlantUML](https://www.plantuml.com/) or [JDL Studio](https://start.jhipster.tech/jdl-studio/) - UML Diagrams Generators / Creators
|
||||
|
|
@ -88,13 +86,13 @@
|
|||
|
||||
* ⭐ **[Free for Developers](https://free-for.dev/)** / [GitHub](https://github.com/ripienaar/free-for-dev)
|
||||
* [Useful Tools](https://trolologuy.github.io/useful-tools/) / [GitHub](https://github.com/trolologuy/useful-tools)
|
||||
* [Best-Websites](https://github.com/sdmg15/Best-websites-a-programmer-should-visit)
|
||||
* [Tiny Helpers](https://tiny-helpers.dev/) / [GitHub](https://github.com/stefanjudis/tiny-helpers)
|
||||
* [Tiny Tools](https://tinytools.directory/)
|
||||
* [Free For Life](https://free.hrsn.dev/) / [GitHub](https://github.com/wdhdev/free-for-life/)
|
||||
* [WebdevHome](https://webdevhome.github.io/)
|
||||
* [Free Developer Stuff](https://freestuff.dev/)
|
||||
* [Addy](https://toolkit.addy.codes/)
|
||||
* [Rankchart](https://rankchart.org/)
|
||||
* [Prototypr](https://prototypr.io/toolbox/page/1)
|
||||
* [Awesome Sys Admin](https://github.com/awesome-foss/awesome-sysadmin) - System Admin Resources
|
||||
* [Awesome Design Patterns](https://github.com/DovAmir/awesome-design-patterns) - Design Pattern Resources
|
||||
|
|
@ -107,8 +105,8 @@
|
|||
* [IT Tools](https://it-tools.tech/)
|
||||
* [Web Toolbox](https://web-toolbox.dev/en)
|
||||
* [devina](https://devina.io/)
|
||||
* [24x7](https://www.site24x7.com/tools.html)
|
||||
* [wangchujiang](https://wangchujiang.com/tools/)
|
||||
* [SmallDev.tools](https://smalldev.tools/)
|
||||
* [Coders Tool](https://www.coderstool.com/)
|
||||
* [Utilities and Tools](https://utilities-online.info/)
|
||||
* [Clean CSS](https://www.cleancss.com/)
|
||||
|
|
@ -225,7 +223,7 @@
|
|||
* [Gittyup](https://murmele.github.io/Gittyup/) - Git Source Code History / [GitHub](https://github.com/Murmele/Gittyup)
|
||||
* [Gource](https://gource.io/) - Git Project Visualizer
|
||||
* [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
|
||||
* [Difftastic](https://difftastic.wilfred.me.uk/) / [GitHub](https://github.com/Wilfred/difftastic), [Delta](https://github.com/dandavison/delta) or [Git-Split-Diffs](https://github.com/banga/git-split-diffs) - Syntax Highlighting / Diff Tools
|
||||
* [Onefetch](https://onefetch.dev) - Command-line Git information tool / [GitHub](https://github.com/o2sh/onefetch)
|
||||
* [pre-commit](https://pre-commit.com/) - Manage / Maintain Pre-Commit Hooks / [GitHub](https://github.com/pre-commit/)
|
||||
* [commitlint](https://commitlint.js.org/) - Lint Commit Messages / [GitHub](https://github.com/conventional-changelog/commitlint)
|
||||
|
|
@ -251,7 +249,7 @@
|
|||
* [Langits](https://langits.davejudd.dev/) - View Your Most Used Languages on GitHub
|
||||
* [refined-github](https://github.com/refined-github/refined-github) or [Ungit](https://github.com/FredrikNoren/ungit) - Improved GitHub Interface
|
||||
* [GitHub Dorks](https://github-dorks.vercel.app/) - GitHub Search Tool
|
||||
* [Imgbot](https://imgbot.net/) - GitHub Image Compression
|
||||
* [Imgbot](https://imgbot.net/) - GitHub Image Compression / [GitHub](https://github.com/imgbot/Imgbot)
|
||||
* [ActionServerless](https://github.com/gitfx/ActionServerless) - Create Serverless Service
|
||||
* [Rahularity](https://gist.github.com/rahularity/86da20fe3858e6b311de068201d279e3) - Use Multiple Git Accounts at Once
|
||||
* [dotfiles](https://dotfiles.github.io/) - GitHub Dotfiles
|
||||
|
|
@ -259,7 +257,6 @@
|
|||
* [GitHub Web IDE](https://chromewebstore.google.com/detail/github-web-ide/adjiklnjodbiaioggfpbpkhbfcnhgkfe) - Web IDE / [GitHub](https://github.com/zvizvi/GitHub-Web-IDE)
|
||||
* [Octobox](https://octobox.io/), [Gitify](https://www.gitify.io/), [advanced-github-notifier](https://github.com/freaktechnik/advanced-github-notifier), [PR Monitor](https://github.com/fwouts/prmonitor), [Gitification](https://github.com/Gitification-App/gitification) or [CatLight](https://catlight.io/) - GitHub Notifications
|
||||
* [Pages CMS](https://pagescms.org/) - GitHub Content Management System / [GitHub](https://github.com/pages-cms/pages-cms)
|
||||
* [KeyManager](https://github.com/Yash-Garg/KeyManager) - GitHub SSH / GPG Key Manager
|
||||
* [DownGit](https://downgit.evecalm.com/), [GitHub2File](https://github.com/cognitivecomputations/github2file), [Gitzip](https://kinolien.github.io/gitzip/) or [Download Directory](https://download-directory.github.io/) - Download GitHub Repo Sub-Folders / Files
|
||||
* [Eget](https://github.com/zyedidia/eget) - Install Packages / Binaries Directly from GitHub
|
||||
* [useful-forks](https://useful-forks.github.io/) or [GitPop3](https://andremiras.github.io/gitpop3/) - GitHub Fork Search
|
||||
|
|
@ -272,7 +269,7 @@
|
|||
* [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
|
||||
* [Nightly.link](https://nightly.link/) - GitHub Shareable Nightly Links
|
||||
* [ActionFlow](https://actionsflow.github.io/) - Action Workflow Automation
|
||||
* [act](https://nektosact.com/) - Run GitHub Actions Locally / [GitHub](https://github.com/nektos/act)
|
||||
* [shot-scraper-template](https://github.com/simonw/shot-scraper-template) - Take Automated Screenshots of Web Pages
|
||||
|
|
@ -312,7 +309,6 @@
|
|||
* [Dockle](https://github.com/goodwithtech/dockle) - Image Linter
|
||||
* [Dive](https://github.com/wagoodman/dive) - Analyze Images
|
||||
* [WatchTower](https://containrrr.dev/watchtower/) - Container Automation
|
||||
* [autoportforward](https://github.com/ruoshan/autoportforward) - Port Forwarding
|
||||
* [Dozzle](https://dozzle.dev/) - Log Viewer
|
||||
* [Docker AutoHeal](https://github.com/willfarrell/docker-autoheal) - Container Monitor
|
||||
* [Diun](https://crazymax.dev/diun/) - Docker Notifications
|
||||
|
|
@ -329,7 +325,6 @@
|
|||
* [OhMyPosh](https://ohmyposh.dev/) - Terminal Theme Engines
|
||||
* [Lip Gloss](https://github.com/charmbracelet/lipgloss) - Style Definitions for Terminal Layouts
|
||||
* [sshx](https://sshx.io/) - Share Terminal Screen / [GitHub](https://github.com/ekzhang/sshx)
|
||||
* [cURL](https://curl.se/) - Transfer Data with URLs / [Converter](https://curlconverter.com/) / [IP Lookup](http://ifconfig.me/) / [Recipes](https://catonmat.net/cookbooks/curl)
|
||||
* [ripgrep](https://github.com/BurntSushi/ripgrep) or [Sift](https://sift-tool.org/) - `grep` Alternatives
|
||||
* [Edbrowse](https://edbrowse.org/) - Command Line Editor / Browser / Mail Client
|
||||
* [Command Not Found](https://command-not-found.com/) - Install Missing Commands
|
||||
|
|
@ -349,11 +344,11 @@
|
|||
* 🌐 **[Streaming Site APIs](https://rentry.co/FMHYB64#streaming-apis)**
|
||||
* 🌐 **[Manga APIs](https://rentry.co/manga-apis)** - Manga Site APIs
|
||||
* 🌐 **[List of Providers](https://docs.consumet.org/list-of-providers)** - Piracy Site APIs
|
||||
* 🌐 **[NASA API](http://api.nasa.gov/)** - NASA Open APIs
|
||||
* 🌐 **[NASA API](https://api.nasa.gov/)** - NASA Open APIs
|
||||
* 🌐 **[Free AI Stuff](https://github.com/zukixa/cool-ai-stuff)** / [2](https://cas.zukijourney.com/), [FreeAPIProviders](https://rentry.co/freeapiproviders), [OpenRouter](https://openrouter.ai/models?max_price=0) or [API Together](https://api.together.xyz/playground) - LLM / AI API Indexes
|
||||
* 🌐 **[LMAerena Price Compare](https://countless.dev/)** - AI API Price Comparisons
|
||||
* 🌐 **[AI Price Compare](https://countless.dev/)** - AI API Price Comparisons
|
||||
* ⭐ **[hoppscotch](https://hoppscotch.io/)**, [Firecamp](https://firecamp.dev/) or [Strapi](https://strapi.io/) - API Builders
|
||||
* ⭐ **[Shizuku](https://shizuku.rikka.app/)** / [Tools](https://github.com/legendsayantan/ShizuTools) / [GitHub](https://github.com/RikkaApps/Shizuku) or [Dhizuku](https://github.com/iamr0s/Dhizuku) - Let Apps Use System API (Android)
|
||||
* ⭐ **[Shizuku](https://shizuku.rikka.app/)** / [Tools](https://github.com/legendsayantan/ShizuTools) / [GitHub](https://github.com/RikkaApps/Shizuku), [Shizuku Fork](https://github.com/thedjchi/Shizuku) or [Dhizuku](https://github.com/iamr0s/Dhizuku) - Let Apps Use System API (Android)
|
||||
* [Wyzie Subs](https://sub.wyzie.ru/) or [Libre Subs](https://libre-subs.fifthwit.net/) - Subtitle Scraping API / [NPM Package](https://www.npmjs.com/package/wyzie-lib) / [Docs](https://docs.wyzie.ru/)
|
||||
* [HTTPie](https://httpie.io/) - Test REST, GraphQL, and HTTP APIs
|
||||
* [Rest Test Test](https://resttesttest.com/) - Test REST / CORS Services
|
||||
|
|
@ -367,6 +362,8 @@
|
|||
* [Mockae](https://mockae.com/) - Mock APIs with Lua Execution
|
||||
* [InstantAPIs](https://github.com/csharpfritz/InstantAPIs) - API Endpoint Generator
|
||||
* [Stein](https://steinhq.com/) - Turn Google Sheets into Database API
|
||||
* [Userdoccers](https://docs.discord.food/) - Unofficial Discord API Documentation
|
||||
* [discord-api-libs](https://github.com/Apacheli/discord-api-libs) - Community Libraries for Discord API
|
||||
* [Lanyard](https://github.com/Phineas/lanyard) - Export Discord Rich Presence to API Endpoint / Websocket / [Discord](https://discord.gg/lanyard)
|
||||
* [Telegram Bot API](https://core.telegram.org/bots) / [GitHub](https://github.com/tdlib/telegram-bot-api) or [PHP Telegram Bot](https://github.com/php-telegram-bot/core) - Telegram Bot API
|
||||
* [cf-workers-telegram-bot](https://github.com/codebam/cf-workers-telegram-bot) - Serverless Telegram Bot / [GitHub](https://github.com/codebam/cf-workers-telegram-bot)
|
||||
|
|
@ -380,8 +377,8 @@
|
|||
|
||||
* 🌐 **[Awesome Machine Learning](https://github.com/josephmisiti/awesome-machine-learning)** - Machine Learning Framework Index
|
||||
* 🌐 **[Awesome ML](https://github.com/underlines/awesome-ml)** or [ML Resources](https://ml-resources.vercel.app/) - Machine Learning Resources
|
||||
* ⭐ **[Hugging Face](https://huggingface.co/)**, [LLM Papers](https://potent-twister-29f.notion.site/b0fc32542854456cbde923e0adb48845?v=e2d14d2ef0c848f5a1d5b71f9977d7c5) or [OpenML](https://www.openml.org/) - Machine Learning Datasets / Papers
|
||||
* ⭐ **[Deep playground](http://playground.tensorflow.org/)** - Neural Networks Playground
|
||||
* ⭐ **[Hugging Face](https://huggingface.co/)**, [ModelScope](https://www.modelscope.ai/), [LLM Papers](https://potent-twister-29f.notion.site/b0fc32542854456cbde923e0adb48845?v=e2d14d2ef0c848f5a1d5b71f9977d7c5) or [OpenML](https://www.openml.org/) - Machine Learning Datasets / Papers
|
||||
* ⭐ **[Deep playground](https://playground.tensorflow.org/)** - Neural Networks Playground
|
||||
* [Awesome Generative AI Guide](https://github.com/aishwaryanr/awesome-generative-ai-guide) - LLM Research Resources
|
||||
* [Unsloth](https://github.com/unslothai/unsloth) - LLM Finetuning / Text Completion / [Notebooks](https://github.com/unslothai/notebooks) / [Guide](https://docs.unsloth.ai/get-started/fine-tuning-guide)
|
||||
* [DeepSpeed](https://www.deepspeed.ai/) - Deep Learning Optimization Library
|
||||
|
|
@ -401,6 +398,7 @@
|
|||
* 🌐 **[Awesome Game Production](https://github.com/vhladiienko/awesome-game-production)** - Game Production Resources
|
||||
* ↪️ **[Learn Game Development](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_game_development)**
|
||||
* ↪️ **[Sound Effect Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_sfx_.2F_loops)**
|
||||
* [GameDev Torch](https://gamedevtorch.com/) - Multi-Site Game Dev Search Engine
|
||||
* [HiddenPalace](https://hiddenpalace.org/) - Game Development Media Archive
|
||||
* [Tommti Systems](https://www.tommti-systems.de/go.html?http://www.tommti-systems.de/main-Dateien/files.html) - 3D Benchmark Tools
|
||||
* [Tracy Profiler](https://github.com/wolfpld/tracy) - Frame Profiler
|
||||
|
|
@ -464,9 +462,9 @@
|
|||
* 🌐 **[Awesome Web Editor](https://github.com/xjh22222228/awesome-web-editor)** - FOSS Web Editor Index
|
||||
* ↪️ **[Text Editors / Notes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25BA_text_editors)**
|
||||
* ⭐ **[VSCodium](https://vscodium.com/)** or **[Visual Studio Code](https://code.visualstudio.com/)**, [2](https://vscode.dev/), [3](https://cs50.dev/) - Code Editor / [Extensions](https://www.vsixhub.com/) / [Extensions Marketplace](https://rentry.co/vscodiumguide)
|
||||
* ⭐ **[JetBrains](https://jetbrains.com/)** / [Unlock](https://rentry.co/FMHYB64#jetbrains)
|
||||
* ⭐ **[JetBrains](https://jetbrains.com/)** / [Features](https://rentry.co/FMHYB64#jetbrains)
|
||||
* ⭐ **[Neovim](https://neovim.io/)** - Code Editor / [Matrix](https://matrix.to/#/#neovim:matrix.org)
|
||||
* ⭐ **[zed](https://zed.dev/)** - Code Editor / [Windows Build](https://zed.dev/api/releases/nightly/latest/zed_editor_installer_x86_64.exe) / [GitHub](https://github.com/zed-industries/zed)
|
||||
* ⭐ **[zed](https://zed.dev/)** - Code Editor / [GitHub](https://github.com/zed-industries/zed)
|
||||
* ⭐ **[Lite XL](https://lite-xl.com/)** or [Pragtical](https://pragtical.dev/) - Code Editor / [Plugin Manager](https://github.com/lite-xl/lite-xl-plugin-manager) / [Plugins](https://github.com/lite-xl/lite-xl-plugins) / [Themes](https://github.com/lite-xl/lite-xl-colors)
|
||||
* ⭐ **[Emacs](https://www.gnu.org/software/emacs/)** - Code Editor / [Docs](https://emacsdocs.org/) / [Resources](https://github.com/emacs-tw/awesome-emacs)
|
||||
* ⭐ **[WebDen](https://webden.dev/)**, [Sharplab](https://sharplab.io/), [tech.io](https://tech.io/) or [CodingGround](https://www.tutorialspoint.com/codingground.htm) - Code Playgrounds
|
||||
|
|
@ -534,7 +532,6 @@
|
|||
* [Sora](https://github.com/Rosemoe/sora-editor) - Android Code Editor
|
||||
* [Visual Code Space](https://github.com/Visual-Code-Space/Visual-Code-Space) - Android Code Editor
|
||||
* [Spck Editor](https://play.google.com/store/apps/details?id=io.spck) - Android Code Editor
|
||||
* [droidvim](https://github.com/shiftrot/droidvim) - Vim Code Editor
|
||||
* [VHEditor](https://github.com/vhqtvn/VHEditor-Android) - VSCode Editor
|
||||
* [diohub](https://github.com/NamanShergill/diohub), [PuppyGit](https://github.com/catpuppyapp/PuppyGit) or [OctoDroid](https://github.com/slapperwan/gh4a) - Android Git Clients
|
||||
* [GitSync](https://github.com/ViscousPot/GitSync) - Android Git Remote Repo Sync
|
||||
|
|
@ -554,6 +551,7 @@
|
|||
* [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/) - Code Snippet Manager
|
||||
* [Ray](https://www.ray.so/), [Carbon](https://carbon.now.sh/), [CodeImage](https://codeimage.dev/), [ShowCode](https://showcode.app/), [Beauty Codes](https://code.html.zone/) or [Chalk](https://chalk.ist/) - Code Screenshot Tools
|
||||
* [Meld](https://meld.app/) / [2](https://meldmerge.org/) 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)
|
||||
|
|
@ -583,8 +581,8 @@
|
|||
* [neovide](https://neovide.dev), [gnvim](https://github.com/vhakulinen/gnvim), [nvui](https://github.com/rohit-px2/nvui), [Neovim wiki##gui](https://github.com/neovim/neovim/wiki/Related-projects##gui) - Neovim GUIs
|
||||
* [instant.nvim](https://github.com/jbyuki/instant.nvim) - Collaborative Neovim Editing
|
||||
* [chatgpt.nvim](https://github.com/terror/chatgpt.nvim) - ChatGPT in Neovim
|
||||
* [Vim Plug](https://github.com/junegunn/vim-plug), [vim-pathogen](http://www.vim.org/scripts/script.php?script_id=2332) / [GitHub](https://github.com/tpope/vim-pathogen) or [Dein](https://github.com/Shougo/dein.vim) - Vim Plugin Managers
|
||||
* [VimAwesome](https://vimawesome.com/) - Vim Plugins / [GitHub](https://github.com/vim-awesome/vim-awesome)
|
||||
* [Vim Plug](https://github.com/junegunn/vim-plug), [vim-pathogen](https://www.vim.org/scripts/script.php?script_id=2332) / [GitHub](https://github.com/tpope/vim-pathogen) or [Dein](https://github.com/Shougo/dein.vim) - Vim Plugin Managers
|
||||
* [VimAwesome](https://vimawesome.com/) - Vim Plugins
|
||||
* [nerdtree](https://github.com/preservim/nerdtree) - Vim Tree Explorer
|
||||
* [VimColorSchemes](https://vimcolorschemes.com/) - Vim Color Schemes
|
||||
* [The Ultimate vimrc](https://github.com/amix/vimrc) - Vim Config
|
||||
|
|
@ -599,7 +597,7 @@
|
|||
* [chatgpt-vscode](https://github.com/mpociot/chatgpt-vscode) - VSCode ChatGPT
|
||||
* [Open VSX](https://open-vsx.org/) - Open VSX Registry
|
||||
* [snippet-generator](https://snippet-generator.app/) - Snippet Generator
|
||||
* [Dendron](https://www.dendron.so/) - Knowledge Managment
|
||||
* [Dendron](https://www.dendron.so/) - Knowledge Management
|
||||
* [Discord Tools](https://github.com/clementwzk/Discord-Tools)
|
||||
* [vscode-smart-clicks](https://github.com/antfu/vscode-smart-clicks) - Smart Clicks
|
||||
* [code-server](https://coder.com/) - Web Server / [GitHub](https://github.com/coder/code-server)
|
||||
|
|
@ -617,7 +615,7 @@
|
|||
# ► Programming Languages
|
||||
|
||||
* 🌐 **[Awesome Explorer](https://awexplor.github.io/)** - Dev Awesome List Frontend / [GitHub](https://github.com/AweXplor/awexplor.github.io)
|
||||
* 🌐 **[Awesome Cheatsheets](https://lecoupa.github.io/awesome-cheatsheets/)**, **[QuickRef.me](https://quickref.me/)**, [HowDoI](https://github.com/gleitz/howdoi), [OverApi](https://overapi.com/), [Reference](https://cheatsheets.zip/) / [GitHub](https://github.com/Fechin/reference) or [Cheat Sheets](http://www.cheat-sheets.org/) - Programming Cheat Sheets
|
||||
* 🌐 **[Awesome Cheatsheets](https://lecoupa.github.io/awesome-cheatsheets/)**, **[QuickRef.me](https://quickref.me/)**, [HowDoI](https://github.com/gleitz/howdoi), [OverApi](https://overapi.com/), [Reference](https://cheatsheets.zip/) / [GitHub](https://github.com/Fechin/reference) or [Cheat Sheets](https://www.cheat-sheets.org/) - Programming Cheat Sheets
|
||||
* 🌐 **[Codigo](https://codigolangs.com/)** - Programming Language Repository
|
||||
* 🌐 **[Awesome Go](https://awesome-go.com/)** or [Go Recipes](https://github.com/nikolaydubina/go-recipes) - Go Resources
|
||||
* 🌐 **[TheAlgorithms](https://the-algorithms.com/)** - Coding Algorithms / [GitHub](https://github.com/TheAlgorithms/)
|
||||
|
|
@ -683,7 +681,7 @@
|
|||
|
||||
* 🌐 **[Awesome HTML5](https://diegocard.com/awesome-html5)** - HTML5 Resources
|
||||
* ⭐ **[HTML Reference](https://htmlreference.io/)**, [HTML Cheat Sheet](https://htmlcheatsheet.com/) or [HTML.com](https://html.com/) - HTML Guides / Cheat Sheets
|
||||
* [HTML-Minifier](https://kangax.github.io/html-minifier/) - HTML Minifier
|
||||
* [HTML-Minifier](https://github.com/j9t/html-minifier-next) - HTML Minifier
|
||||
* [HTMLRev](https://htmlrev.com/) - Free HTML Templates
|
||||
* [Markdown to HTML](https://markdowntohtml.com/) - Markdown to HTML Converter
|
||||
* [APlayer](https://aplayer.js.org/), [DPlayer](https://dplayer.diygod.dev/) or [xgplayer](https://h5player.bytedance.com/en/) - HTML5 Video Players
|
||||
|
|
@ -722,7 +720,6 @@
|
|||
* ↪️ **[TypeScript Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_typescript_tools)**
|
||||
* [Modern JS Cheatsheet](https://mbeaudru.github.io/modern-js-cheatsheet/) - JavaScript Cheat Sheet / [GitHub](https://github.com/mbeaudru/modern-js-cheatsheet)
|
||||
* [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)
|
||||
* [jsdfe](https://avotoko.github.io/javascript-deobfuscator/), [de4js](https://lelinhtinh.github.io/de4js/), [Deobfuscator](https://willnode.github.io/deobfuscator/), [WebCrack](https://webcrack.netlify.app/), [Deobfuscate](https://deobfuscate.relative.im/) or [deobfuscate.io](https://deobfuscate.io/) - JavaScript Deobfuscators
|
||||
* [Minify JS](https://minify-js.com/) or [JS Compressor](https://jscompressor.treblereel.dev/) - JavaScript Minifiers
|
||||
|
|
@ -742,6 +739,7 @@
|
|||
* [Refine](https://refine.dev/) - React App Builders
|
||||
* [Alright](https://github.com/DoneDeal0/alright-react-app) - Generate React Apps
|
||||
* [Codux](https://www.codux.com/) - Visual IDE for React
|
||||
* [Puck](https://puckeditor.com/) - Create Simplified Visual Editors for Non-Devs / [GitHub](https://github.com/puckeditor/puck/)
|
||||
* [React SVG](https://react-svgr.com/playground/) - Convert SVG to React Components
|
||||
* [Zorm](https://github.com/esamattis/react-zorm) - Type-Safe Form for React
|
||||
* [Million](https://million.dev) - React Replacement
|
||||
|
|
@ -774,15 +772,15 @@
|
|||
* 🌐 **[Frontend Developers](https://github.com/andrew--r/channels)** or [Web Dev / Programming YouTube Channels](https://rentry.co/cozqr) - Web Dev YouTube Channel Indexes
|
||||
* ↪️ **[Site Mockups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_app_.2F_site_mockups)**
|
||||
* ↪️ **[Archive / Scrape / Crawl Web Pages](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25BA_archiving)**
|
||||
* ⭐ **[Ray.st](https://ray.st/)**, [BuiltWith](https://builtwith.com/) or [Wappalyzer](https://www.wappalyzer.com/) - Identify Technologies on Websites / [Addons](https://www.wappalyzer.com/apps/)
|
||||
* ⭐ **[Ray.st](https://ray.st/)** or [Wappalyzer](https://www.wappalyzer.com/) - Identify Technologies on Websites / [Addons](https://www.wappalyzer.com/apps/)
|
||||
* ⭐ **[GoAccess](https://goaccess.io/)** - Web Log Analyzer / [GitHub](https://github.com/allinurl/goaccess)
|
||||
* ⭐ **[Formulaer](https://formulaer.com/)**, [Tally](https://tally.so/), [FormBricks](https://github.com/formbricks/formbricks), [Formshare](https://formshare.ai/), [Deformity](https://deformity.ai/) or [Stylr](https://www.stylr.xyz/) - Form Builders
|
||||
* [Flounder](https://flounder.online/) - Website Building Discussion
|
||||
* [FileQ](https://fileq.net/) or [DataNodes](https://datanodes.to/) / [Discord](https://discord.gg/mKyBMyeKvh) - Webmasters Only File Hosts
|
||||
* [Website Planet Tools](https://www.websiteplanet.com/webtools/), [Browserling Tools](https://www.browserling.com/tools/) or [WebCode](https://webcode.tools/) - Site Development Tools
|
||||
* [Website Planet Tools](https://www.websiteplanet.com/webtools/), [Networking Toolbox](https://networkingtoolbox.net/), [Browserling Tools](https://www.browserling.com/tools/) or [WebCode](https://webcode.tools/) - Site Development Tools
|
||||
* [shadcn-ui](https://ui.shadcn.com/) or [shadcn-svelte](https://shadcn-svelte.com) - Web Component Libraries
|
||||
* [Web Developer](https://chromewebstore.google.com/detail/web-developer/bfbameneiokkgbdmiekhjnmfkcnldhhm) - Web Developer Toolbar Extension
|
||||
* [GoatCounter](https://www.goatcounter.com/), [Rybbit](https://github.com/rybbit-io/rybbit) or [Umami](https://umami.is/) - Site Analytics
|
||||
* [GoatCounter](https://www.goatcounter.com/), [Cloudflare Web Analytics](https://www.cloudflare.com/web-analytics/), [Rybbit](https://github.com/rybbit-io/rybbit), [MS Clarity](https://clarity.microsoft.com/) or [Umami](https://umami.is/) - Site Analytics
|
||||
* [ElasticSearch](https://www.elastic.co/products/elasticsearch) - Search & Analytics Engine / [GitHub](https://github.com/elastic/elasticsearch)
|
||||
* [Tabler](https://tabler.io/) - Site Admin Dashboard
|
||||
* [Octopus](https://octopus.do/sitemap) - Site Planning Tool
|
||||
|
|
@ -790,10 +788,10 @@
|
|||
* [WireFlow](https://wireflow.co/) - Flow Prototype Maker
|
||||
* [Web Dev Checklist](https://www.toptal.com/developers/webdevchecklist) - Things to Remember for Web Devs
|
||||
* [Dagu](https://dagu.cloud/) - WebUI Job Manager / [GitHub](https://github.com/dagu-org/dagu)
|
||||
* [Plow](https://github.com/six-ddc/plow) - HTTP Benchmarking
|
||||
* [cURL](https://curl.se/) or [xh](https://github.com/ducaale/xh) - HTTP Clients / Transfer Data with URLs / [Converter](https://curlconverter.com/) / [IP Lookup](https://ifconfig.me/) / [Recipes](https://catonmat.net/cookbooks/curl)
|
||||
* [http-server](https://github.com/http-party/http-server) - No Config HTTP Server
|
||||
* [Plow](https://github.com/six-ddc/plow) - HTTP Benchmarking
|
||||
* [Apache](https://httpd.apache.org/) - HTTP Server
|
||||
* [Observatory](https://developer.mozilla.org/en-US/observatory) - HTTP Header Security Test
|
||||
* [Transform](https://transform.tools/) - Polyglot Web Converter
|
||||
* [LibreCaptcha](https://github.com/librecaptcha/lc-core) or [mCaptcha](https://mcaptcha.org/) - Privacy-Based Captcha Systems
|
||||
* [Media Chrome](https://www.media-chrome.org/) - Media Player Elements / [GitHub](https://github.com/muxinc/media-chrome)
|
||||
|
|
@ -813,6 +811,7 @@
|
|||
* [Microlink SDK](https://microlink.io/sdk) / [GitHub](https://github.com/microlinkhq/sdk), [React Tiny Link](https://winhtaikaung.github.io/react-tiny-link/) / [GitHub](https://github.com/winhtaikaung/react-tiny-link) or [Link Preview JS](https://github.com/OP-Engineering/link-preview-js) - Create Link Previews
|
||||
* [CORS Proxy](https://corsproxy.github.io/) - Free CORS Proxy
|
||||
* [frp](https://github.com/fatedier/frp), [GoDoxy](https://github.com/yusing/godoxy) or [YARP](https://github.com/dotnet/yarp) - Reverse Proxies
|
||||
* [wsrv.nl](https://wsrv.nl/) - Image Caching / Delivery
|
||||
* [WhatPWACanDo](https://whatpwacando.today/) - PWA Examples
|
||||
* [Selenium](https://www.selenium.dev/), [CopyCat](https://www.runcopycat.com/), [PlayWright](https://playwright.dev/) or [Huginn](https://github.com/huginn/huginn) - Browser Automation
|
||||
* [Automa](https://www.automa.site/) or [Browserflow](https://browserflow.app/) - Browser Automation Extensions
|
||||
|
|
@ -831,12 +830,13 @@
|
|||
## ▷ Website Builders
|
||||
|
||||
* 🌐 **[Awesome Static Generators](https://myles.github.io/awesome-static-generators/)** / [GitHub](https://github.com/myles/awesome-static-generators) or **[Jamstack Generators](https://jamstack.org/generators/)** - Static Site Generator Indexes
|
||||
* ⭐ **[Webstudio](https://webstudio.is/)** - Website Builder
|
||||
* ⭐ **[Framer](https://www.framer.com/)** - Website Builder
|
||||
* ⭐ **[Eleventy](https://11ty.dev/)** - Static Site Generator / [Discord](https://discord.gg/GBkBy9u) / [GitHub](https://github.com/11ty/eleventy)
|
||||
* ⭐ **[Hugo](https://gohugo.io/)** - Static Site Generator
|
||||
* ⭐ **[Webstudio](https://webstudio.is/)** - Website Builder
|
||||
* ⭐ **[VitePress](https://vitepress.dev/)** - Static Site Generator
|
||||
* ⭐ **[Docusaurus](https://docusaurus.io/)** - Static Markdown Website Generators / [GitHub](https://github.com/facebook/docusaurus)
|
||||
* ⭐ **[Carrd](https://carrd.co/)** - Simple Website Builder
|
||||
* [Retype](https://retype.com/) - Static Markdown Website Generator / [GitHub](https://github.com/retypeapp/retype)
|
||||
* [Zola](https://www.getzola.org/) - Static Markdown Website Generator
|
||||
* [Publii](https://getpublii.com/) - Static Markdown Website Generator / No Coding
|
||||
|
|
@ -881,7 +881,7 @@
|
|||
* [Palettte](https://palettte.app/) - Color Palette Editor
|
||||
* [Colouris](https://colouris.surge.sh/) - Color Model Conversions
|
||||
* [PaletteGenerator](https://palettegenerator.com/) or [Alwane](https://alwane.io/) - Color Palette Extractor
|
||||
* [Colorable](https://colorable.jxnblk.com/) / [GitHub](https://github.com/jxnblk/colorable), [color.review](https://color.review/), [accessible-color-matrix](https://toolness.github.io/accessible-color-matrix/) or [Accessible Brand Colors](https://abc.useallfive.com/) - Accessible Color Pallette Builders
|
||||
* [Colorable](https://colorable.jxnblk.com/) / [GitHub](https://github.com/jxnblk/colorable), [color.review](https://color.review/), [accessible-color-matrix](https://toolness.github.io/accessible-color-matrix/) or [Accessible Brand Colors](https://abc.useallfive.com/) - Accessible Color Palette Builders
|
||||
* [Color Oracle](https://colororacle.org/), [WhoCanUse](https://www.whocanuse.com/) or [Toptal](https://www.toptal.com/designers/colorfilter) - Color Blindness Simulator / Tests
|
||||
* [Simpler Color](https://github.com/arnelenero/simpler-color) - Create Web Color System
|
||||
* [Stylify Me](http://stylifyme.com/) - Extract Webpage Colors
|
||||
|
|
@ -948,7 +948,6 @@
|
|||
|
||||
## ▷ WordPress Tools
|
||||
|
||||
* ↪️ **[Wordpress Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_wordpress_themes)**
|
||||
* ⭐ **[GPLDL](https://gpldl.com/)** - Premium Themes / Plugins / 25 Monthly / Sign-Up Required
|
||||
* ⭐ **[WPLocker](https://www.wplocker.com/)** or [Weadown](https://weadown.com/) - Premium Themes / Plugins
|
||||
* [Babiato](https://babia.to/) - Themes / Plugins Forum / Sign-Up Required
|
||||
|
|
@ -958,7 +957,6 @@
|
|||
* [faustjs](https://faustjs.org) - WordPress Framework
|
||||
* [Timber](https://upstatement.com/timber/) - WordPress Theme Creator / [GitHub](https://github.com/timber/timber)
|
||||
* [KokoAnalytics](https://www.kokoanalytics.com/) - WordPress Analytics
|
||||
* [UUID Tools](https://www.uuidtools.com/) - UUID Generator
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -998,20 +996,6 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Image Optimization
|
||||
|
||||
* ⭐ **[ImageMagick](https://imagemagick.org/index.php)** - Image Optimization / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php)
|
||||
* [RIOT](https://riot-optimizer.com/) - Image Optimization
|
||||
* [YOGA](https://yoga.flozz.org/) - Image Optimization
|
||||
* [ImageFoo](https://imagefoo.com/) - Image Optimization
|
||||
* [tiny.pictures](https://tiny.pictures/) - Image Optimization
|
||||
* [Ihancer](https://ihancer.com) - Image Optimization
|
||||
* [Waifu2x](https://www.waifu2x.net/) - Image Optimization
|
||||
* [OxiPNG](https://github.com/shssoichiro/oxipng) - PNG Optimization
|
||||
* [Crunch](https://github.com/chrissimpkins/Crunch) - PNG Optimization / Self-Hosted / No Sign-Up
|
||||
|
||||
***
|
||||
|
||||
## ▷ SVG Tools
|
||||
|
||||
* ↪️ **[SVG / Vector Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_svg_icons)**
|
||||
|
|
@ -1039,49 +1023,48 @@
|
|||
|
||||
# ► Hosting Tools
|
||||
|
||||
* ↪️ **[Dynamic DNS Services / Subdomains](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dynamic_dns_services_.2F_subdomains)**
|
||||
* ↪️ **[Self-Hosted Wiki Alts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_self-hosted_wiki_alts)**
|
||||
* 🌐 **[Awesome-Web-Hosting](https://nuhmanpk.github.io/Awesome-Web-Hosting/)** - Free Hosting Provider Index / [GitHub](https://github.com/nuhmanpk/Awesome-Web-Hosting)
|
||||
* 🌐 **[Awesome Cloudflare](https://github.com/irazasyed/awesome-cloudflare)** - Cloudflare Resources
|
||||
* 🌐 **[Awesome Cloudflare](https://github.com/irazasyed/awesome-cloudflare)** - Cloudflare Resource Index
|
||||
* 🌐 **[VPS Comparison Chart](https://lowendstock.com/deals/)**, [servers.fyi](https://www.servers.fyi/) or [Bitcoin VPS](https://bitcoin-vps.com/) - VPS Comparisons
|
||||
* ⭐ **[Check-Host](https://check-host.net/)**, [StatPing](https://github.com/statping/statping), [Uptime](https://betterstack.com/uptime), [Uptime Kuma](https://github.com/louislam/uptime-kuma), [Highlight](https://www.highlight.io/), [AreWeDown?](https://github.com/shukriadams/arewedown), [UptimeRobot](https://uptimerobot.com/), [Checkmate](https://github.com/bluewave-labs/Checkmate) or [24x7](https://www.site24x7.com/tools.html) - Site / Server Uptime Monitors
|
||||
* ⭐ **[TLD-List](https://tld-list.com/)**, [TLDES](https://tldes.com/) or [SitePriace](https://www.siteprice.org/) - Domain Price Comparisons
|
||||
* ⭐ **[deSEC](https://desec.io/)**, [DuckDNS](https://www.duckdns.org/), [ClouDNS](https://www.cloudns.net/), [FreeDNS](https://freedns.afraid.org/), [dynu](https://dynu.com/), [NoIP](https://www.noip.com/), [myaddr](https://myaddr.tools/), [nsupdate](https://www.nsupdate.info/) / [GitHub](https://github.com/nsupdate-info/nsupdate.info) - Dynamic DNS Services / Subdomains
|
||||
* ⭐ **[censys](https://search.censys.io/)**, [wtfis](https://github.com/pirxthepilot/wtfis), [digger.tools](https://digger.tools/), [LinkScope](https://accentusoft.com/), [URLDNA](https://urldna.io/) or [DNSlytics](https://dnslytics.com/) - Domain Info Tools
|
||||
* [Rankchart](https://rankchart.org/) - Multiple Domain Tools
|
||||
* [Instantdomainsearch](https://instantdomainsearch.com/), [Domaintyper](https://domaintyper.com/), [Iwantmyname](https://iwantmyname.com/), [Whois.com](https://www.whois.com/), [Domainr](https://domainr.com) or [Atlaq](https://atlaq.com) - Domain Availability Checkers
|
||||
* [Pyfunceble](https://pyfunceble.github.io/#/) - Domain Availability Checker App
|
||||
* [WhoisRequest](https://whoisrequest.com/) or [Whois Lookup](https://whois.domaintools.com/) - Whois Search
|
||||
* [IPIP.NET](https://whois.ipip.net/) - Country / Region ASNs
|
||||
* [AtSameIP](https://atsameip.intercode.ca/) - Find Websites on the Same IP
|
||||
* [SubDomainizer](https://github.com/nsonaniya2010/SubDomainizer), [Google Search Console](https://search.google.com/search-console/), [MerkleMap](https://www.merklemap.com/) or [Subdomain Finder](https://subdomainfinder.c99.nl/) - Find Hidden Subdomains
|
||||
* [Check for Cloudflare](https://checkforcloudflare.selesti.com/) - Check Sites for Cloudflare
|
||||
* [Cloudflare Radar](https://radar.cloudflare.com/) - Cloudflare Insights
|
||||
* [CloudFlare DDNS Updater](https://github.com/K0p1-Git/cloudflare-ddns-updater/) - Cloudflare Dynamic DNS Auto-Update Script
|
||||
* [GoodBadISPs](https://gitlab.torproject.org/legacy/trac/-/wikis/doc/GoodBadISPs) - Best ISPs for Tor Hosting
|
||||
* [Server Hunter](https://www.serverhunter.com/) or [ServerSearcher](https://www.serversearcher.com/) - Search / Compare Servers
|
||||
* [srvrlss](https://srvrlss.io/) - Search / Compare Serverless Platforms
|
||||
* [Host-Tracker](https://www.host-tracker.com/en/ic/check-http) or [OONI](https://ooni.org/) - Check Site Location Availability / [Bypass Paywall](https://rentry.co/FMHYB64#host-tracker-bypass)
|
||||
* [OpenPanel](https://openpanel.com/) / [GitHub](https://github.com/stefanpejcic/openpanel), [Sentora](https://sentora.org/) or [Moonlight](https://github.com/Moonlight-Panel/Moonlight) - Web Hosting Panels
|
||||
* [GetDeploying](https://getdeploying.com/) - Compare Cloud Providers
|
||||
* [Meta Tag Gen](https://lewdev.github.io/apps/meta-tag-gen/), [OpenGraph](https://www.opengraph.xyz/) or [MetaTags](https://metatags.io/) - Meta Tag Generators
|
||||
* ⭐ **[Check-Host](https://check-host.net/)** or [Uptime](https://betterstack.com/uptime) - Web-Based Uptime Monitors
|
||||
* [Oracle Cloud](https://www.oracle.com/cloud/free/) - Free VPS / Real Information Required / [Guide (Important)](https://guides.viren070.me/selfhosting/oracle)
|
||||
* [InstantDomain](https://instantdomainsearch.com/), [DomainTyper](https://domaintyper.com/), [IWantMyName](https://iwantmyname.com/), [Whois](https://www.whois.com/), [Domainr](https://domainr.com) or [Atlaq](https://atlaq.com) - Domains
|
||||
* [Pyfunceble](https://pyfunceble.github.io/#/) - Domain Availability App
|
||||
* [DNForum](https://www.dnforum.com/) - Domain Name Forum
|
||||
* [DNSTwist](https://dnstwist.it/) / [GitHub](https://github.com/elceef/dnstwist), [HaveIBeenSquatted](https://haveibeensquatted.com) or [DNSTwister](https://dnstwister.report/) - Typosquatting Checkers
|
||||
* [iana](https://www.iana.org/), [arin](https://www.arin.net/), [lacnic](https://www.lacnic.net/), [afrinic](https://www.afrinic.net/) or [apnic](https://www.apnic.net/) - Internet Registry Sites
|
||||
* [DigitalPlat](https://domain.digitalplat.org/) / [GitHub](https://github.com/DigitalPlatDev/FreeDomain) or [GetFreeDomain](https://www.getfreedomain.name/) - Free Subdomains / Domains
|
||||
* [TheDev](https://thedev.id/) - Free Developer Subdomains
|
||||
* [is-a.dev](https://www.is-a.dev/) or [JS.ORG](https://js.org/) - Developer Homepages
|
||||
* [redirect.name](https://redirect.name/) - URL Forwarding
|
||||
* [Kener](https://kener.ing/) or [cstate](https://github.com/cstate/cstate) - Self-Hosted Status Pages
|
||||
* [WhoisRequest](https://whoisrequest.com/) or [Whois Lookup](https://whois.domaintools.com/) - Whois Search
|
||||
* [OONI](https://ooni.org/) - Check Site Location Availability
|
||||
* [Server Hunter](https://www.serverhunter.com/) or [ServerSearcher](https://www.serversearcher.com/) - Search / Compare Servers
|
||||
* [GetDeploying](https://getdeploying.com/) - Compare Cloud Providers
|
||||
* [srvrlss](https://srvrlss.io/) - Search / Compare Serverless Platforms
|
||||
* [Val Town](https://www.val.town/) - Serverless Scripting and Sharing
|
||||
* [GoodBadISPs](https://gitlab.torproject.org/legacy/trac/-/wikis/doc/GoodBadISPs) - Best ISPs for Tor Hosting
|
||||
* [Sandstorm](https://sandstorm.org/), [Cosmos](https://cosmos-cloud.io/) or [CloudRon](https://www.cloudron.io/) - Web App Hosts
|
||||
* [vichan](https://vichan.info) / [GitHub](https://github.com/vichan-devel/vichan) or [overscript](https://overscript.net/) - Imageboard Hosting
|
||||
* [ProBoards](https://www.proboards.com/) - Forum & Imageboard Hosting
|
||||
* [MyBB](https://www.mybb.com/), [FreeFlarum](https://freeflarum.com/) or [PHPBB](https://www.phpbb.com/) - Forum Hosting
|
||||
* [WikiDocs](https://www.wikidocs.app/) / [GitHub](https://github.com/Zavy86/WikiDocs), [Media Wiki](https://www.mediawiki.org/) / [GitHub](https://github.com/Wikia/mediawiki), [xWiki](https://www.xwiki.org/xwiki/bin/view/Main/), [DokuWiki](https://www.dokuwiki.org/dokuwiki) / [GitHub](https://github.com/dokuwiki/dokuwiki), [Archivy](https://github.com/archivy/archivy/), [Miraheze](https://miraheze.org/), [wikmd](https://linbreux.github.io/wikmd/) or [Fandom](https://www.fandom.com/) - Self-Hosted Wikipedia Alternatives
|
||||
* [HumHub](https://www.humhub.com), [HubZilla](https://hubzilla.org/page/info/discover) or [scuttlebutt](https://scuttlebutt.nz/) - Self-Hosted Social Network
|
||||
* [UNIT3D Community Edition](https://github.com/HDInnovations/UNIT3D-Community-Edition) - Private Tracker Hosting
|
||||
* [UNIT3D](https://github.com/HDInnovations/UNIT3D) - Private Tracker Hosting
|
||||
* [OpenPanel](https://openpanel.com/) / [GitHub](https://github.com/stefanpejcic/openpanel), [Sentora](https://sentora.org/) or [Moonlight](https://github.com/Moonlight-Panel/Moonlight) - Web Hosting Panels
|
||||
* [Uptime Kuma](https://github.com/louislam/uptime-kuma), [Checkmate](https://github.com/bluewave-labs/Checkmate), [UptimeRobot](https://uptimerobot.com/), [AreWeDown?](https://github.com/shukriadams/arewedown) or [StatPing](https://github.com/statping/statping) - Uptime Monitors
|
||||
* [Kener](https://kener.ing/) or [cstate](https://github.com/cstate/cstate) - Self-Hosted Status Pages
|
||||
* [redirect.name](https://redirect.name/) - URL Forwarding
|
||||
* [iana](https://www.iana.org/), [arin](https://www.arin.net/), [lacnic](https://www.lacnic.net/), [afrinic](https://www.afrinic.net/) or [apnic](https://www.apnic.net/) - Internet Registry Sites
|
||||
* [SubDomainizer](https://github.com/nsonaniya2010/SubDomainizer), [Google Console](https://search.google.com/search-console/), [MerkleMap](https://www.merklemap.com/) or [SD Finder](https://subdomainfinder.c99.nl/) - Find Hidden Subdomains
|
||||
* [AtSameIP](https://atsameip.com/) - Find Websites on the Same IP
|
||||
* [IPIP.NET](https://whois.ipip.net/) - Country / Region ASNs
|
||||
* [Check for Cloudflare](https://checkforcloudflare.selesti.com/) - Check Sites for Cloudflare
|
||||
* [Cloudflare Radar](https://radar.cloudflare.com/) - Cloudflare Insights
|
||||
* [CloudFlare DDNS Updater](https://github.com/K0p1-Git/cloudflare-ddns-updater/) - Cloudflare Dynamic DNS Auto-Update Script
|
||||
* [Meta Tag Gen](https://lewdev.github.io/apps/meta-tag-gen/), [OpenGraph](https://www.opengraph.xyz/) or [MetaTags](https://metatags.io/) - Meta Tag Generators
|
||||
|
||||
***
|
||||
|
||||
## ▷ Dynamic Page Hosting
|
||||
## ▷ Dynamic Page Hosting
|
||||
|
||||
* ⭐ **[netlify](https://www.netlify.com/)**
|
||||
* ⭐ **[vercel](https://vercel.com/)**
|
||||
|
|
@ -1133,17 +1116,16 @@
|
|||
* ⭐ **[GitHub Pages](https://docs.github.com/en/pages)** - Unlimited Storage / 100GB Bandwidth
|
||||
* ⭐ **[Firebase](https://firebase.google.com/products/hosting)** - 10GB Storage / 10GB Bandwidth
|
||||
* ⭐ **[Sourcehut Pages](https://srht.site/)** - 1GB Storage / Unlimited Bandwidth
|
||||
* ⭐ **[Neocities](https://neocities.org/)** - 1GB Storage / Unlimited Bandwidth / No Custom Domain
|
||||
* ⭐ **[Neocities](https://neocities.org/)** - 1GB Storage / No Custom Domain
|
||||
* ⭐ **[nekoweb](https://nekoweb.org/)** - 500MB Storage / Unlimited Bandwidth / [Bandwidth Note](https://files.catbox.moe/xf1shh.png)
|
||||
* [Web 1.0 Hosting](https://web1.0hosting.net/) - 100MB Storage / Unlimited Bandwidth
|
||||
* [Codeberg Pages](https://codeberg.page/) - 750MB Storage / Unspecified Bandwidth
|
||||
* [pages.gay](https://pages.gay/) - Unspecified Storage / Unlimited Bandwidth
|
||||
* [DropPages](https://droppages.com/) - 1GB Storage / 5GB Bandwidth
|
||||
* [DropPages](https://droppages.com/) - 1GB Storage / 5GB Bandwidth / No custom Domain
|
||||
* [W3Schools Spaces](https://www.w3schools.com/spaces/) - 100MB Storage (5MB A File) / 100MB Bandwidth / No Custom Domain
|
||||
* [BitBucket](https://support.atlassian.com/bitbucket-cloud/docs/publishing-a-website-on-bitbucket-cloud/) - 1GB Storage (Hard Limit 4GB) / Unlimited Bandwidth / No Custom Domain
|
||||
* [Kinsta](https://kinsta.com/static-site-hosting/) - 1GB Storage / 100GB Bandwidth / No Custom Domain
|
||||
* [Reocities](https://www.reocities.xyz/) - 1GB Storage / Unlimited Bandwidth / No Custom Domain
|
||||
* [yay.boo](https://yay.boo/) - 10MB Storage / Unlimited Bandwidth / No Custom Domain
|
||||
* [Staclo](https://staclo.host/) - 30MB Storage / 1GB Bandwidth / No Custom Domain
|
||||
|
||||
***
|
||||
|
|
@ -1165,6 +1147,8 @@
|
|||
* [spur.us](https://spur.us/) - Block VPNs / Proxies
|
||||
* [Greenbone](https://github.com/greenbone) - Vulnerability Management
|
||||
* [Evervault](https://evervault.com/) - Security / Compliance Infrastructure
|
||||
* [Observatory](https://developer.mozilla.org/en-US/observatory) - HTTP Header Security Test
|
||||
* [UUID Tools](https://www.uuidtools.com/) or [UUID Generator](https://toolkitvault.com/uuid-generator) - UUID Generators
|
||||
* [DarkVisitors](https://darkvisitors.com/) - Autonomous Chatbots / Data Scraper List
|
||||
* [Al-Khaser](https://github.com/ayoubfaouzi/al-khaser) - Anti-Malware Stress Test
|
||||
* [CVE Details](https://www.cvedetails.com/) - CVE Details
|
||||
|
|
@ -1179,7 +1163,7 @@
|
|||
* 🌐 **[Awesome GPT Agents](https://github.com/fr0gger/Awesome-GPT-Agents)** - Cybersecurity GPT Agent Index
|
||||
* [Advisory Database](https://github.com/github/advisory-database), [ThreatFox](https://threatfox.abuse.ch/), [Exploit DB](https://www.exploit-db.com/) or [Att&ck](https://attack.mitre.org/) - Cybersecurity Defense Databases
|
||||
* [Bazaar](https://bazaar.abuse.ch/), [MalShare](https://malshare.com/), [URLhaus](https://urlhaus.abuse.ch/), [PulseDive](https://pulsedive.com/) or [Malpedia](https://malpedia.caad.fkie.fraunhofer.de/) - Malware Search / Indexes
|
||||
* [ThreatMap](https://threatmap.checkpoint.com/) or [CyberMap](https://cybermap.kaspersky.com/) - Live Malware Distribution Maps
|
||||
* [ThreatMap](https://threatmap.checkpoint.com/), [Threat Radar](https://radar.offseq.com/) or [CyberMap](https://cybermap.kaspersky.com/) - Live Malware Distribution Maps
|
||||
* [Rawsec's CyberSecurity Inventory](https://inventory.raw.pm/) - Cybersecurity Resources
|
||||
* [CybersecResources](https://www.cybersources.site/) - Cybersecurity Resources / [GitHub](https://github.com/bst04/cybersources)
|
||||
* [Awesome List](https://github.com/0xor0ne/awesome-list) - Cybersecurity Resources
|
||||
|
|
@ -1212,7 +1196,7 @@
|
|||
* [DNS Propagation](https://dnspropagation.net/) - DNS Checker
|
||||
* [MXToolBox](https://mxtoolbox.com/) - MX Record Lookup Tool
|
||||
* [DNSDumpster](https://dnsdumpster.com/), [DNS Watch](https://dnswatch.info), [DNSHistory](https://dnshistory.org/) or [WhatsMyDNS](https://whatsmydns.net/) - DNS Lookup / Security
|
||||
* [Web Check](https://web-check.xyz/), [NSLookup](https://www.nslookup.io/) or [dog](https://github.com/ogham/dog) - DNS Information Tools
|
||||
* [Web Check](https://web-check.xyz/) / [GitHub](https://github.com/Lissy93/web-check), [NSLookup](https://www.nslookup.io/) or [dog](https://github.com/ogham/dog) - DNS Information Tools
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1226,7 +1210,7 @@
|
|||
* [IP Intelligence](https://getipintel.net/), [AbuseIPDB](https://www.abuseipdb.com/) or [Proxy Check](https://proxycheck.io/) - Proxy / VPN / Bad IP Detection
|
||||
* [Fail2Ban](https://github.com/fail2ban/fail2ban) - Protect Servers from Brute Force Attacks
|
||||
* [Tempesta FW](https://tempesta-tech.com/) - DDoS / Web Attack Protection
|
||||
* [IPv6 Leak Test](https://ip6.nl/), [IPv6 Test](https://ipv6-test.com/) or [Test-IPv6](https://test-ipv6.com/) - IPv6 Test
|
||||
* [IPv6 Leak Test](https://ip6.nl/) or [Test-IPv6](https://test-ipv6.com/) - IPv6 Test
|
||||
* [How To Turn off IPv6](https://www.itechguides.com/disable-ipv6-windows-10/) - Prevent IPv6 Leaks
|
||||
|
||||
***
|
||||
|
|
@ -1252,12 +1236,12 @@
|
|||
|
||||
* 🌐 **[Reverse Engineering Resources](https://github.com/wtsxDev/reverse-engineering)** or [ReversingBits](https://mohitmishra786.github.io/reversingBits/) / [GitHub](https://github.com/mohitmishra786/reversingBits) - Reverse Engineering Resources
|
||||
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
|
||||
* ⭐ **[GHIDRA](https://ghidra-sre.org/)** - Reverse Engineering
|
||||
* ⭐ **[GHIDRA](https://github.com/NationalSecurityAgency/ghidra)** - Reverse Engineering Framework
|
||||
* ⭐ **[x64dbg](https://x64dbg.com/)** - Debugger for Reverse Engineering
|
||||
* [LemmeDebug](https://greasyfork.org/en/scripts/537775) - Disable Anti-Devtools for Reverse Engineering / Debugging
|
||||
* [Radare](https://www.radare.org/n/) - Free Reversing Toolkit / [Discord](https://discord.gg/YBey7CR9jf) / [GitHub](https://github.com/radareorg/radare2)
|
||||
* [Rizin](https://rizin.re/) or [Cutter](https://cutter.re/) - Reverse Engineering Framework
|
||||
* [Frida](https://frida.re/) - Reverse Engineering
|
||||
* [Frida](https://frida.re/) - Dynamic Instrumentation Toolkit / [GitHub](https://github.com/frida/frida)
|
||||
* [Flare VM](https://github.com/mandiant/flare-vm) - Reverse Engineering Environment Setup Script
|
||||
* [ROP Emporium](https://ropemporium.com/) - Learn Return-Oriented Programming
|
||||
* [APK Editor Studio](https://qwertycube.com/apk-editor-studio/) / [GitHub](https://github.com/kefir500/apk-editor-studio) or [APKTool](https://apktool.org/) / [GitHub](https://github.com/iBotPeaches/Apktool) - APK Reverse Engeineering
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
* 🌐 **[r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner)
|
||||
* ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines
|
||||
* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - File Sharing App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd)
|
||||
* ⭐ **[Nicotine+](https://nicotine-plus.org/)** or [Soulseek](https://slsknet.org/) - File Sharing App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl)
|
||||
* [eMule Plus](https://www.emule-project.com/) - File Sharing App
|
||||
* [mega.archive (Discord)](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive
|
||||
* [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search
|
||||
|
|
@ -42,9 +42,9 @@
|
|||
* [AditHD](https://www.adit-hd.com/) - Video / Audio / Books
|
||||
* [wJungle](https://wjungle.net/) - Audio / Books / NSFW / Sign-Up Required
|
||||
* [Novanon](https://novanon.net/) - Audio / Magazines / Comics / Books / Courses
|
||||
* [ReleaseBB](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://rlsbb.cc/), [4](http://rlsbb.in/) - Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker) / [PreDB](https://log.rlsbb.ru/)
|
||||
* [ReleaseBB](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://rlsbb.cc/), [4](https://rlsbb.in/) - Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker) / [PreDB](https://log.rlsbb.ru/)
|
||||
* [Psycho downloads](https://psychodownloads.com/) - Audio / Books / Magazines
|
||||
* [Merlin Warez](https://merlinwz.com/) - Audio / Books / Audiobooks / Comics / Magazines
|
||||
* [Merlin Warez](https://merlinwz.com/) - Audio / Books / Audiobooks / Comics / Magazines
|
||||
* [1DDL](https://1ddl.org/) - Audio / Books / Comics / Magazines
|
||||
* [WarezLoad](https://warezload.net/index.php) - Audio / Books
|
||||
* [Katz DDL](https://katzddl.net/) - Audio / Books / NSFW
|
||||
|
|
@ -61,9 +61,7 @@
|
|||
***
|
||||
|
||||
* ⭐ **[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h) - Multi-Site Search
|
||||
* ⭐ **[FilePursuit](https://filepursuit.com)** / [Discord](https://discord.gg/xRfFd8h)
|
||||
* ⭐ **[4Shared](https://www.4shared.com/)**
|
||||
* [Meawfy](https://meawfy.com/) - Mega, GoFile and MediaFire Search
|
||||
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1)
|
||||
* [Linktury](https://www.ddlspot.com/)
|
||||
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
|
||||
|
|
@ -94,13 +92,13 @@
|
|||
|
||||
# ► Software Sites
|
||||
|
||||
* **Note** - Always scan downloaded software with **[VirusTotal](https://www.virustotal.com/gui/)** before installation or run it in a sandboxed environment like **[Sandboxie](https://rentry.co/sandboxie-guide)** to prevent system compromise.
|
||||
* **Note** - Always scan downloaded software with **[VirusTotal](https://www.virustotal.com/gui/)** before installation or run it in a sandboxed environment like **[Sandboxie](https://claraiscute.neocities.org/Guides/sandboxie-guide/)** to prevent system compromise.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives)**, [2](https://rentry.org/adobealt) - Adobe Software Alternative Index
|
||||
* ↪️ **[Adobe Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
||||
* ⭐ **[Virgil Software Search](https://virgil.samidy.com/software-search/)** / [GitHub](https://github.com/SamidyFR/Virgil) or [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) - Multi-Site Software Search
|
||||
* ⭐ **[Virgil Software Search](https://virgil.samidy.com/Software/)**, [2](https://virgil-search.pages.dev/Software/) / [GitHub](https://github.com/SamidyFR/Virgil) or [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) - Multi-Site Software Search
|
||||
* ⭐ **[CracksURL](https://cracksurl.com/)** / [Telegram](https://t.me/cracksurldotcom)
|
||||
* ⭐ **[LRepacks](https://lrepacks.net/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - Sign-Up Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
|
|
@ -109,6 +107,7 @@
|
|||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
|
||||
* [AIOWares](https://www.aiowares.com/) - Software Forum
|
||||
* [DownloadHa](https://www.downloadha.com/) - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Softsaz](https://softsaz.ir/category/software/) - Design Software / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Team V.R releases](https://rentry.co/FMHYB64#team-vr) - Adobe Plugins
|
||||
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/) - Oldschool Software
|
||||
* [Libreware](https://t.me/Libreware) - Telegram Channels
|
||||
|
|
@ -120,7 +119,7 @@
|
|||
|
||||
## ▷ FOSS Sites
|
||||
|
||||
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [Awesome Useful Projects](https://github.com/Furthir/awesome-useful-projects) or [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives) - FOSS Indexes
|
||||
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [definitive-opensource](https://github.com/mustbeperfect/definitive-opensource), [Awesome Useful Projects](https://github.com/Furthir/awesome-useful-projects) or [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives) - FOSS Indexes
|
||||
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
||||
* [SourceForge](https://sourceforge.net/) - FOSS Repositories
|
||||
* [OSSSoftware](https://osssoftware.org/) - FOSS Directory
|
||||
|
|
@ -153,7 +152,7 @@
|
|||
* [FilePuma](https://www.filepuma.com/) - Freeware Directory
|
||||
* [FileEagle](https://www.fileeagle.com/) - Freeware Directory
|
||||
* [LO4D](https://www.lo4d.com/) - Freeware Directory
|
||||
* [SoftwareOK](http://www.softwareok.com/) - Freeware Directory
|
||||
* [SoftwareOK](https://www.softwareok.com/) - Freeware Directory
|
||||
* [GRC](https://www.grc.com/freepopular.htm) - Freeware Directory
|
||||
* [Uwe Sieber](https://www.uwe-sieber.de/english.html) - Freeware Directory
|
||||
* [Software Informer](https://software.informer.com/) - Freeware Directory
|
||||
|
|
@ -187,10 +186,9 @@
|
|||
|
||||
# ► Usenet
|
||||
|
||||
* 🌐 **[UsenetTools](http://www.usenettools.net/)**
|
||||
* 🌐 **[Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders)**
|
||||
* ⭐ **[Usenet Guide / Automation Setup](https://docs.google.com/document/d/1TwUrRj982WlWUhrxvMadq6gdH0mPW0CGtHsTOFWprCo/mobilebasic)** / [2](https://redd.it/4x2mc9) / [3](https://www.iitk.ac.in/LDP/HOWTO/Usenet-News-HOWTO/x27.html) / [4](https://graph.org/EVERYTHING-YOU-NEED-TO-KNOW-ABOUT-USENET-09-04) / [5](https://www.reddit.com/r/usenet/wiki/index/) / [6](https://blog.decryption.net.au/t/a-fully-automated-usenet-piracy-machine-with-plex-sabnzbd-and-sonarr/130)
|
||||
* [r/usenet](https://reddit.com/r/usenet)
|
||||
* [ngPost](https://github.com/mbruel/ngPost) or [Nyuu](https://github.com/animetosho/Nyuu) / [Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders) - Usenet Uploaders
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -204,7 +202,6 @@
|
|||
* [Orion](https://orionoid.com/)
|
||||
* [binsearch](https://binsearch.info/)
|
||||
* [NZB King](https://nzbking.com/)
|
||||
* [abNZB](https://www.abnzb.com/)
|
||||
* [NZB Index](https://www.nzbindex.com/), [2](https://www.nzbindex.nl/)
|
||||
* [Newznab](https://www.newznab.com/)
|
||||
* [NZBStars](https://nzbstars.com/)
|
||||
|
|
@ -222,10 +219,8 @@
|
|||
|
||||
* 🌐 **[r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists
|
||||
* 🌐 **[r/usenet Deals](https://www.reddit.com/r/usenet/wiki/providerdeals)** - Provider Deals
|
||||
* 🌐 **[Usenet Provider Deals](https://rexum.space/p/usenet-provider-deals/)**
|
||||
* 🌐 **[Usenet Provider Deals](https://usenet.rexum.space/deals)**
|
||||
* [Usenet Providers Map](https://usenet.rexum.space/tree)
|
||||
* [usenetmax](https://www.usenetmax.com/)
|
||||
* [usenet.farm](https://usenet.farm/#trial)
|
||||
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php)
|
||||
|
||||
***
|
||||
|
|
@ -236,16 +231,14 @@
|
|||
* ⭐ **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send NZBs to Client
|
||||
* [NZBGet](https://nzbget.com/) / [GitHub](https://github.com/nzbgetcom/nzbget)
|
||||
* [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes
|
||||
* [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot
|
||||
|
||||
***
|
||||
|
||||
# ► Debrid
|
||||
# ► Debrid / Leeches
|
||||
|
||||
* 🌐 **[Debrid Services Comparison](https://debridcompare.pages.dev/)** / [GitHub](https://github.com/fynks/debrid-services-comparison)
|
||||
* ⭐ **[TorBox](https://torbox.app/)** - Freemium / 10GB / 10 Monthly Downloads / Sign-Up Required / [Unofficial Mobile Client](https://github.com/93Pd9s8Jt/atba) / [Subreddit](https://www.reddit.com/r/TorBoxApp/) / [Discord](https://discord.com/invite/wamy) / [GitHub](https://github.com/TorBox-App)
|
||||
* ⭐ **[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/), [RapidMoviez](https://rmz.cr/) / [Mirrors](https://rmzmirrors.com/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid
|
||||
* 🌐 **[Debrid Services Comparison](https://debridcompare.xyz)** / [GitHub](https://github.com/fynks/debrid-services-comparison)
|
||||
* ⭐ **[TorBox](https://torbox.app/)** - Paid / Sign-Up Required / [Unofficial Mobile Client](https://github.com/93Pd9s8Jt/atba) / [Subreddit](https://www.reddit.com/r/TorBoxApp/) / [Discord](https://discord.com/invite/wamy) / [GitHub](https://github.com/TorBox-App)
|
||||
* ⭐ **[Real-Debrid](https://real-debrid.com/)** - Paid / [Android Client](https://github.com/LivingWithHippos/unchained-android) / [Torrent Client](https://github.com/rogerfar/rdt-client) / [DDL Client](https://github.com/ItsYeBoi20/TorrentDownloaderRD)
|
||||
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Quickly Send DDL Links to Premiumize & NoPremium
|
||||
* [Debrid Media Manager](https://debridmediamanager.com/) - Manage / Stream / Download Debrid Files
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
* ⭐ **[IHaveNoTV](https://ihavenotv.com)**
|
||||
* ⭐ **[DocumentaryArea](https://www.documentaryarea.com/)** / [Remove Watermark](https://github.com/acridsoul/Clear-Mark) (or use PIP)
|
||||
* ⭐ **[Documentary+](https://www.docplus.com/)**
|
||||
* ⭐ **[1337x Documentaries](https://1337x.to/top-100-documentaries)** / Torrent
|
||||
* ⭐ **[1337x Documentaries](https://1337x.to/top-100-documentaries)**, [2](https://1337x.to/top-100-documentaries) / Torrent
|
||||
* [LearnOutLoud](https://www.learnoutloud.com/)
|
||||
* [Top Documentary Films](https://topdocumentaryfilms.com/)
|
||||
* [Thought Maybe](https://thoughtmaybe.com/)
|
||||
|
|
@ -43,7 +43,8 @@
|
|||
* ⭐ **[MitOpenCourseWare](https://ocw.mit.edu/)** - Courses
|
||||
* ⭐ **[Khan Academy](https://www.khanacademy.org/)** - Courses / [Downloader](https://github.com/rand-net/khan-dl) / [Solver](https://greasyfork.org/en/scripts/427964)
|
||||
* ⭐ **[Class Central](https://www.classcentral.com/)** - Search for Courses
|
||||
* [CourseBuffet](https://www.coursebuffet.com/) or [Course CSE](https://cse.google.com/cse?cx=67ed14bf7b99643e3) - Multi-Site Course Search
|
||||
* [Course CSE](https://cse.google.com/cse?cx=67ed14bf7b99643e3) - Multi-Site Course Search
|
||||
* [Educational Hub](https://educationalhub.in/) - Courses
|
||||
* [Git.ir](https://en.git.ir/) - Courses
|
||||
* [OpenLearn](https://www.open.edu/openlearn/) - Courses
|
||||
* [Alison](https://alison.com/) - Courses
|
||||
|
|
@ -69,19 +70,16 @@
|
|||
* 🌐 **[Free-Courses-For-Everyone](https://github.com/MasterBrian99/Free-Courses-For-Everyone)** - Course Site Index
|
||||
* ⭐ **[TutFlix](https://tutflix.org/)** - Courses / Drives / Sign-Up Opens Fridays
|
||||
* ⭐ **[HackNation](https://hacksnation.com/)** - Courses
|
||||
* ⭐ **[tut4dl](https://tut4it.com/)** - Courses
|
||||
* ⭐ **[Course Busters](https://t.me/coursebusters)** - Course Busters Access
|
||||
* [FreeCourseSite](https://freecoursesite.com/) or [Docspedia](https://docspedia.world/) - Torrenting Sites / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)
|
||||
* [Revival](https://rentry.co/FMHYB64#revival) - Courses
|
||||
* [FreeEducationWeb](https://freeeducationweb.com/) - Courses
|
||||
* ⭐ **[tut4dl](https://tut4it.com/)** - Courses / [Request Guide](https://t.me/c/1603660516/91)
|
||||
* ⭐ **[Course Busters](https://www.cbusters.com/home)** - Course Busters Access
|
||||
* [FreeCourseSite](https://freecoursesite.com/), [2](https://freecoursesites.com/) or [Docspedia](https://docspedia.world/) - Torrenting Sites / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)
|
||||
* [FreeEducationWeb](https://freeeducationweb.com/latest-posts/) - Courses
|
||||
* [OneHack](https://onehack.us/) - Courses / [Telegram](https://t.me/Official_OneHack)
|
||||
* [FreeCourseSite](https://freecoursesite.com/), [2](https://freecoursesites.com/) - Courses
|
||||
* [technet24](https://technet24.ir/category/videos) - Courses
|
||||
* [AfraTafreeh](https://afratafreeh.com/) - Courses
|
||||
* [learningDL](https://learningdl.net/) - Courses / Leech Required
|
||||
* [LinkedIn_Learning](https://t.me/linkedin_learning) - LinkedIn Courses
|
||||
* [CertCommunity](https://www.certcommunity.org/forum/) - IT Cert Courses
|
||||
* [firerip](https://rentry.co/FMHYB64#firerip) - Fireship.io Course Downloader
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -128,12 +126,11 @@
|
|||
|
||||
## ▷ Skills / Hobbies
|
||||
|
||||
* ↪️ **[Photography / Cameras](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_photography_.2F_cameras)**
|
||||
* ↪️ **[Typing Tests / Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_typing_lessons)**
|
||||
* [Rookie Road](https://www.rookieroad.com/) - Sport Guides
|
||||
* [Make it Yourself](https://makeityourself.org/) - 1000 DIY Projects / [Video](https://youtu.be/TSFJ2OH1PQA)
|
||||
* [Animated Knots](https://www.animatedknots.com/) or [NetKnots](https://www.netknots.com/) - Learn to Tie Knots
|
||||
* [Ian's Shoelace Site](https://www.fieggen.com/shoelace/) - Learn to Tie Shoelaces
|
||||
* [Polymaker](https://wiki.polymaker.com/) - 3D Printing Guide / Community / [Discord](https://discord.com/invite/polymaker)
|
||||
* [Perry Morse](https://www.perry.qa/morse), [Morse Typing Trainer](https://morse.withgoogle.com/learn/) or [ICWO](https://lcwo.net/) - Learn / Practice Morse Code
|
||||
* [Lock Picking 101](https://www.lockpicking101.com/) - Lock Picking Forum
|
||||
* [LibraryOfJuggling](https://libraryofjuggling.com/) - Juggling Technique Database
|
||||
|
|
@ -162,6 +159,7 @@
|
|||
|
||||
* ↪️ **[History Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_history_books)**
|
||||
* ↪️ **[Historical Maps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_historic_maps)** - Map Resources
|
||||
* ↪️ **[WW2 Links](https://ww2links.ca/)** - Educational WW2 Resources
|
||||
* ⭐ **[Historic Films](https://www.historicfilms.com/)** or [National Film Preservation Foundation](https://www.filmpreservation.org/) - Historic Footage / Films
|
||||
* ⭐ **[Histography](https://histography.io/)** or [Oldest](https://www.oldest.org/) - History Timelines
|
||||
* ⭐ **[MorbidKuriosity](https://morbidkuriosity.com/)** - Dark History, Conspiracies, Crime, Myths, etc.
|
||||
|
|
@ -174,6 +172,9 @@
|
|||
* [ManuscriptMiniatures](https://manuscriptminiatures.com/) - Medieval Manuscript Images
|
||||
* [BlackPast](https://www.blackpast.org/) - African History Encyclopedia
|
||||
* [Athena](https://athena.unige.ch/athena/) - Greek History Encyclopedia
|
||||
* [Theoi](https://www.theoi.com/) - Greek Mythology
|
||||
* [Germanic Mythology](https://www.germanicmythology.com/index.html) - Germanic Mythology
|
||||
* [Inuit Myths](https://www.inuitmyths.com/index.htm) - Inuit Mythology
|
||||
* [Mission US](https://www.mission-us.org/) - American History Learning Games
|
||||
* [OnThisDay](https://www.onthisday.com/) or [Curiosity Of The Day](https://www.curiosityoftheday.com/) - What Happened on Specific Days
|
||||
* [Royal Constellations](https://royalconstellations.visualcinnamon.com/) - Royal Family Ancestral Visualization
|
||||
|
|
@ -186,6 +187,7 @@
|
|||
* [Historical Recipes](https://l-lists.com/en/lists/55cbww.html) - Historical Recipes Site Index
|
||||
* [Arachne](https://arachne.dainst.org/) - Ancient Sculpture Image Archive
|
||||
* [SmartHistory](https://smarthistory.org/) - Art / Cultural Object History
|
||||
* [gwulo](https://gwulo.com/) - Historical Hong Kong Photo Archive
|
||||
* [CARI](https://cari.institute/) - Design Aesthetics History
|
||||
* [ChinesePosters](https://chineseposters.net/) - Chinese Propaganda Poster History
|
||||
* [Historical Fashion](https://docs.google.com/document/d/1R8eulTsb9Zlc7h2H917dNJZS9s0rIq9OAu7LpSS9F2k/) - Historical Fashion Resources / History
|
||||
|
|
@ -210,6 +212,7 @@
|
|||
* ⭐ **[Stanford Encyclopedia of Philosophy](https://plato.stanford.edu/index.html)**, [IEP](https://iep.utm.edu/) or [nLab Philosophy](https://ncatlab.org/nlab/show/philosophy) - Philosophy Encyclopedias / [Search](https://www.visualizingsep.com/)
|
||||
* [Philosophy Bro](https://www.philosophybro.com/), [Reasoned](https://www.reasoned.org/dir/), [TheDailyIdea](https://thedailyidea.org/) or [PhilosophyBasics](https://www.philosophybasics.com/) - Philosophy Resources / Learning
|
||||
* [Wireless Philosophy](https://www.wi-phi.com/) - Philosophy Videos
|
||||
* [1000-Word Philosophy](https://1000wordphilosophy.com/) - 1000-Word Essays on Philosophical Topics
|
||||
* [Untools](https://untools.co/) - Better Thinking Tools
|
||||
* [Brainkit](https://www.braink.it/) - Learn Helpful Principles
|
||||
* [Art of Manliness](https://www.artofmanliness.com/) - Develop Life Skills
|
||||
|
|
@ -243,7 +246,7 @@
|
|||
* [Learning Music](https://learningmusic.ableton.com/) or [Musica](https://www.musicca.com/) - Music-Making Lessons
|
||||
* [Midiano](https://midiano.com/) / [Discord](https://discord.com/invite/SfFdbunEm2), [Piano Trainer](https://zaneh.itch.io/piano-trainer) / [GitHub](https://github.com/ZaneH/piano-trainer), [Chord Nebula](https://chords.yottanami.com/), [sightread](https://sightread.dev/) or [PianoCheetah](https://pianocheetah.app) - Piano Practice / Learning
|
||||
* [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/FMHYB64#songsterr), [FAChords](https://www.fachords.com/) or [ChordBook](https://chordbook.com/) - Guitar Tools
|
||||
* [TrueToneGuitar](https://www.truetoneguitar.co.uk/tools/guitar-practice-routine-generator), [Songsterr](https://www.songsterr.com/), [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
|
||||
* [JamStart](https://jamstart.app/) - Spotify Chord Charts
|
||||
* [#fretflip](https://fretflip.com/) - Create / Print Guitar Scales & Chord Charts
|
||||
|
|
@ -259,7 +262,7 @@
|
|||
* [A-Complete-UTAU-Tutorial-For-Beginners](https://www.quotev.com/story/9299060/A-Complete-UTAU-Tutorial-For-Beginners) - UTAU Tutorial
|
||||
* [PerfectPitch](https://artistaiden.com/perfectpitch) - Pitch Recognition Practice
|
||||
* [MusicStaff](https://musicstaff.com/) - Music Teacher Search
|
||||
* [ChiffAndFipple](https://forums.chiffandfipple.com/index.php) - Irish Traditional Music Forum
|
||||
* [ChiffAndFipple](https://www.chiffandfipple.com/) - Irish Traditional Music Forum
|
||||
* [MIMO](https://mimo-international.com/MIMO/) - Musical Instrument Database
|
||||
* [VGM Sound Sources](https://docs.google.com/spreadsheets/d/1JJBlHHDc65fhZmKUGLrDTLCm6rfUU83-kbuD8Y0zU0o/) - VGM Sound Sources / [Discord](https://discord.gg/m4qzYNGHuS)
|
||||
|
||||
|
|
@ -283,7 +286,7 @@
|
|||
* [FloobyNooby](http://www.floobynooby.com/comp1.html), [JMMStoryboardTips](https://jimmortensen.gumroad.com/l/JMMStoryboardTips) or [A Guide to Storyboards](https://magicbunnyart.gumroad.com/l/fjvKA) - Storyboard Guides
|
||||
* [Settei Dreams](https://setteidreams.net/) - Anime Production Materials
|
||||
* [Anime Study General](https://discord.gg/3bwdfRk) - Anime Production Community
|
||||
* [McLelun](http://www.mclelun.com/p/tutorial.html) - Anime Style Background Tutorial
|
||||
* [McLelun](https://www.mclelun.com/p/tutorial.html) - Anime Style Background Tutorial
|
||||
* [AnimeOutline](https://www.animeoutline.com/) - Anime / Manga Drawing Tutorials
|
||||
* [Design Tuts](https://t.me/designfreetuts) - Design Tutorials
|
||||
* [PhotoshopTutorials.ws](https://www.photoshoptutorials.ws/) - Photoshop Tutorials
|
||||
|
|
@ -319,10 +322,10 @@
|
|||
* ↪️ **[Historical / Modern Maps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_maps)** - Map Resources
|
||||
* ⭐ **[Worldometer](https://www.worldometers.info/)**, [TheScaleOfLife](https://www.thescaleoflife.com/), [WorldBank](https://databank.worldbank.org/), [US Census](https://data.census.gov/), [DataUSA](https://datausa.io/), [Data.gov](https://data.gov/) or [UN Data](https://data.un.org/) - World Data & Statistics
|
||||
* ⭐ **[Our World in Data](https://ourworldindata.org/)** - World Problem Database
|
||||
* ⭐ **[The Atlas of Economic Complexity](https://atlas.cid.harvard.edu/)** - Global Economic Growth Data
|
||||
* ⭐ **[The Atlas of Economic Complexity](https://atlas.hks.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/), [Worldle](https://worldle.teuteuf.fr/), [Learn World Map](https://map.koljapluemer.com/), [Seterra](https://www.seterra.com/#quizzes) or [Teuteuf](https://teuteuf.fr/) - Geography Guessing / Quizzes
|
||||
* [LizardPoint](https://lizardpoint.com/), [Ekvis](https://ekvis.com/), [Worldle](https://worldle.teuteuf.fr/), [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
|
||||
|
|
@ -422,7 +425,7 @@
|
|||
* ⭐ **[AoPS Alcumus](https://artofproblemsolving.com/alcumus)** or [MathDash](https://mathdash.com/) - Adaptive Problem Solving
|
||||
* ⭐ **[BetterExplained](https://betterexplained.com/)** - Math Guides / Courses
|
||||
* ⭐ **[Manim](https://www.manim.community/)**, [2](https://github.com/3b1b/manim) - Generate Explanatory Math Videos / [Videos](https://github.com/3b1b/videos) / [Difference Between Versions](https://docs.manim.community/en/stable/faq/installation.html#different-versions)
|
||||
* ⭐ **[WolframAlpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / [Mobile](https://rentry.co/FMHYB64#wolfram-mobile)
|
||||
* ⭐ **[WolframAlpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / [Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search)
|
||||
* [Wolfram MathWorld](https://mathworld.wolfram.com/), [Encyclopedia Of Math](https://encyclopediaofmath.org/) or [nLab Math](https://ncatlab.org/nlab/show/mathematics) - Mathematics Encyclopedias
|
||||
* [Red Blob Games](https://www.redblobgames.com/) or [Mathspad](https://www.mathspad.co.uk/resources.php?interactives=1) - Interactive Math Sites
|
||||
* [Mathcha](https://www.mathcha.io/), [Corca](https://corca.app/) or [Math Editor](https://math-editor.online/) - Online Math Editors
|
||||
|
|
@ -480,10 +483,12 @@
|
|||
* [Wokwi](https://wokwi.com/) - Arduino / ESP32 Board Simulators
|
||||
* [HDLBits](https://hdlbits.01xz.net/) - Learn Circuit Design
|
||||
* [Fritzing](https://gist.github.com/RyanLua/fc2457d87641bb39754278b01a647526), [SKiDL](https://devbisme.github.io/skidl/) / [GitHub](https://github.com/devbisme/skidl), [atopile](https://docs.atopile.io/atopile/quickstart), [EasyEDA](https://easyeda.com/editor) or [LibrePCB](https://librepcb.org/) - Electronic Circuit Design Tools
|
||||
* [The Pinouts Book](https://pinouts.org/) - Pinout Function Reference Guide
|
||||
* [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
|
||||
* [/m/engineering](https://www.reddit.com/user/nbatman/m/engineering/) - Engineering Multireddit
|
||||
* [Build List](https://buildlist.org/) - On-Demand Online Manufacturers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -496,12 +501,13 @@
|
|||
* ⭐ **[LibreTexts Chemistry](https://chem.libretexts.org)** - Chemistry Texts
|
||||
* ⭐ **[Internet Chemistry](https://www.internetchemistry.com/search.php)** - Chemistry Search Index
|
||||
* [Chemistry Basics](https://saylordotorg.github.io/text_the-basics-of-general-organic-and-biological-chemistry/index.html) - Basics of General, Organic, and Biological Chemistry
|
||||
* [ChemicalAid](https://www.chemicalaid.com/) or [Chemequations](https://chemequations.com/en/) - Chemistry Calculators / Element Tables
|
||||
* [ChemicalAid](https://www.chemicalaid.com/), [WebQC](https://www.webqc.org/) or [Chemequations](https://chemequations.com/en/) - Chemistry Calculators / Element Tables
|
||||
* [QuickChem](https://play.google.com/store/apps/details?id=com.map.michael.chemistry) - Chemistry Calculator
|
||||
* [PubChem](https://pubchem.ncbi.nlm.nih.gov/), [MOTM](https://www.chm.bris.ac.uk/motm/motm.htm), [NIST](https://webbook.nist.gov/chemistry/) or [EssentialChemicalIndustry](https://www.essentialchemicalindustry.org/) - Chemistry Wikis
|
||||
* [ChemistrySteps](https://www.chemistrysteps.com/), [Science Geek](https://www.sciencegeek.net/) or [DocBrown](https://docbrown.info/) - Chemistry Practice / Guides
|
||||
* [Cliffnotes Chemistry](https://www.cliffsnotes.com/study-guides/chemistry/chemistry/elements/discovery-and-similarity) / [Organic Chemistry I](https://www.cliffsnotes.com/study-guides/chemistry/organic-chemistry-i) / [Organic Chemistry II](https://www.cliffsnotes.com/study-guides/chemistry/organic-chemistry-ii), [Chem Wiki](https://wiki.ch.ic.ac.uk/wiki/) or [chemguide](https://www.chemguide.co.uk) - Study Guides
|
||||
* [ReactionFlash](https://play.google.com/store/apps/details?id=ch.reaxys.reactionflash&hl=en-US) / [iOS](https://apps.apple.com/us/app/reactionflash/id432080813) - Chemical Reaction Flashcards
|
||||
* [Compound Interest](https://www.compoundchem.com/infographics/) - Chemistry Infographics
|
||||
* [ChemistryTalk](https://chemistrytalk.org/) - Tutorials / Experiments / Elements / Reference Articles
|
||||
* [Sciencenotes](https://sciencenotes.org) - Periodic Tables / Chemistry Projects and Questions
|
||||
* [Organic Chemistry](https://www.organic-chemistry.org) or [Synarchive](https://synarchive.com/) - Organic Reactions
|
||||
|
|
@ -589,7 +595,7 @@
|
|||
* [Inner Body](https://www.innerbody.com/htm/body.html) - Anatomy Atlas (2D&3D)
|
||||
* [NIH Print](https://3d.nih.gov/) - Biomedical Science 3D Models
|
||||
* [Sectional Anatomy](https://www.sectional-anatomy.org/) - Cross Sectional Educational MRI / CT Scans
|
||||
* [University of Minnesota Histology](https://www.histologyguide.org/index.html) or [University of Leeds Histology](http://histology.leeds.ac.uk/) - Histology Guides
|
||||
* [University of Minnesota Histology](https://www.histologyguide.org/index.html) or [University of Leeds Histology](https://histology.leeds.ac.uk/) - Histology Guides
|
||||
* [Tulane University Pharmacology](https://tmedweb.tulane.edu/pharmwiki/doku.php/start) - Pharmacology Info & Quizzes
|
||||
* [Antibiotics Summary](https://imgur.com/rADmmfy) - Antibiotics Summary Image
|
||||
* [Healio ECG Review](https://www.healio.com/cardiology/learn-the-heart/ecg-review), [ECG Library](https://www.ecglibrary.com/) or [Litfl](https://litfl.com/ecg-library/) - ECG Information
|
||||
|
|
@ -607,6 +613,8 @@
|
|||
* [University of Utah Pathology](https://webpath.med.utah.edu/webpath.html) - Pathology Guide
|
||||
* [The Iowa Virtual Slidebox](https://www.mbfbioscience.com/iowavirtualslidebox) - Pathology Atlas Software
|
||||
* [Nextstrain](https://nextstrain.org/) - Pathogen Evolution Tracking
|
||||
* [HemOnc](https://hemonc.org/) - Hematology / Oncology Reference Site
|
||||
* [DermNet](https://dermnetnz.org/) - Dermatology Reference Site
|
||||
* [EyeWiki](https://eyewiki.org/) - Eye Encyclopedia
|
||||
* [Passmedicine](https://www.passmedicine.com/ucat/) - UCAT Practice Questions
|
||||
* [UCAT Score](https://codepen.io/souramoo/full/OJMQzVm) - UCAT Score Converter
|
||||
|
|
@ -619,11 +627,14 @@
|
|||
|
||||
* ⭐ **[r/Space](https://reddit.com/r/Space)** - Space Subreddit
|
||||
* ⭐ **[Space Dashboard](https://spacedashboard.com/)** - Space Live Stream Dashboard
|
||||
* ⭐ **[NASA](https://www.nasa.gov/)** - National Aeronautics and Space Administration Website / [Images](https://images.nasa.gov/) / [Audio](https://www.nasa.gov/audio-and-ringtones/) / [Documents](https://ntrs.nasa.gov/search) / [APIs](http://api.nasa.gov/) / [History](https://www.nasa.gov/history/)
|
||||
* ⭐ **[NASA](https://www.nasa.gov/)** - National Aeronautics and Space Administration Website / [Images](https://images.nasa.gov/) / [Audio](https://www.nasa.gov/audio-and-ringtones/) / [Documents](https://ntrs.nasa.gov/search) / [APIs](https://api.nasa.gov/) / [History](https://www.nasa.gov/history/)
|
||||
* ⭐ **[March to the Moon](https://tothemoon.ser.asu.edu/)**, [Apollo Image Atlas](https://www.lpi.usra.edu/resources/apollo/) or [ApolloArchive](https://apolloarchive.com/) / [Flickr](https://www.flickr.com/photos/projectapolloarchive/albums/) - Moon Landing Images
|
||||
* [Interactive Apollo Missions](https://apolloinrealtime.org/) or [FirstMenOnTheMoon](https://www.firstmenonthemoon.com/) - Apollo in Realtime
|
||||
* [Marspedia](https://marspedia.org/) - Mars Wiki
|
||||
* [ESA](https://www.esa.int/) - European Space Agency Website
|
||||
* [JAXA](https://global.jaxa.jp/) - Japanese Space Agency Website / [Images / Videos](https://jda.jaxa.jp/?lang=e)
|
||||
* [CSA](https://www.asc-csa.gc.ca/eng/) - Canadian Space Agency Website
|
||||
* [ISRO](https://www.isro.gov.in/) - Indian Space Research Organization
|
||||
* [Space.com](https://www.space.com/) - Space News
|
||||
* [Encyclopedia Astronautica](http://www.astronautix.com/) - Space Encyclopedia
|
||||
* [NASA History](https://www.nasa.gov/history/history-publications-and-resources/) or [NASA Ebooks](https://www.nasa.gov/ebooks/) - NASA Books
|
||||
|
|
@ -631,7 +642,7 @@
|
|||
* [NASA's Eyes](https://science.nasa.gov/eyes/) or [Celestia](https://celestiaproject.space/) - 3D Space Visualizations / [Solar System](https://eyes.nasa.gov/apps/solar-system/#/home)
|
||||
* [ExoplanetExplore](https://exoplanetexplore.vercel.app) - Interactive Exoplanet Visualization
|
||||
* [ExoplanetArchive](https://exoplanetarchive.ipac.caltech.edu/) - Exoplanet Database
|
||||
* [RGV Aerial Photography](https://discord.gg/wsFxEw9g4X) - Aerial Photography Community / News
|
||||
* [RGV Aerial Photography](https://discord.gg/wsFxEw9g4X) - Aerial Photography Community / News / [X](https://x.com/RGVaerialphotos)
|
||||
* [TheCMB](http://thecmb.org/) - 3D Cosmic Microwave Background Model
|
||||
* [ISODN Earth Science](https://discord.gg/ujvMHFV) - ISODN Earth Science Discord Community
|
||||
|
||||
|
|
@ -680,14 +691,18 @@
|
|||
|
||||
* ⭐ **[EarthData](https://worldview.earthdata.nasa.gov/)** - Daily Satellite Replays
|
||||
* ⭐ **[Visible Earth](https://visibleearth.nasa.gov/)**, [SpaceFromSpace](https://spacefromspace.com/), [GOES-16 Satellite Imagery](https://rammb-slider.cira.colostate.edu/) or [Sentinel Hub](https://www.sentinel-hub.com/) - Satellite Imagery
|
||||
* [NASASpaceFlight](https://www.nasaspaceflight.com/) - Launch Livestreams / News / [Forum](https://forum.nasaspaceflight.com/)
|
||||
* [Next Spaceflight](https://nextspaceflight.com/) / [Discord](https://discord.gg/nextspaceflight), [nextrocket.space](https://nextrocket.space/) or [RocketLaunch](https://rocketlaunch.org/) - Rocket Launch / Space Flight Trackers
|
||||
* [NSSDCA](https://nssdc.gsfc.nasa.gov/) - NASA Space Science Mission Data
|
||||
* [NASASpaceFlight](https://www.nasaspaceflight.com/) - Launch Livestreams / News / [Forum](https://forum.nasaspaceflight.com/) / [X](https://www.youtube.com/@NASASpaceflight)
|
||||
* [Next Spaceflight](https://nextspaceflight.com/) / [X](https://x.com/NextSpaceflight) / [Discord](https://discord.gg/nextspaceflight), [nextrocket.space](https://nextrocket.space/) or [RocketLaunch](https://rocketlaunch.org/) - Rocket Launch / Space Flight Trackers
|
||||
* [Spaceflight Archive](https://spaceflight-archive.com/) - Rocket Launch History / Visualizations / Stats / [X](https://x.com/S_F_Archive)
|
||||
* [TonyBela Infographics](https://tonybela.com/) - Spacecraft / Rocket Infographics / [X](https://x.com/InfographicTony)
|
||||
* [Ringwatchers](https://ringwatchers.com/) - Starship Diagrams / Articles / Community / [X](https://x.com/ringwatchers) / [Discord](https://discord.com/invite/ringwatchers)
|
||||
* [Sen](https://www.sen.com/) - ISS Live Feed + Video Archive / [YouTube](https://www.youtube.com/@Sen) / [X](https://x.com/sen)
|
||||
* [ISS In Realtime](https://issinrealtime.org/) - Historical ISS Mission Replays / Database
|
||||
* [ISS Sim](https://iss-sim.spacex.com/) - ISS Docking Simulator
|
||||
* [Transit Finder](https://transit-finder.com/), [ISS Tracker](https://isstracker.pl/en), [Spot The Station](https://spotthestation.nasa.gov/) or [Where The ISS At?](https://wheretheiss.at/) - ISS Transit Tracking
|
||||
* [Satellite Map](https://satellitemap.space/), [SGP4](https://sgp4gl-demo.vercel.app/) / [GitHub](https://github.com/Kayhan-Space/sgp4gl-demo), [KeepTrackSpace](https://www.keeptrack.space/), [Find Starlink](https://findstarlink.com/) or [Look4Sat](https://github.com/rt-bishop/Look4Sat) - Satellite Orbit Maps / Trackers
|
||||
* [Leolabs Space](https://platform.leolabs.space/visualization) - Low Earth Orbit Simulator
|
||||
* [Orbiter](https://www.orbiter-forum.com/) - Spaceflight Simulator / [GitHub](https://github.com/orbitersim/orbiter)
|
||||
* [Satellite Map](https://satellitemap.space/), [KeepTrackSpace](https://www.keeptrack.space/), [Find Starlink](https://findstarlink.com/) or [Look4Sat](https://github.com/rt-bishop/Look4Sat) - Satellite Orbit Maps / Trackers
|
||||
* [Orbiter](https://www.orbiter-forum.com/) - Spaceflight Simulator / [Subreddit](https://www.reddit.com/r/Orbiter/) / [GitHub](https://github.com/orbitersim/orbiter)
|
||||
* [Andegraf Rockets](https://rockets.andegraf.com/) - Rocket Diagrams
|
||||
|
||||
***
|
||||
|
|
@ -696,14 +711,14 @@
|
|||
|
||||
## ▷ Multi-Language
|
||||
|
||||
* 🌐 **[Language Links](https://docs.google.com/spreadsheets/d/1EGPFLFJdyKGKjh8LXXA099ddf1yB6ZQgr_mmtBnYCy8)**, [/int/ Guide](https://4chanint.miraheze.org/) or [r/LanguageLearning Resources](https://www.reddit.com/r/languagelearning/wiki/index) - Language Learning Resources
|
||||
* 🌐 **[Language Links](https://docs.google.com/spreadsheets/d/1EGPFLFJdyKGKjh8LXXA099ddf1yB6ZQgr_mmtBnYCy8)**, [/int/ Guide](https://4chanint.miraheze.org/) or [r/LanguageLearning Resources](https://www.reddit.com/r/languagelearning/wiki/resources/) - Language Learning Resources
|
||||
* 🌐 **[Speechling](https://speechling.com/tools)** - Language Learning Tools
|
||||
* 🌐 **[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
|
||||
* ⭐ **[Readlang](https://readlang.com/)** - Learn a Language via Web Browsing
|
||||
* [Duolingo](https://rentry.co/FMHYB64#duolingo) / [Tips](https://duome.eu/tips), [LingoDeer](https://www.lingodeer.com/) or [Busuu](https://rentry.co/FMHYB64#busuu) - Language Learning Lessons
|
||||
* [Duolingo](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) / [Tips](https://duome.eu/tips), [LingoDeer](https://www.lingodeer.com/) or [Busuu](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Language Learning Lessons
|
||||
* [Language Learners](https://forum.language-learners.org/) - Language Learning Forum / Community
|
||||
* [WordReference](https://www.wordreference.com/), [Glosbe](https://glosbe.com/) or [Reverso](https://reverso.net/) - Translation Dictionary
|
||||
* [Yomitan](https://yomitan.wiki/) - Popup Dictionary / [Discord](https://discord.gg/3v22CATnyr)
|
||||
|
|
@ -711,8 +726,8 @@
|
|||
* [Comprehensible Input Wiki](https://comprehensibleinputwiki.org/) - Learn Languages via Comprehensible Input
|
||||
* [Languagelearning.site](https://languagelearning.site/) - Language Learning Torrents
|
||||
* [Refold](https://refold.la/) - Language Learning Roadmap
|
||||
* [Language Drops](https://languagedrops.com/) / [Premium](https://rentry.co/FMHYB64#language-drops) or [OkyDoky](https://www.okydoky.app/) - Language Learning App with Thematic Vocab
|
||||
* [Yojik](https://fsi-languages.yojik.eu/index.html) or [Pimsleur](https://rentry.co/FMHYB64#pimsleur) - Language Learning Courses
|
||||
* [Language Drops](https://languagedrops.com/) / [Premium](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) or [OkyDoky](https://www.okydoky.app/) - Language Learning App with Thematic Vocab
|
||||
* [Yojik](https://fsi-languages.yojik.eu/index.html) - Language Learning Courses
|
||||
* [DLIFLC](https://gloss.dliflc.edu/) - Language Learning Quizzes
|
||||
* [Ba Ba Dum](https://babadum.com/) - Language Learning Game
|
||||
* [LanguageGuide](https://www.languageguide.org/) - Visual Language Learning
|
||||
|
|
@ -756,7 +771,7 @@
|
|||
|
||||
## ▷ English
|
||||
|
||||
* 🌐 **[Many Things](http://www.manythings.org/)** - ESL Resources
|
||||
* 🌐 **[Many Things](https://www.manythings.org/)** - ESL Resources
|
||||
* 🌐 **[ESOL](https://www.esolcourses.com/)** - English Learning Resources
|
||||
* [youglish](https://youglish.com/) or [YouDict](https://youdict.co/) - YouTube Word Pronunciations
|
||||
* [Forvo](https://forvo.com/) or [HowJSay](https://howjsay.com/) - Pronunciation Dictionary
|
||||
|
|
@ -838,7 +853,7 @@
|
|||
* [The Chairman's Bao](https://www.thechairmansbao.com/) - Chinese Reading Practice / News Articles
|
||||
* [Pleco](https://www.pleco.com/) - Chinese Flashcards / Dictionary
|
||||
* [Chinese Flashcards](https://www.chineseflashcards.io/) - Chinese Flashcards
|
||||
* [MandoBot](https://mandobot.netlify.app/) - Mandarin Translation / Segementation
|
||||
* [MandoBot](https://mandobot.netlify.app/) - Mandarin Translation / Segmentation
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -850,9 +865,10 @@
|
|||
* [FluentWithStories](https://www.fluentwithstories.com/) - Learn Spanish via Stories
|
||||
* [DreamingSpanish](https://www.dreamingspanish.com/) - Spanish Learning Videos
|
||||
* [The French Tutorial](http://www.frenchtutorial.com/) - French Learning Tutorials
|
||||
* [TV5MONDE](https://apprendre.tv5monde.com/en/) - French Learning Videos
|
||||
* [TV5MONDE](https://apprendre.tv5monde.com/en/) - French Learning Videos
|
||||
* [LCSpeakFrench](https://t.me/LCSpeakFrench) - Live French Lessons
|
||||
* [Uusi Kielemme](https://uusikielemme.fi/) - Finnish Learning
|
||||
* [The People's Dictionary](https://folkets-lexikon.csc.kth.se/folkets/folkets.en.html) - Swedish Translation Dictionary
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -885,7 +901,7 @@
|
|||
## ▷ Sign Languages
|
||||
|
||||
* ⭐ **[SpreadTheSign](https://spreadthesign.com/)** - Multi-Language Dictionary
|
||||
* [ASL Dictionary](https://www.signasl.org/), [LifePrint](https://lifeprint.com/), [ASLCore](https://aslcore.org/) or [HandSpeak](https://www.handspeak.com/) - American Sign Language Dictionaries
|
||||
* [ASL Dictionary](https://www.signasl.org/), [StrongASL](https://www.strongasl.com/), [LifePrint](https://lifeprint.com/), [ASLCore](https://aslcore.org/) or [HandSpeak](https://www.handspeak.com/) - American Sign Language Dictionaries
|
||||
* [Text to Sign](https://wecapable.com/tools/text-to-sign-language-converter/) - Convert Text to Fingerspelling in ASL or BSL
|
||||
* [Rochester ASL / LSF](https://projects.lib.rochester.edu/lsf-asl-app/) - ASL / LSF / Click Dictionary
|
||||
* [BSL Dictionary](https://www.signbsl.com/), [BSL Signbank](https://bslsignbank.ucl.ac.uk/), [MobileSign](http://www.mobilesign.org/) or [Signd](https://signd.co.uk/) - British Sign Language Dictionaries
|
||||
|
|
@ -894,11 +910,13 @@
|
|||
* [SSC](https://www.ssc.education.ed.ac.uk/BSL/) - BSL Academic Term Dictionary
|
||||
* [BKS](https://bks.org.uk/) - British Key Word Signs
|
||||
* [International Sign](https://sonastik.ead.ee/rahvusvaheline/en) - International Sign Language
|
||||
* [DeafTec](https://deaftec.org/stem-dictionary/) or [Tachyo](https://www.tachyo.org/) - STEM Sign Dictionaries / Search
|
||||
* [Interpreter Services](https://alb-accmedia.austincc.edu/signs) - Specialized ASL Dictionary
|
||||
* [SignSchool](https://www.signschool.com/) - ASL Learning / Dictionary
|
||||
* [SooSL](https://www.soosl.net/) - Create Custom Sign Language Dictionaries
|
||||
* [ASL Learning](https://asl.ms/) - ASL Learning Site
|
||||
* [Learn NZSL](https://learn.nzsl.nz/) - NZSL Learning Site
|
||||
* [HandyBSL](https://handybsl.co.uk/) - Learn / Practice BSL
|
||||
* [SignLearner](https://signlearner.com/) - Learn ASL or BSL while Browsing Internet / Chromium
|
||||
* [Signs](https://signs-ai.com/) - ASL Learning AI
|
||||
* [Learn BSL in SignWriting](https://ankiweb.net/shared/info/1502698119)
|
||||
|
|
@ -918,7 +936,7 @@
|
|||
* [World Cube Association](https://www.worldcubeassociation.org/) - Cubing Competitions & Records
|
||||
* [Cubing Time Standard](https://cubingtimestandard.com/) - Track Your Performance Across WCA Events
|
||||
* [alg.cubing.net](https://alg.cubing.net/), [CubeDB](https://cubedb.net/), or [Tao Yu Trainer](https://tao-yu.github.io/Alg-Trainer/) - Algorithm Animators / Visualizers
|
||||
* [F2L Trainer](http://expertcuber.by/f2ltrainer.php) or [ZBLL Trainer](http://bestsiteever.ru/zbll/) - Algorithm-Specific Trainers
|
||||
* [F2L Trainer](https://expertcuber.by/f2l.php) - Algorithm-Specific Trainers
|
||||
* [Hypercubing](https://hypercubing.xyz/) - Hypercubing Wiki
|
||||
* [Speedcube.app](https://speedcube.app/) - Cubing Timer (Mobile-Friendly)
|
||||
* [SolveTheCube](https://solvethecube.com/timer) - Cubing Timer
|
||||
|
|
@ -940,8 +958,10 @@
|
|||
* [HerculesChess](https://herculeschess.com/) - Learn / Practice Chess
|
||||
* [Chess Tempo](https://chesstempo.com/) - Chess Practice
|
||||
* [Lucas Chess](https://lucaschess.pythonanywhere.com/) - Chess Practice
|
||||
* [Chess Coach](https://rentry.co/FMHYB64#chess-coach) - Chess Coaching App
|
||||
* [Chess Coach](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) - Chess Coaching App
|
||||
* [Chess OCR](https://helpman.komtera.lt/chessocr/) - Multi-Site Digital Chessboard Analysis
|
||||
* [WintrChess](https://wintrchess.com/), [2](https://chess.wintrcat.uk/) - Chess Game / Move Analysis
|
||||
* [Pawn Appétit](https://pawnappetit.com/) - Chess Game / Move Analysis / [GitHub](https://github.com/ChessKitchen/pawn-appetit)
|
||||
* [Decode Chess](https://app.decodechess.com/) - Chess Game / Move Analysis
|
||||
* [YottaChess](https://www.yottachess.com/) - Chess Game / Move Analysis
|
||||
* [Chessigma](https://www.chessigma.com/) - Chess Game / Move Analysis / [Discord](https://discord.gg/dy9VXd5n3v)
|
||||
|
|
@ -959,7 +979,7 @@
|
|||
|
||||
* ↪️ **[D&D Building Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools/#wiki_.25B7_rpg_worldbuilding)** - Map Editors, Campaign Managers, Worldbuilding, etc.
|
||||
* ⭐ **[D&D Compendium](https://www.dnd-compendium.com/)** or [RPGBOT](https://rpgbot.net/) - D&D Tools & Learning Resources
|
||||
* ⭐ **[5etools](https://5e.tools/)** or [The Acaeum](https://www.acaeum.com/) - 5E Rules & Content References
|
||||
* ⭐ **[5etools](https://5e.tools/)**, [DM Screen](https://www.linepup.com/dm-screen/) or [The Acaeum](https://www.acaeum.com/) - Rules & Content References
|
||||
* ⭐ **[D&D Beyond](https://www.dndbeyond.com/)** - Official Toolset for 5E
|
||||
* ⭐ **[Kobold+ Fight Club](https://koboldplus.club/)** - Encounter Builder & Balancer
|
||||
* [Avrae](https://avrae.io/) - D&D Automation Discord Bot
|
||||
|
|
@ -1026,7 +1046,7 @@
|
|||
* [The Linux Kernel](https://www.kernel.org/doc/html/latest/) - Linux Kernel Development Guides / [Archives](https://kernel.org/)
|
||||
* [Workbench](https://apps.gnome.org/Workbench) - Learn / Experiment with Gnome / [GitHub](https://github.com/workbenchdev/Workbench)
|
||||
* [aman.ai](https://aman.ai/) - Artificial Intelligence / Deep Learning Stanford Notes
|
||||
* [LLM Visualization](https://bbycroft.net/llm), [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), [udlbook](https://udlbook.github.io/udlbook/) / [GitHub](https://github.com/udlbook/udlbook/), [ML Visualized](https://ml-visualized.com/) / [GitHub](https://github.com/gavinkhung/machine-learning-visualized) or [LLM Course](https://github.com/mlabonne/llm-course) - Learn Machine Learning
|
||||
* [LLM Visualization](https://bbycroft.net/llm), [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), [udlbook](https://udlbook.github.io/udlbook/) / [GitHub](https://github.com/udlbook/udlbook/), [mlsysbook](https://www.mlsysbook.ai/), [ML Visualized](https://ml-visualized.com/) / [GitHub](https://github.com/gavinkhung/machine-learning-visualized) or [LLM Course](https://github.com/mlabonne/llm-course) - Learn Machine Learning
|
||||
* [Transformer Explainer](https://poloclub.github.io/transformer-explainer/) - Transformer Visuzliation
|
||||
* [Approaching (Almost) Any Machine Learning Problem](https://files.catbox.moe/b34jd4.pdf) - Machine Learning Problem-Solving Book
|
||||
* [Deep ML](https://www.deep-ml.com/) - Solve Machine Learning Problems
|
||||
|
|
@ -1040,7 +1060,7 @@
|
|||
|
||||
## ► Coding Tutorials
|
||||
|
||||
* 🌐 **[Project Based Learning](https://github.com/practical-tutorials/project-based-learning)** - Project Based Learning Resources
|
||||
* 🌐 **[Project Based Learning](https://github.com/practical-tutorials/project-based-learning)** - Project Based Learning Resources
|
||||
* ⭐ **[Build your own X](https://codecrafters.io)** - Advanced Coding Tutorials / [Discord](https://discord.gg/DeqUD2P) / [GitHub](https://github.com/codecrafters-io/build-your-own-x)
|
||||
* [Programiz](https://www.programiz.com/), [TutorialKart](https://www.tutorialkart.com/), [Hackr.io](https://hackr.io/), [Ultimate Programming](https://www.codebreakthrough.com/ultimate-programming-all-in-one-tutorials?coupon=LEARNFORFREE), [GeeksforGeeks](https://www.geeksforgeeks.org/) or [Tpoint Tech](https://www.tpointtech.com/) / [Telegram](https://t.me/tpointtech) - General Coding Tutorials
|
||||
* [Guru99](https://www.guru99.com/) - Software / Web Development
|
||||
|
|
@ -1065,7 +1085,7 @@
|
|||
* [CS50](https://cs50.harvard.edu/python/) - Python Course
|
||||
* [Tea Press](https://greenteapress.com/wp) - Python Learning Book
|
||||
* [Learn C](https://www.learn-c.org/) - C Tutorials
|
||||
* [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) / [GitHub](https://github.com/isocpp/CppCoreGuidelines) or [modern-cpp-tricks](https://github.com/rachitiitr/modern-cpp-tricks) - C++ Tips
|
||||
* [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) / [GitHub](https://github.com/isocpp/CppCoreGuidelines) or [modern-cpp-tricks](https://github.com/rachitiitr/modern-cpp-tricks) - C++ Tips
|
||||
* [Learn C++](https://www.learncpp.com/) or [StudyPlan](https://www.studyplan.dev/) - C++ Lessons / Tutorials
|
||||
* [Makefile Tutorial](https://makefiletutorial.com/) - Makefile Tutorial
|
||||
* [AmigosCode](https://www.youtube.com/@amigoscode), [Java Design Patterns](https://java-design-patterns.com/) or [learncs.online](https://www.learncs.online/) - Java / Kotlin Guides
|
||||
|
|
@ -1128,7 +1148,8 @@
|
|||
* ⭐ **[Open Source Society University](https://github.com/ossu/computer-science)** / [PT-BR](https://github.com/ossu/computer-science-br) / [CN](https://github.com/ossu/computer-science-cn) - Computer Science Roadmap / [Discord](https://discord.gg/wuytwK5s9h)
|
||||
* ⭐ **[CS50](https://cs50.harvard.edu/x/)** - Harvard Computer Science Course / [Subreddit](https://www.reddit.com/r/cs50/) / [Telegram](https://t.me/cs50x) / [Discord](https://discord.com/invite/cs50) / [GitHub](https://github.com/cs50)
|
||||
* ⭐ **[NandGame](https://nandgame.com/)** - Computer Building Puzzle
|
||||
* ⭐ **[CraftingInterpreters](http://www.craftinginterpreters.com/)** - Scripting Language Implementation Book / [GitHub](https://github.com/munificent/craftinginterpreters)
|
||||
* ⭐ **[CraftingInterpreters](https://www.craftinginterpreters.com/)** - Scripting Language Implementation Book / [GitHub](https://github.com/munificent/craftinginterpreters)
|
||||
* [CSRankings](https://csrankings.org/) - Publication Activity of Computer Science Colleges per Topic
|
||||
* [CS1000](https://cs1000.surge.sh/) - Computer Science / Software Engineering
|
||||
* [Tech Dev Guide](https://techdevguide.withgoogle.com/) - Computer Science Google Courses
|
||||
* [Big-O Cheatsheet](https://www.bigocheatsheet.com/) - Computer Science Complexities Cheatsheet
|
||||
|
|
@ -1186,7 +1207,6 @@
|
|||
* [Codility](https://app.codility.com/programmers/) - Coding Practice
|
||||
* [ProjectLearn](https://projectlearn.io/) - Coding Practice
|
||||
* [LintCode](https://www.lintcode.com/) or [CodeWars](https://www.codewars.com/) - Coding Practice
|
||||
* [CyberType](https://cybertype.app/) - Increase Coding Speed
|
||||
* [Coding Questions](https://platform.stratascratch.com/coding) or [Skilled.dev](https://skilled.dev/) - Coding Interview Questions
|
||||
* [BuildBox](https://app.buidlbox.io/), [DevPost](https://devpost.com/), [HackTheEarth](https://www.hackerearth.com/challenges/), [EMKC](https://emkc.org/challenges), [AtCoder](https://atcoder.jp/) or [Toph.co](https://toph.co/) - Hackathon / Challenge Communities
|
||||
* [Rosetta Code](https://rosettacode.org/wiki/Rosetta_Code), [CodeAbbey](https://www.codeabbey.com/), [Kattis](https://open.kattis.com/) or [Coding Problems](https://github.com/MTrajK/coding-problems) - Coding Problems / Solutions
|
||||
|
|
@ -1206,7 +1226,6 @@
|
|||
|
||||
* [design.tips](https://www.designer.tips/) or [Utopia](https://utopia.fyi/) - Design Tips
|
||||
* [HackDesign](https://hackdesign.org/) or [Sky Design](https://github.com/josephgoksu/sky-design) - UI / Webdesign Courses
|
||||
* [Learn UI Design](https://learnui.design/) - UI Design Course
|
||||
* [50 UI Tips](https://fifty.user-interface.io/50_ui_tips.pdf) - UI / UX Design Book
|
||||
* [Can't Unsee](https://cantunsee.space/) - UI Design Test
|
||||
* [UXTools](https://uxtools.co/) or [UXMovement](https://uxmovement.com/) - Learn UX Design
|
||||
|
|
@ -1215,7 +1234,7 @@
|
|||
* [Laws of UX](https://lawsofux.com/) - Maxims / Principles for UI Designers
|
||||
* [Deceptive Patterns](https://www.deceptive.design/) - Deceptive User Experience Examples
|
||||
* [UI Coach](https://uicoach.io/) - UI Design Challenge Generator
|
||||
* [HTML Dog](https://htmldog.com/) or [Front Tips](https://front.tips/) - Frontend Tutorials & Examples
|
||||
* [HTML Dog](https://htmldog.com/) - Frontend Tutorials & Examples
|
||||
* [FrontEndMentor](https://www.frontendmentor.io/) or [Frontend Challenges](https://github.com/felipefialho/frontend-challenges) - Frontend Design Challenges
|
||||
* [Frontend Learning Kit](https://github.com/sadanandpai/frontend-learning-kit) - Frontend Learning Index
|
||||
* [Frontend Bootcamp](https://microsoft.github.io/frontend-bootcamp/) - Frontend Workshop
|
||||
|
|
@ -1241,11 +1260,13 @@
|
|||
* [MicroCorruption](https://microcorruption.com/) - Learn Reverse Engineering / Cybersecurity
|
||||
* [x86re](https://x86re.com/) or [Reverse-Engineering](https://github.com/mytechnotalent/Reverse-Engineering) - Reverse Engineering Guides
|
||||
* [CrackMyApp](https://crackmy.app/) or [crackmes](https://crackmes.one/) / [Discord](https://discord.com/invite/2pPV3yq) - Reverse Engineering Challenges
|
||||
* [Reverse Engineering Academy](https://reverseengineering.vercel.app/) - Interactive Reverse Engineering Lessons
|
||||
* [John Hammond](https://www.youtube.com/@_JohnHammond) - Cybersecurity YouTube Tutorials
|
||||
* [Pentesting Bible](https://github.com/blaCCkHatHacEEkr/PENTESTING-BIBLE) or [Juice Shop](https://owasp.org/www-project-juice-shop/) - Learn Pentesting
|
||||
* [How DNS Works](https://howdns.works/) - Learn DNS
|
||||
* [How DNSSEC Works](https://howdnssec.works/) - Learn DNSSEC
|
||||
* [CryptoPals](https://cryptopals.com/) or [cryptohack](https://cryptohack.org/) - Cryptography Learning
|
||||
* [CrypTool](https://www.cryptool.org/) - Interactive Cryptology Learning / Puzzles
|
||||
* [How HTTPS Works](https://howhttps.works/) - Learn HTTPS
|
||||
|
||||
***
|
||||
|
|
@ -1269,6 +1290,8 @@
|
|||
* [Game Math](https://gamemath.com/book/intro.html) - Mathematics Lessons for Game Devs
|
||||
* [Graphics Workshop](https://github.com/ekzhang/graphics-workshop) - Learn Computer Graphics
|
||||
* [The Book of Shaders](https://thebookofshaders.com/) - Fragment Shaders Guide
|
||||
* [EmuDev](https://emudev.org/) - Emulator Development Information / [Discord](https://discordapp.com/invite/dkmJAes)
|
||||
* [EmuDevs](https://afska.github.io/emudevz/) - NES Emulator Development Learning Game
|
||||
* [QB64SourceCode](https://www.qb64tutorial.com/) - QB64 Game Programming Tutorials
|
||||
* [8bitWorkshop](https://8bitworkshop.com/) - Retro Game Programming Tutorials
|
||||
|
||||
|
|
@ -1291,6 +1314,7 @@
|
|||
* [r/APStudents Course Survey](https://docs.google.com/spreadsheets/u/6/d/1s-YM81RvD11h9UOTba_XsBKEy-NW8PEXim2UxSLwdRE/edit#gid=1924688511) - AP Exam Comparison Spreadsheet
|
||||
* [r/CATpreparation](https://www.reddit.com/r/CATpreparation/) - CAT Test Prep / [Discord](https://discord.gg/CAvHUZY6rH)
|
||||
* [Revisely](https://www.revisely.com/) - GCSE Exam Help
|
||||
* [nzqa.toasting](https://nzqa.toasting.me/) - Download NZQA Past Papers
|
||||
* [CatchaScience](https://catchascience.wordpress.com/), [IGCSEResources](https://sites.google.com/view/igcseresources/home), [r/IGCSE](https://www.reddit.com/r/igcse/) or [ZNotes](https://znotes.org/) - IGCSE Study Notes / Resources
|
||||
* [IGCSE Papers](https://igcse.net/igcse-past-papers-download/), [RevisionScience](https://revisionscience.com/) or [Physics & Maths Tutor](https://www.physicsandmathstutor.com/) - Download Past GCSE / IGCSE Papers
|
||||
* [anthropology](https://t.me/anthropology) - UPSC Telegram Channel
|
||||
|
|
@ -1319,7 +1343,7 @@
|
|||
* ⭐ **[PirateHive](https://phantomcodex9.github.io/piratehive/)** - Guides / Study Material
|
||||
* ⭐ **[ExamSide](https://questions.examside.com/)** - PYQ Solutions
|
||||
* [JEE Hub](https://jeehub.vercel.app/) - JEE / NEET PYQs
|
||||
* [JEE Books](https://t.me/+iHmGydsEO343ODk1) or [JEE Archive](https://jee-archive.vercel.app/) - JEE Books Archives
|
||||
* [JEE Books](https://t.me/+iHmGydsEO343ODk1), [JEEBooksPDF](https://m.youtube.com/c/JEEBooksPDF) / [Telegram](https://telegram.me/jeebookspdf) or [JEE Archive](https://jee-archive.vercel.app/) - JEE Books Archives
|
||||
* [Genetry](https://genetry.carrd.co/) or [Lec.Branch](https://t.me/addlist/pgaJblpaVWIwYjFl) - JEE Lectures
|
||||
* [YouTube Lengths](https://redd.it/1614jn5), [Fastlane Lengths](https://redd.it/17d1qt3) or [Normal Lane Lengths](https://redd.it/183er1y) - Lecture Lengths / Data
|
||||
* [MarksAPP](https://web.getmarks.app/) - Guides / Study Material / [Telegram](https://telegram.me/getmarksapp)
|
||||
|
|
@ -1334,7 +1358,6 @@
|
|||
* ↪️ **[Presentation Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_presentation_tools)**
|
||||
* ↪️ **[Data Visualization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_data_visualization_tools)**
|
||||
* ↪️ **[Grammar / Spell Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_grammar_check)**
|
||||
* ↪️ **[Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)**
|
||||
* ⭐ **[Excalidraw](https://excalidraw.com/)** / [Sharing](https://excalihub.dev/), **[OpenBoard](https://openboard.ch/index.en.html)**, [DGM](https://dgm.sh/), [NotebookCast](https://www.notebookcast.com/), [WebWhiteboard](https://webwhiteboard.com/), [Microsoft Whiteboard](https://apps.microsoft.com/detail/9MSPC6MP8FM4), [WBO](https://wbo.ophir.dev/), [OurBoard](https://www.ourboard.io/), [Whiteboard.fi](https://whiteboard.fi/) or [Whiteboard Fox](https://r3.whiteboardfox.com/) - Whiteboards
|
||||
* [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals
|
||||
* [Better Canvas](https://github.com/UseBetterCanvas/bettercanvas) - Canvas Enhancement Extension
|
||||
|
|
@ -1348,6 +1371,7 @@
|
|||
* [Scholarship Roar](https://scholarshiproar.com/) - Scholarship Database
|
||||
* [Extracurriculars.org](https://extracurriculars.org/) / [Discord](https://discord.gg/SGEtqcaSRu), [snow.day](https://www.snow.day/) or [Talem](https://www.talem.org/extracurriculars) - Extracurricular Search
|
||||
* [Niche](https://www.niche.com/), [TheUniGuide](https://www.theuniguide.co.uk/), [Alumnius](https://alumnius.net/) or [Top Universities](https://www.topuniversities.com/) - University / School Comparisons
|
||||
* [CSRankings](https://csrankings.org/) - Publication Activity of Computer Science Colleges per Topic
|
||||
* [RateMyDorm](https://ratemydorm.com) or [:)](https://docs.google.com/document/d/14Mn1CrA-CV5YZAkOZtrMKTmn2O4oL-2EhIXhzXZbO0A/edit#) - College Dorm Reviews
|
||||
* [RateMyProfessor](https://www.ratemyprofessors.com/) - Professor Ratings
|
||||
* [Wordwall](https://wordwall.net/) - Lesson Creator
|
||||
|
|
@ -1362,15 +1386,17 @@
|
|||
* 🌐 **[Awesome Research](https://github.com/emptymalei/awesome-research)**, [Scolary](https://scolary.com/), [KausalFlow](https://tools.kausalflow.com/), [Foam](https://foambubble.github.io/), [Zotero](https://www.zotero.org/), [ResearchRabbit](https://www.researchrabbit.ai/) or [Scrible](https://www.scrible.com/) - Research Tools
|
||||
* ↪️ **[Note-Taking Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_note-taking)**
|
||||
* ↪️ **[Documents / Articles](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_documents_.2F_articles)**
|
||||
* ↪️ **[Research Paper Chatbots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_specialized_chatbots)**
|
||||
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** or [Wolfram Mobile](https://rentry.co/FMHYB64#wolfram-mobile) - Searchable Knowledge Base
|
||||
* ⭐ **[StudyLion](https://lionbot.org)** - Study Tracker / Productivity Discord Bot / [GitHub](https://github.com/StudyLions/StudyLion)
|
||||
* ⭐ **[StudyKit](https://studykit.app/)**, [StuDoc](https://www.studocu.com/) / [Downloader](https://github.com/danieltyukov/studocuhack) / [Gizmo](https://gizmo.ai/), [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/), [Bitesize](https://www.bbc.co.uk/bitesize) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872)
|
||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Subreddit](https://www.reddit.com/r/Anki/) / [Discord](https://discord.gg/jUvBM2sEs4) / [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
|
||||
* ⭐ **[StudyKit](https://studykit.app/)**, [StuDoc](https://www.studocu.com/) / [Downloader](https://github.com/danieltyukov/studocuhack), [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/) / [Show Hidden](https://greasyfork.org/en/scripts/423872), [Shmoop](https://www.shmoop.com/), [Bitesize](https://www.bbc.co.uk/bitesize) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material
|
||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Subreddit](https://www.reddit.com/r/Anki/) / [Discord](https://discord.gg/jUvBM2sEs4) / [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/), [Gizmo](https://gizmo.ai/), [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://docs.ankiweb.net/resources.html), [2](https://github.com/tianshanghong/awesome-anki)
|
||||
* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android, iOS
|
||||
* ⭐ **[OpenSyllabus](https://opensyllabus.org/)** - Syllabus Search / Info
|
||||
* ⭐ **[Refseek](https://www.refseek.com/)**, [Explorer](https://explorer.globe.engineer/) or [Merlot](https://www.merlot.org/merlot/index.htm) - Academic Search Engines
|
||||
* [SciSpace](https://scispace.com/) (No Sign-Up), [Bohrium](https://www.bohrium.com/), [Scinito](https://ekb.scinito.ai/ai/chat) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Chatbots
|
||||
* [StudyCraft](https://studycraft.dev/) - Flashcards / Markdown Notes / PDF Reader / [GitHub](https://github.com/rodmarkun/StudyCraft)
|
||||
* [SciSpace](https://scispace.com/), [Bohrium](https://www.bohrium.com/), [Scinito](https://ekb.scinito.ai/ai/chat) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Chatbots
|
||||
* [Co-STORM](https://storm.genie.stanford.edu/) or [SciArena](https://sciarena.allen.ai/) - Generate Scientific Articles
|
||||
* [mybib](https://www.mybib.com/), [citemaker](https://www.citemaker.com/), [formatically](https://formatically.com/), [zbib](https://zbib.org/), [CitationMachine](https://citationmachine.net/), [BibGuru](https://www.bibguru.com/), [Scribbr](https://www.scribbr.com/citation/generator/), [CiteFast](https://www.citefast.com) or [Cite This For Me](https://www.citethisforme.com/) - Citation Generators / [Chrome](https://chromewebstore.google.com/detail/cite-this-for-me-web-cite/nnnmhgkokpalnmbeighfomegjfkklkle)
|
||||
* [Publish or Perish](https://harzing.com/resources/publish-or-perish) - Citation Analyzer
|
||||
|
|
@ -1398,7 +1424,6 @@
|
|||
* [StudyStream](https://www.studystream.live/), [Yeolpumta](https://www.yeolpumta.com/en) or [StudyTogether](https://www.studytogether.com/) - Online Study Groups
|
||||
* [Space Finder](https://spacefinder.lib.cam.ac.uk/) - UK Study Space Search
|
||||
* [Cheatography](https://cheatography.com/) - Educational Cheat Sheets
|
||||
* [LitSolutions](https://www.litsolutions.org/) - Textbook Solutions
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1409,7 +1434,6 @@
|
|||
* ⭐ **[OpenCalc](https://github.com/Darkempire78/OpenCalc)**, [yetCalc](https://github.com/Yet-Zio/yetCalc) or [microMathematics](https://github.com/mkulesh/microMathematics) - Android Calculators
|
||||
* ⭐ **[GeoGebra](https://www.geogebra.org/)** or [Desmos](https://www.desmos.com/) - Graphing Calculators
|
||||
* [CEmu](https://github.com/CE-Programming/CEmu), [TI-84 Online](https://www.ti84-online.com/) or [ti84calc](https://ti84calc.com/) - TI-84 Calculators
|
||||
* [SpeedCrunch](https://speedcrunch.org/) - Advanced Calculator
|
||||
* [numbr.dev](https://numbr.dev/) - Calculators
|
||||
* [Aqua Calc](https://www.aqua-calc.com/) - Calculators
|
||||
* [PlanetCalc](https://planetcalc.com/) - Calculators
|
||||
|
|
@ -1419,7 +1443,7 @@
|
|||
* [Kalker](https://kalker.xyz/) or [Numbat](https://numbat.dev/) - Scientific Calculators
|
||||
* [TICalc](https://www.ticalc.org/pub/) - TI Graphing Calculator Files
|
||||
* [arTIfiCE](https://yvantt.github.io/arTIfiCE/) - TI CE Calculator Jailbreak
|
||||
* [Cymath](https://www.cymath.com/), [PhotoMath](https://rentry.co/FMHYB64#photomath), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Tiger Algebra](https://www.tiger-algebra.com/) or [Symbolab](https://www.symbolab.com/) - Math Problem Solvers
|
||||
* [Cymath](https://www.cymath.com/), [PhotoMath](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Tiger Algebra](https://www.tiger-algebra.com/), [Maxima](https://maxima.sourceforge.io/) or [Symbolab](https://www.symbolab.com/) - Math / Algebra Problem Solvers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1427,7 +1451,7 @@
|
|||
|
||||
* ⭐ **[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/FMHYB64#goldendict-files)
|
||||
* ⭐ **[GoldenDict](https://xiaoyifang.github.io/goldendict-ng/)** / [2](https://sourceforge.net/projects/goldendict/) - Dictionary
|
||||
* ⭐ **[NGrams](https://books.google.com/ngrams/)** or [Netspeak](https://netspeak.org/) - Word Usage Trackers
|
||||
* ⭐ **[The Piracy Glossary](https://rentry.org/The-Piracy-Glossary)** - Piracy Dictionary
|
||||
* ⭐ **[UrbanDictionary](https://www.urbandictionary.com/)** / [Frontends](https://codeberg.org/zortazert/rural-dictionary/) or [Slangit](https://slang.net/) - Slang Word / Phrase Dictionaries
|
||||
|
|
@ -1480,7 +1504,7 @@
|
|||
* [HatNote](https://top.hatnote.com/) - Top Pages
|
||||
* [Reversepedia](https://reversepedia.org/) - Page Connections
|
||||
* [wik](https://github.com/yashsinghcodes/wik) - Wiki TUI
|
||||
* [CDPedia](http://cdpedia.python.org.ar/index.en.es.html) - Offline View
|
||||
* [CDPedia](https://cdpedia.python.org.ar/index.en.es.html) - Offline View
|
||||
* [WikiExtractor](https://github.com/attardi/wikiextractor) - Extract Text
|
||||
* [Substance](https://substance.reorx.com/) - Extract Markdown
|
||||
* [UrlShortener](https://meta.wikimedia.org/wiki/Special:UrlShortener) - Shorten URLs
|
||||
|
|
|
|||
|
|
@ -7,27 +7,15 @@
|
|||
# ► File Tools
|
||||
|
||||
* ↪️ **[File Scanners](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_file_scanners)**
|
||||
* ⭐ **[Fileinfo](https://fileinfo.com/)**, [Filext](https://filext.com/) or [OpenMyFiles](https://www.openmyfiles.com/) - File Extension Libraries
|
||||
* ⭐ **[czkawka](https://github.com/qarmin/czkawka)** or [dupeGuru](https://dupeguru.voltaicideas.net/) - Duplicate File Finders
|
||||
* ⭐ **[Phockup](https://github.com/ivandokov/phockup)** - Organize Photo / Video Files by Date
|
||||
* [UnLock IT](https://emcosoftware.com/unlock-it/download) or [Lock Hunter](https://lockhunter.com/) - File Unlocker / Deleter
|
||||
* [Magika](https://github.com/google/magika) - AI File Content Type Detector
|
||||
* [MediaInfo](https://mediaarea.net/en/MediaInfo) - Media File Analysis / [Online](https://mediaarea.net/MediaInfoOnline)
|
||||
* [Icaros](https://github.com/Xanashi/Icaros) - Add Explorer Thumbnails to any Video Format
|
||||
* [copyparty](https://github.com/9001/copyparty/) - Portable File Server
|
||||
* [Tagging for Windows](https://tagging.connectpaste.com/) - Tag-Based File System
|
||||
* [HTTPDirfs](https://github.com/fangfufu/httpdirfs) or [hfs](https://rejetto.com/hfs/) / [2](https://github.com/rejetto/hfs) - HTTP File Systems
|
||||
* [WinBtrfs](https://github.com/maharmstone/btrfs) - Btrfs File System
|
||||
* [mergerfs](https://github.com/trapexit/mergerfs) - Union File System
|
||||
* [filebrowser](https://github.com/filebrowser/filebrowser/) - Online File Viewer
|
||||
* [WhatsLink](https://whatslink.info/) - View File Download Metadata
|
||||
* [File-Examples](https://file-examples.com/) - Dummy File Examples
|
||||
* [OpenHashTab](https://github.com/namazso/OpenHashTab) - Compare / Display File Hashes
|
||||
* [Attribute Changer](https://www.petges.lu/) - Edit File & Folder Properties
|
||||
* [TagSpaces](https://www.tagspaces.org/) - Add Tags to Files and Folders
|
||||
* [SKTimeStamp](https://tools.stefankueng.com/SKTimeStamp.html) - Change File Created / Modified Time
|
||||
* [ExtractMetadata](https://www.extractmetadata.com/), [FilesMD](https://www.filesmd.com/) or [Metadata2Go](https://www.metadata2go.com/) - Metadata Viewers / Editors
|
||||
* [CUETools](http://cue.tools/wiki/CUETools) - Manipulate .cue Files / [GitHub](https://github.com/gchudov/cuetools.net/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -38,14 +26,13 @@
|
|||
***
|
||||
|
||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#jdownloader)
|
||||
* ⭐ **JDownloader Tools** - [Debloat Guide](https://rentry.co/jdownloader2) / [Apps](https://my.jdownloader.org/apps/) / [Dark Theme](https://github.com/moktavizen/material-darker-jdownloader), [2](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||
* ⭐ **[IDM](https://rentry.co/FMHYB64#idm)** - Download Manager / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/tonec-idm-integration-module/) / [Chrome](https://chromewebstore.google.com/detail/idm-integration-module/ngpampappnmepgilojfohadhhmbhlaek)
|
||||
* [AB Download Manager](https://abdownloadmanager.com/) - Download Manager / [Telegram](https://t.me/abdownloadmanager_discussion) / [GitHub](https://github.com/amir1376/ab-download-manager)
|
||||
* ⭐ **JDownloader Tools** - [Debloat Guide](https://claraiscute.neocities.org/Guides/jdownloader2/), [2](https://claraiscute.pages.dev/Guides/jdownloader2/) / [Apps](https://my.jdownloader.org/apps/) / [Dark Theme](https://github.com/moktavizen/material-darker-jdownloader), [2](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||
* ⭐ **[AB Download Manager](https://abdownloadmanager.com/)** - Download Manager / [Telegram](https://t.me/abdownloadmanager_discussion) / [GitHub](https://github.com/amir1376/ab-download-manager)
|
||||
* ⭐ **[IDM](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites)** (search) - Download Manager / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/tonec-idm-integration-module/) / [Chrome](https://chromewebstore.google.com/detail/idm-integration-module/ngpampappnmepgilojfohadhhmbhlaek)
|
||||
* [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)
|
||||
* [Brisk](https://github.com/BrisklyDev/brisk) - Download Manager / [Extension](https://github.com/BrisklyDev/brisk-browser-extension) / [Discord](https://discord.gg/hGBDWNDHG3) / [GitHub](https://github.com/BrisklyDev/brisk)
|
||||
* [Brisk](https://github.com/BrisklyDev/brisk) - Download Manager / [Extension](https://github.com/BrisklyDev/brisk-browser-extension) / [Discord](https://discord.gg/hGBDWNDHG3)
|
||||
* [FDM](https://www.freedownloadmanager.org/) - Download Manager / [YTDL Addon](https://github.com/meowcateatrat/elephant)
|
||||
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager
|
||||
* aria2 Tools - [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/) / [GitHub](https://github.com/aria2/aria2)
|
||||
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/) / [GitHub](https://github.com/aria2/aria2)
|
||||
* [pyLoad](https://pyload.net/) - Lightweight Download Manager / [GitHub](https://github.com/pyload/pyload)
|
||||
* [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site Media Download Tool
|
||||
* [ArrowDL](https://github.com/setvisible/ArrowDL/) - Download Manager
|
||||
|
|
@ -68,7 +55,7 @@
|
|||
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online
|
||||
* [unzip-online](https://unzip-online.com/en) - Unzip Files Online
|
||||
* [Unrar online](https://unrar.online/) - Unrar Files Online
|
||||
* [WinRAR](https://www.win-rar.com/), [2](https://www.rarlab.com) - File Archiver / [Hide Popups](https://rentry.co/x3-Rawr) / [Update (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#winrar)
|
||||
* [WinRAR](https://www.win-rar.com/), [2](https://www.rarlab.com) - File Archiver / [Hide Popups](https://claraiscute.neocities.org/Guides/x3-rawr/), [2](https://claraiscute.pages.dev/Guides/x3-rawr/) / [Update (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#winrar)
|
||||
* [UPX](https://upx.github.io/) - Executable File Compressor / [GitHub](https://github.com/upx/upx)
|
||||
|
||||
***
|
||||
|
|
@ -95,15 +82,15 @@
|
|||
|
||||
## ▷ File Managers
|
||||
|
||||
* ⭐ **[Files](https://files.community/)** - Customizable File Manager / Use Classic Installer / [Discord](https://discord.gg/files)
|
||||
* ⭐ **[Directory Opus](https://rentry.co/FMHYB64#directory-opus)** - Windows File Manager
|
||||
* [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross-Platform File Managers
|
||||
* ⭐ **[Directory Opus](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites)** (search) - Windows File Manager
|
||||
* [DoubleCMD](https://doublecmd.sourceforge.io/) / [GitHub](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross-Platform File Managers
|
||||
* [Sigma](https://sigma-file-manager.vercel.app) - Modern File Manager / [GitHub](https://github.com/aleksey-hoffman/sigma-file-manager)
|
||||
* [ChromaFiler](https://chroma.zone/chromafiler/) - Column-Based File Manager
|
||||
* [Yazi](https://yazi-rs.github.io/) - Terminal File Manager / [Plugins](https://github.com/sachinsenal0x64/awesome-yazi) / [GitHub](https://github.com/sxyazi/yazi)
|
||||
* [Yazi](https://yazi-rs.github.io/) - Terminal File Manager / [GitHub](https://github.com/sxyazi/yazi)
|
||||
* [One Commander](https://www.onecommander.com/) - File Manager
|
||||
* [Free Commander](https://freecommander.com/) - File Manager
|
||||
* [Q-Dir](https://www.softwareok.com/?seite=Freeware/Q-Dir) - File Manager
|
||||
* [Files](https://files.community/) - Customizable File Manager / Use Classic Installer / [Discord](https://discord.gg/files)
|
||||
* [Explorer++](https://explorerplusplus.com/) - Lightweight Windows File Manager
|
||||
* [Far Manager](https://www.farmanager.com/) - File / Archive Manager
|
||||
* [Total Commander](https://www.ghisler.com/) - Shareware File Manager
|
||||
|
|
@ -115,8 +102,8 @@
|
|||
|
||||
## ▷ File Searching
|
||||
|
||||
* ⭐ **[Everything](https://voidtools.com/)** - File Search Engine
|
||||
* [Recoll](https://www.recoll.org/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.io/) or [Orange](https://0-range.github.io/) - Cross-Platform Search Engines
|
||||
* ⭐ **[Everything](https://voidtools.com/)** - File Search Engine / [Alpha](https://www.voidtools.com/everything-1.5a/)
|
||||
* [Recoll](https://www.recoll.org/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [DocFetcher](https://docfetcher.sourceforge.io/) or [Orange](https://0-range.github.io/) - Cross-Platform Search Engines
|
||||
* [AnyTXT](https://anytxt.net/) or [FluentSearch](https://fluentsearch.net/) - Windows Search Engines
|
||||
* [AstroGrep](https://sourceforge.net/projects/astrogrep/), [grepWin](https://github.com/stefankueng/grepWin) or [dnGrep](https://dngrep.github.io/) - Windows GUI Grep Utilities
|
||||
* [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine
|
||||
|
|
@ -128,10 +115,11 @@
|
|||
## ▷ File Encryption
|
||||
|
||||
* ⭐ **[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
|
||||
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)** - Disk Encrypter
|
||||
* [age](https://github.com/FiloSottile/age) - File Encrypter
|
||||
* [gocryptfs](https://github.com/bailey27/cppcryptfs) - File Encrypter
|
||||
* [Kryptor](https://www.kryptor.co.uk/) - File Encrypter
|
||||
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)** - Disk Encryptor
|
||||
* [age](https://github.com/FiloSottile/age) - File Encryptor
|
||||
* [REM](https://github.com/liriliri/rem) - File Encryptor / Rclone GUI
|
||||
* [gocryptfs](https://github.com/bailey27/cppcryptfs) - File Encryptor
|
||||
* [Kryptor](https://www.kryptor.co.uk/) - File Encryptor
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -176,11 +164,29 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ File Info / Metadata
|
||||
|
||||
* ↪️ **[Image Metadata Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_photo_forensics_.2F_metadata)**
|
||||
* ↪️ **[Audio Metadata Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_audio_metadata)**
|
||||
* ⭐ **[Fileinfo](https://fileinfo.com/)**, [Filext](https://filext.com/) or [OpenMyFiles](https://www.openmyfiles.com/) - File Extension Libraries
|
||||
* ⭐ **[Phockup](https://github.com/ivandokov/phockup)** - Organize Photos / Videos by EXIF Date
|
||||
* [MediaInfo](https://mediaarea.net/en/MediaInfo) - Media File Analysis / Metadata Viewer / [Online](https://mediaarea.net/MediaInfoOnline)
|
||||
* [ExtractMetadata](https://www.extractmetadata.com/), [FilesMD](https://www.filesmd.com/) or [Metadata2Go](https://www.metadata2go.com/) - Metadata Viewers / Editors
|
||||
* [PrivMeta](https://www.privmeta.com/) / [GitHub](https://github.com/DScaife/privmeta/) or [mat2](https://github.com/jvoisin/mat2) / [Web Version](https://0xacab.org/jvoisin/mat2-web) - Remove Metadata from Files
|
||||
* [Attribute Changer](https://www.petges.lu/) - Edit File & Folder Properties
|
||||
* [WhatsLink](https://whatslink.info/) - View File Download Web Metadata
|
||||
* [Magika](https://github.com/google/magika) or [TridUI](https://github.com/JMcrafter26/TridUI) - File Type Detection Tools
|
||||
* [OpenHashTab](https://github.com/namazso/OpenHashTab) - Compare / Display File Hashes
|
||||
* [TagSpaces](https://www.tagspaces.org/) or [Tagging for Windows](https://tagging.connectpaste.com/) - Tag-Based File Systems
|
||||
* [SKTimeStamp](https://tools.stefankueng.com/SKTimeStamp.html) - Change File Created / Modified Time
|
||||
|
||||
***
|
||||
|
||||
## ▷ Formatting / Deletion
|
||||
|
||||
* ⭐ **[SDelete](https://learn.microsoft.com/en-us/sysinternals/downloads/sdelete)** - File Deletion CLI
|
||||
* [Eraser](https://eraser.heidi.ie/), [File Shredder](https://fileshredder.org/), [Alternate File Shredder](https://www.alternate-tools.com/pages/c_fileshredder.php?lang=ENG), [Permadelete](https://developerstree.github.io/permadelete/) or [Delapp](https://github.com/differentrain/Delapp) - File Shredding
|
||||
* [Parted Magic](https://rentry.co/FMHYB64#parted-magic) - Disk Partitioning / Data Recovery
|
||||
* [Parted Magic](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites) (search) - Disk Partitioning / Data Recovery
|
||||
* [SSuite File Shredder and Burner](https://www.ssuiteoffice.com/software/ssuitefileshredder.htm) - File Shredder with Disk Burning
|
||||
* [Low Level Format](https://www.lowlevelformat.info/), [nwipe](https://github.com/martijnvanbrummelen/nwipe) or [ShredOS](https://github.com/PartialVolume/shredos.x86_64) - Complete Hard Drive Erasers
|
||||
* [RED](https://www.jonasjohn.de/red.htm) - Remove Empty Directories
|
||||
|
|
@ -203,7 +209,6 @@
|
|||
# ► PDF Tools
|
||||
|
||||
* [PDFGrep](https://pdfgrep.org/) or [OCRmyPDF](https://github.com/ocrmypdf/OCRmyPDF) - PDF Text Search
|
||||
* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on Google Drive
|
||||
* [PDFEncrypt](https://pdfencrypt.net/) - PDF File Encryption
|
||||
* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs
|
||||
* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover
|
||||
|
|
@ -222,6 +227,7 @@
|
|||
* [BreezePDF](https://breezepdf.com/)
|
||||
* [DigiPDF](https://digipdf.app/?lang=en_US)
|
||||
* [PDF2Go](https://www.pdf2go.com/)
|
||||
* [PDFClear](https://www.pdfclear.com/)
|
||||
* [SimplePDF](https://simplepdf.com/)
|
||||
* [DPDF](https://dpdf.com/)
|
||||
* [Digiparser](https://www.digiparser.com/free-tools/pdf)
|
||||
|
|
@ -230,13 +236,13 @@
|
|||
|
||||
## ▷ Offline PDF Toolkits
|
||||
|
||||
* ⭐ **[PDF24](https://www.pdf24.org/)**
|
||||
* [PDF4QT](https://jakubmelka.github.io/) / [GitHub](https://github.com/JakubMelka/PDF4QT)
|
||||
* [PDFGear](https://www.pdfgear.com/)
|
||||
* [Foxit](https://www.foxit.com/pdf-reader/) / [Pro](https://rentry.co/FMHYB64#foxit) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#foxit-warning)
|
||||
* [xPDFReader](https://www.xpdfreader.com/)
|
||||
* [PDF Arranger](https://github.com/pdfarranger/pdfarranger)
|
||||
* [Stirling-PDF](https://www.stirlingpdf.com/) / [GitHub](https://github.com/Stirling-Tools/Stirling-PDF)
|
||||
* ⭐ **[PDF24](https://www.pdf24.org/)** - Web-Based
|
||||
* [BentoPDF](https://bentopdf.com/) - Web-Based / [GitHub](https://github.com/alam00000/bentopdf)
|
||||
* [PDF4QT](https://jakubmelka.github.io/) - Windows, Linux / [GitHub](https://github.com/JakubMelka/PDF4QT)
|
||||
* [Foxit](https://www.foxit.com/pdf-reader/) - Windows, Linux, Android, iOS, Web-Based / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites) (search) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#foxit-warning)
|
||||
* [xPDFReader](https://www.xpdfreader.com/) - Windows, Mac, Linux
|
||||
* [PDF Arranger](https://github.com/pdfarranger/pdfarranger) - Windows, Linux
|
||||
* [Stirling-PDF](https://www.stirlingpdf.com/) - Windows, Mac, Linux / Signup Required / [GitHub](https://github.com/Stirling-Tools/Stirling-PDF)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -261,6 +267,7 @@
|
|||
* [KDE Connect](https://kdeconnect.kde.org/) - Desktop / Mobile Transfer
|
||||
* [Wormhole](https://wormhole.app/) - Desktop / Mobile Transfer / [Discord](https://discord.com/invite/de6FscsK5Z) / [GitHub](https://github.com/SocketDev)
|
||||
* [Warpinator](https://github.com/linuxmint/warpinator) - Desktop / Mobile Transfer
|
||||
* [Phone Link](https://www.microsoft.com/en-us/windows/sync-across-your-devices) - Desktop / Mobile File Transfer
|
||||
* [Sefirah](https://github.com/shrimqy/Sefirah) - Desktop / Mobile Transfer
|
||||
* [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Desktop / Mobile Transfer / [GitHub](https://github.com/uintdev/qrserv)
|
||||
* [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole) - Desktop / Mobile Transfer
|
||||
|
|
@ -271,6 +278,7 @@
|
|||
* [OnionShare](https://onionshare.org/) - Share Files Over Tor Network
|
||||
* [FileZilla](https://filezilla-project.org/download.php?show_all=1) - FTP Client / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#filezilla)
|
||||
* [WinSCP](https://winscp.net/eng/index.php) - FTP Client
|
||||
* [robocopy](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy) - Windows Built-In File Transfer Guide
|
||||
* IPFS Tools - [Resources](https://awesome.ipfs.tech/), [2](https://github.com/ipfs/awesome-ipfs) / [Extension](https://github.com/ipfs/ipfs-companion) / [Desktop](https://github.com/ipfs/ipfs-desktop) / [IPFS Cluster](https://ipfscluster.io/)
|
||||
|
||||
***
|
||||
|
|
@ -290,14 +298,15 @@
|
|||
|
||||
# ► File Hosts
|
||||
|
||||
* **Note** - Keep in mind that it's **never** a good idea to upload personal or confidential files to any file host, even if they claim to be encrypted. Most file hosts only remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry. Tags are: File Size / Expiry.
|
||||
* **Note** - Keep in mind that it's **never** a good idea to upload personal or confidential files to any file host, even if they claim to be encrypted. Most file hosts only remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry. Tags are: Total Storage (x days w/ acc) / Max File Size / File Expiry (x days w/ acc) / Signup Requirements.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[PolyUpload File Host Index](https://github.com/spel987/PolyUploader?tab=readme-ov-file#-hosts)**
|
||||
* ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)**
|
||||
* ↪️ **[Image File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_image_hosts)**
|
||||
* ⭐ **[Gofile](https://gofile.io/)** - 100GB Monthly / Unlimited / 10 Days After Last Download / [Manager Export](https://greasyfork.org/en/scripts/515250)
|
||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days After Last Download (10% min) / [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz/) / [Bypass Script](https://greasyfork.org/en/scripts/491326)
|
||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days After Last Download (10% min) / [Speedtest](https://pixeldrain.com/speedtest)
|
||||
* ⭐ **[VikingFile](https://vikingfile.com/)** - Unlimited / 15 Days After Last Download / [Discord](https://discord.gg/EPEFC6KkpF)
|
||||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.net/), [3](https://bzzhr.co/) - Unlimited / 15 Days After Last Download / [File Expiry](https://buzzheavier.com/help) / **Use [Adblock](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP)
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / [Proxy](https://fatbox.moe/)
|
||||
|
|
@ -305,14 +314,18 @@
|
|||
* [FileMirage](https://filemirage.com/) - 50GB / 30 Days After Last View
|
||||
* [Send.now](https://send.now/) - 100GB / 15 Days After Last Download
|
||||
* [Transfer.it](https://transfer.it/) / Unlimited / 90 Days / Owned by Mega.nz
|
||||
* [Rootz](https://rootz.so/) - 25GB / 15 Days After Last Download / [Discord](https://discord.com/invite/rtz)
|
||||
* [DesiUpload](https://desiupload.co/) - 15 Days (2GB per file / 30 Days w/ Account)
|
||||
* [udrop](https://www.udrop.com/) - 5GB / 50GB on Signup / Forever
|
||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Sign-Up Required
|
||||
* [Ranoz](https://ranoz.gg/) - 20GB / 30 Days After Last Download
|
||||
* [1fichier.com](https://1fichier.com/) - 300GB / 15 Days (30 Days w/ Account)
|
||||
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#filebin-warning)
|
||||
* [file.kiwi](https://file.kiwi/) - Unlimited / 90 Hours / [File Expiry](https://file.kiwi/en/price)
|
||||
* [Easyupload.io](https://easyupload.io/) - 100GB / 30 Days
|
||||
* [DoraDrop](http://doradrop.com/) - Unlimited / 10GB / Sign-Up Required
|
||||
* [DoraDrop](http://doradrop.com/) - Unlimited / 5GB / Sign-Up Required
|
||||
* [UpZur](https://upzur.com/) - 5GB / 1.95TB / 120 Days After Last Download / Sign-Up Required
|
||||
* [UploadHive](https://uploadhive.com/) - Unlimited / 30 Days After Last Download / Use Adblock
|
||||
* [FEX.NET](https://fex.net/) - 100GB / 7 Days
|
||||
* [DropMeFiles](https://dropmefiles.com/) - 50GB / 14 Days
|
||||
* [MixLoads](https://mixloads.to/) - 25.6GB / 2TB / 60 Days After Last Download / Sign-Up Required
|
||||
|
|
@ -322,22 +335,23 @@
|
|||
* [Drop Download](https://drop.download/) - 25GB / 90 Days / Sign-Up Required
|
||||
* [SwissTransfer](https://www.swisstransfer.com/) - 50GB / 30 Days / 250 Downloads
|
||||
* [Filecad](https://www.filecad.com/) - 10GB / 120 Days
|
||||
* [Dfiles](https://dfiles.com/) - 10GB / 90 Days
|
||||
* [BowFile](https://bowfile.com/) - 20GB / 20 Days
|
||||
* [TheUserCloud](https://theuser.cloud/) - 10GB / 60 Days
|
||||
* [Gulfup](https://www.gulf-up.com/) - 10GB / 30 Days / Sign-Up Required
|
||||
* [Hexupload](https://hexload.com/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
||||
* [Tempcloud](https://temp.kotol.cloud/) - 10GB / 3 Days
|
||||
* [GrosFichiers](https://www.grosfichiers.com/) or [DataTransfer](https://www.datatransfer.com/) - 10GB / 14 Days
|
||||
* [ShareFile](https://sharefile.co/), [2](https://gofile.to/) - 5GB / Unlimited
|
||||
* [FileFast](https://filefa.st/), [2](https://gofile.to/) - 5GB / Unlimited
|
||||
* [Akira Box](https://akirabox.com/), [2](https://akirabox.to/) - 20GB Free / 30 Days After Last Download / Sign-Up Required
|
||||
* [FileTransfer.io](https://filetransfer.io/) - 6GB / 21 Days / 50 Downloads
|
||||
* [udrop](https://www.udrop.com/) - 5GB / Forever
|
||||
* [Imagenetz](https://www.imagenetz.de/?setLang=en) - 5GB / 30 Days After Last Download
|
||||
* [Filefast](https://filefa.st/) - 5GB / Forever
|
||||
* [FilePort](https://fileport.io/) - 5GB / 7 Days
|
||||
* [FileDitch](https://fileditch.com/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days
|
||||
* [MegaUp](https://megaup.net/) - 5GB / 60 Days
|
||||
* [DataVaults](https://datavaults.co/) - 5GB / 15GB / 7 Days After Last Download / Sign-Up Required
|
||||
* [Bestfile](https://bestfile.io/) - 5GB / 80 Days After Last Download
|
||||
* [UpZur](https://upzur.com/) - 5GB / 1.95TB / 120 Days After Last Download / Sign-Up Required
|
||||
* [ufile.io](https://ufile.io/) - 5GB / 30 Days
|
||||
* [Internxt Send](https://send.internxt.com/) - 5GB / 15 Days
|
||||
* [UserDrive](https://usersdrive.com/) - 5GB / 65 Days
|
||||
|
|
@ -370,7 +384,7 @@
|
|||
***
|
||||
|
||||
* 🌐 **[Eylenburg Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** or [ComparisonTabl.es](https://comparisontabl.es/cloud-storage/) - Compare Cloud Storage Sites
|
||||
* ⭐ **[Google Drive](https://drive.google.com/)** - 15GB Free / 2 Years / ~$3 for 1TB
|
||||
* ⭐ **[Google Drive](https://drive.google.com/)** - 15GB Free / 2 Years
|
||||
* ⭐ **[mega](https://mega.io/)** - 20GB Free / 3 Months / ~$4.50 for 1TB / [GitHub](https://github.com/meganz)
|
||||
* [disk.yandex](https://disk.yandex.com/) - 5GB Free / 2 Years / $2 for 1TB
|
||||
* [filen](https://filen.io/) - 10GB Free / 3 Months / ~$8 for 1TB / Sign-Up Required for Sharing
|
||||
|
|
@ -385,7 +399,7 @@
|
|||
* [FileLu](https://filelu.com/) - 10GB / Forever / **[Expiry Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#filelu-warning)**
|
||||
* [CyberFile](https://cyberfile.me/) - 10GB Free
|
||||
* [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16 for 1TB
|
||||
* [Blomp](https://www.blomp.com/) - 20GB Free / 1 Month / ~$3 for 2TB
|
||||
* [Blomp](https://www.blomp.com/) - 40GB Free / 1 Month / ~$3 for 2TB
|
||||
* [Backblaze B2](https://www.backblaze.com/cloud-storage/) - 10GB Free / ~$6 for 1TB
|
||||
* [Cloudflare R2](https://www.cloudflare.com/developer-platform/products/r2/) - 10GB Free / ~$15.5 per 1TB
|
||||
* [1Cloud File](https://1cloudfile.com/) - 10GB Free
|
||||
|
|
@ -397,7 +411,7 @@
|
|||
## ▷ Cloud Managers
|
||||
|
||||
* ⭐ **[Rclone](https://rclone.org/)** - Cloud Storage Manager
|
||||
* ⭐ **Rclone Tools** - [Guide](https://rentry.co/simple-rclone-usage) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool) / [Telegram](https://t.me/rclonexbot)
|
||||
* ⭐ **Rclone Tools** - [Guide](https://rentry.co/simple-rclone-usage) / [GUI](https://github.com/liriliri/rem) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool) / [Telegram](https://t.me/rclonexbot)
|
||||
* ⭐ **[gclone](https://github.com/dogbutcat/gclone)** - Cloud Storage Manager
|
||||
* ⭐ **[Air Explorer](https://airexplorer.net/en/)** - Cloud Storage Manager
|
||||
* ⭐ **[RaiDrive](https://www.raidrive.com/)** - Cloud Storage Manager
|
||||
|
|
@ -423,7 +437,6 @@
|
|||
* [gdurl](https://gdurl.com/), [GDrive Link Generator](https://www.wonderplugin.com/online-tools/google-drive-direct-link-generator/), [Direct.GDrive](https://direct.gdrive.vip/en/), [Maulvi](https://maulvi.github.io/) or [GDriveWebAppPublic](https://github.com/CloudflareHackers/GDriveWebAppPublic) - GDrive Link Generators / Host Direct Links
|
||||
* [Google Drive Clone Bot](https://jsmsj.github.io/GdriveCloneBot/) - Copy Google Drives / [GitHub](https://github.com/jsmsj/GdriveCloneBot)
|
||||
* [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC
|
||||
* [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive
|
||||
* [DriveRename](https://driverename.iblogbox.com/) - Bulk Google Drive File Rename
|
||||
* [Sharer](https://sharer.pw), [YuShare](https://yushare.my.id) or [GDToT](https://new10.gdtot.dad) - Google Drive File Sharing
|
||||
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@
|
|||
* [Moonlight](https://moonlight-stream.org/) - Gaming Remote Desktop Client / [Discord](https://discord.com/invite/CGg5JxN) / [GitHub](https://github.com/moonlight-stream)
|
||||
* [Arcade Database](https://zenius-i-vanisher.com/v5.2/arcades.php) - Arcade Game Map + Database
|
||||
* [Lets Play Index](https://www.letsplayindex.com/) - Index of Lets Plays / Longplays
|
||||
* [TASVideos](https://tasvideos.org/) - TAS Video Community / Resources / [Emulator Resources](https://tasvideos.org/EmulatorResources) / [Game Resources](https://tasvideos.org/GameResources)
|
||||
* [VGHF Digital Archive](https://library.gamehistory.org/) - Historical Documents, Magazines, Transcripts, etc. / [Archive](http://archive.gamehistory.org/)
|
||||
* [NIWA](https://www.niwanetwork.org/) - Nintendo Independent Wiki Alliance / [Discord](https://discord.gg/59Mq6qB)
|
||||
* [Gog To Free](https://greasyfork.org/en/scripts/481134) - Add Piracy Site Links to GOG Store
|
||||
|
|
@ -28,7 +29,7 @@
|
|||
* [Archiverse](https://archiverse.pretendo.network/) - Miiverse Archive
|
||||
* [Better xCloud](https://better-xcloud.github.io/) - Add Features to xCloud / [GitHub](https://github.com/redphx/better-xcloud)
|
||||
* [Buzz In](https://buzzin.live/) - Online Buzzer System
|
||||
* [Challonge](https://challonge.com/) or [Lorenzi's Game Boards](https://gb.hlorenzi.com/) - Tournament Creators / Managers
|
||||
* [Challonge](https://challonge.com/) or [Lorenzi's Game Boards](https://gb.hlorenzi.com/) - Tournement Creators / Managers
|
||||
* [Moments](https://steelseries.com/gg/moments), [Medal](https://medal.tv/) / [Premium Bypass](https://medalbypass.vercel.app/) or [RePlays](https://github.com/lulzsun/RePlays) - Game Recording Tools
|
||||
* [Keystrokes](https://www.deviantart.com/jaxoriginals/art/Keystrokes-v1-3-889349339) - Keystrokes Overlay
|
||||
* [PSNProfiles](https://psnprofiles.com/) - Trophy Guide / PSN Profile Viewer
|
||||
|
|
@ -37,10 +38,10 @@
|
|||
* [CSDb](https://csdb.dk/) or [GB64](https://gb64.com/index.php) - Commodore 64 Resources
|
||||
* [Awesome J2ME](https://github.com/hstsethi/awesome-j2me) - J2ME Resources
|
||||
* [GARbro](https://github.com/morkt/GARbro/) - Browse / Extract Visual Novel Resources
|
||||
* [LunaTranslator](https://docs.lunatranslator.org/en/) - Visual Novel Translator / [GitHub](https://github.com/HIllya51/LunaTranslator)
|
||||
* [ConceptArt](https://vk.com/conceptart) - Video Game Concept Art
|
||||
* [r/CrackWatch](https://www.reddit.com/r/CrackWatch/), [r/RepackWorld](https://reddit.com/r/RepackWorld), [GameStatus](https://gamestatus.info/) or [GitGud](https://discord.gg/APfesEBjjn) - Scene Release Trackers
|
||||
* [How Denuvo Works](https://rentry.co/FMHYB64#how-denuvo-works)
|
||||
* [Game Cracking / Repacking Guides](https://rentry.co/FMHYB64#game-guides)
|
||||
* [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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -56,6 +57,7 @@
|
|||
* [OpenGamepadUI](https://github.com/ShadowBlip/OpenGamepadUI) - Gamepad Native Launcher
|
||||
* [TwintailLauncher](https://twintaillauncher.app/) - Game Launcher / Mod Engine for F2P Anime Games / [GitHub](https://github.com/TwintailTeam/TwintailLauncher)
|
||||
* [JackboxUtility](https://jackboxutility.com/) - Jackbox Games Launcher / [Discord](https://discord.gg/ffKMZeb88m) / [GitHub](https://github.com/JackboxUtility/JackboxUtility)
|
||||
* [Starward](https://github.com/Scighost/Starward) - HoYoverse Game Launcher
|
||||
* [GameVault](https://gamevau.lt) - Self-Hosted Gaming Platform / [Discord](https://discord.gg/NEdNen2dSu) / [GitHub](https://github.com/Phalcode/gamevault-app)
|
||||
|
||||
***
|
||||
|
|
@ -64,22 +66,24 @@
|
|||
|
||||
* 🌐 **[Nvidia Overclocking](https://github.com/LunarPSD/NvidiaOverclocking/blob/main/Nvidia%20Overclocking.md)** - Nvidia Overclocking Resources
|
||||
* ⭐ **[SpecialK](https://www.special-k.info/)** - Game Optimization Tool / [Discord](https://discord.gg/specialk) / [GitHub](https://github.com/SpecialKO/SpecialK)
|
||||
* ⭐ **[MSI Afterburner](https://www.msi.com/Landing/afterburner)**, [GPU Tweak III](https://www.asus.com/campaign/GPU-Tweak-III/index.php) or [EVGA Precision X1](https://www.evga.com/precisionx1/) / [Note](https://ibb.co/VSYtdTW) - Overclocking / [Guide](https://docs.google.com/document/d/14ma-_Os3rNzio85yBemD-YSpF_1z75mZJz1UdzmW8GE/)
|
||||
* ⭐ **[MSI Afterburner](https://www.msi.com/Landing/afterburner)** - Overclocking Tool / Hardware Monitor
|
||||
* ⭐ **[MSI Kombustor](https://www.geeks3d.com/furmark/kombustor/)** - GPU Benchmark Test
|
||||
* ⭐ **[ProSettings](https://prosettings.net/)**, [SweetFX](https://sfx.thelazy.net/) or [ENBSeries](http://enbdev.com) - Game Setting Guides
|
||||
* ⭐ **[DisplayMagician](https://displaymagician.littlebitbig.com/)** or [AutoActions](https://github.com/Codectory/AutoActions) - Per-Game Display Profiles
|
||||
* ⭐ **[Lossless Scaling](https://rentry.co/FMHYB64#lossless-scaling)**, **[Magpie](https://github.com/Blinue/Magpie)**, [OptiScaler](https://github.com/optiscaler/OptiScaler) or [DLSS2FSR](https://discord.com/invite/2JDHx6kcXB) - Game Upscaling
|
||||
* ⭐ **[Lossless Scaling](https://fmhy.net/gaming#download-games)** (search), **[Magpie](https://github.com/Blinue/Magpie)** or [OptiScaler](https://github.com/optiscaler/OptiScaler) - Game Upscaling
|
||||
* [SystemRequirementsLab](https://www.systemrequirementslab.com/cyri/) or [PCGameBenchmark](https://www.pcgamebenchmark.com/) - Game Requirements Tests
|
||||
* [SweetFX](https://sfx.thelazy.net/) or [ENBSeries](http://enbdev.com) - Game Setting Guides
|
||||
* [RagnoTech Optimization Catalog](https://ragnos1997.com/optimization-catalog/) or [TroubleChute](https://www.youtube.com/c/TroubleChute/featured) - Gaming Optimization Guides
|
||||
* [cancerogenoslab](https://sites.google.com/view/cancerogenoslab/) or [MikeMartin](https://www.mikemartin.co/) - FPS / Latency Guides
|
||||
* [Fraps](https://fraps.com/), [OCAT](https://gpuopen.com/ocat/) / [GitHub](https://github.com/GPUOpen-Tools/ocat), [RTSS](https://www.guru3d.com/files-details/rtss-rivatuner-statistics-server-download.html), [CapFrameX](https://www.capframex.com/) or [Game Bar](https://rentry.co/WindowsFPS) - FPS Monitors
|
||||
* [SSTap](https://github.com/FQrabbit/SSTap-Rule) - Decrease Ping
|
||||
* [r/OptimizedGaming](https://www.reddit.com/r/OptimizedGaming/) - Game Optimization Community
|
||||
* [GPU Tweak III](https://www.asus.com/campaign/GPU-Tweak-III/index.php) or [EVGA Precision X1](https://www.evga.com/precisionx1/) / [Note](https://ibb.co/VSYtdTW) - Overclocking Tools / [Guide](https://docs.google.com/document/d/14ma-_Os3rNzio85yBemD-YSpF_1z75mZJz1UdzmW8GE/)
|
||||
* [Overclock](https://www.overclock.net/) - Overclocking Forum
|
||||
* [Ryzen Master Utility](https://www.amd.com/en/products/software/ryzen-master.html) - Overclocking Control for Ryzen Desktop CPU
|
||||
* [AMD-APU-Tuning-Utility](https://github.com/JamesCJ60/Universal-x86-Tuning-Utility) - AMD APU Tuning
|
||||
* [DLSS Swapper](https://github.com/beeradmoore/dlss-swapper) - Download, Manage & Swap DLSS
|
||||
* [dgVoodoo2](http://dege.freeweb.hu/dgVoodoo2/) - Glide & DirectX Graphics Wrapper
|
||||
* [dxvk-gplasync](https://gitlab.com/Ph42oN/dxvk-gplasync/) - DXVK Fork w/ Async / Vulkan-Based Direct3D / Stutter Reduction
|
||||
* [VibranceGUI](https://vibrancegui.com/) - Automate Digital Vibrance Control
|
||||
* [Vuenxx](https://discord.gg/ASZjqrjWYf) - Free FSR 3 Mods / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vuenxx-note)
|
||||
* [ReShade](https://reshade.me/) - Generic Post-Processing Injector / [Easy Installer](https://github.com/OopyDoopy/ReShade-Centralized) / [Shaders](https://github.com/BlueSkyDefender/Depth3D) / [Discord](https://discord.com/invite/PrwndfH) / [GitHub](https://github.com/crosire/reshade)
|
||||
|
|
@ -100,8 +104,9 @@
|
|||
* [DsHidMini](https://docs.nefarius.at/projects/DsHidMini/) - Use PS3 Controllers on Windows
|
||||
* [JoyToKey](https://joytokey.net/en/) - Controller Emulator
|
||||
* [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays
|
||||
* [Gamepad-Tester](https://hardwaretester.com/gamepad) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers
|
||||
* [Gamepad-Tester](https://hardwaretester.com/gamepad) or [Test Gamepad](https://testgamepad.online/) - Online Controller Testers
|
||||
* [DualSense Tester](https://ds.daidr.me/) - Web DualSense Tester / [GitHub](https://github.com/daidr/dualsense-tester)
|
||||
* [Calibration GUI](https://dualshock-tools.github.io/) - Web DualSense Calibration Tool / Chromium Required / [GitHub](https://github.com/dualshock-tools/dualshock-tools.github.io)
|
||||
* [hidusbf](https://github.com/LordOfMice/hidusbf) - Decrease DS4/5 Input Lag / [Video](https://youtu.be/x0wcJM4FtXQ)
|
||||
* [HidHide](https://docs.nefarius.at/projects/HidHide/) - Input Device Firewall
|
||||
* [Whitescent Engine](https://apt.izzysoft.de/fdroid/index/apk/com.github.whitescent.engine) - Use Phone as Joy Stick / [GitHub](https://github.com/whitescent/Engine)
|
||||
|
|
@ -124,16 +129,18 @@
|
|||
* ⭐ **[GameBanana](https://gamebanana.com/)** - Game Mods / [Discord](https://discord.com/invite/h5xJv9M)
|
||||
* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/)
|
||||
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** / [Discord](https://discord.com/invite/S99Ary5eba) or [Step Modifications](https://stepmodifications.org/) - Bethesda Game Modding Guides
|
||||
* [WeMod](https://www.wemod.com/) - Mods / Trainer Manager / Single Player Only / [Unlocker](https://rentry.co/FMHYB64#wemod) / [Discord](https://discord.com/invite/wemod)
|
||||
* [Wand](https://www.wemod.com/) - Mods / Trainer Manager / Single Player Only / [Unlocker](https://cs.rin.ru/forum/index.php) (search) / [Discord](https://discord.com/invite/wemod)
|
||||
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager
|
||||
* [Otis_Inf Camera Mods](https://kemono.cr/patreon/user/37343853) or [CinematicTools Archive](https://rentry.co/FMHYB64#cinematictools-archive) - Game Camera Mods
|
||||
* [Otis_Inf Camera Mods](https://kemono.cr/patreon/user/37343853) - Game Camera Mods
|
||||
* [Mod.io](https://www.mod.io/) - Cross-Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
||||
* [WabbaJack](https://www.wabbajack.org/) - Automated Modlist Installer / [Fixes](https://rentry.co/FMHYB64#wabbajack) / [Discord](https://discord.com/invite/wabbajack)
|
||||
* [WabbaJack](https://www.wabbajack.org/) - Automated Modlist Installer / [Discord](https://discord.com/invite/wabbajack)
|
||||
* [ModWorkshop](https://modworkshop.net/) - Game Mods / [Discord](https://discord.com/invite/Eear4JW)
|
||||
* [GameFront](https://gamefront.com/) - Game Mods / [Discord](https://discord.com/invite/gamefront)
|
||||
* [Video Game Mods](https://videogamemods.com/) - Game Mods / [Discord](https://discord.com/invite/C2JussB8hk)
|
||||
* [SMods](https://catalogue.smods.ru/) - Game Mods
|
||||
* [MrAntiFun](https://mrantifun.net/) - Game Mods / Trainers
|
||||
* [FearlessRevolution](https://fearlessrevolution.com/) - Game Mods / Trainers
|
||||
* [CheatRevolution](https://cheatevolution.com/) - Game Mods / Trainers
|
||||
* [Silent's Blog](https://cookieplmonster.github.io/mods/index/) - Game Mods / Patches
|
||||
* [FlingTrainer](https://flingtrainer.com/) - Game Mods / Trainers / Single Player Games Only
|
||||
* [GameCopyWorld](https://www.gamecopyworld.com/), [2](https://gamecopyworld.eu/) - Game Patchers / Trainers / Single Player Games Only
|
||||
|
|
@ -190,18 +197,20 @@
|
|||
* ⭐ **[GamingSmart](https://gamingsmart.com/)**, [Sens Covnerter](https://kovaaks.com/kovaaks/sens-converter), [Sens Converter](https://sensconverter.online/) or [Mouse Sensitivity](https://www.mouse-sensitivity.com/) - Game Sensitivity Converters / Tools
|
||||
* ⭐ **[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.
|
||||
* [Steam Guides](https://steamcommunity.com/guides), [GameGuides](https://www.gamerguides.com/), [DotGG](https://dotgg.gg/), [Retro Guides](https://rentry.co/FMHYB64#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
|
||||
* [Steam Guides](https://steamcommunity.com/guides), [GameGuides](https://www.gamerguides.com/), [DotGG](https://dotgg.gg/), [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
|
||||
* [Voltaic](https://voltaic.gg/) - Aim Benchmark & Guides
|
||||
* [Piper](https://github.com/libratbag/piper) - Gaming Mouse Config Tool
|
||||
* [Onboard Memory Manager](https://support.logi.com/hc/en-gb/articles/360059641133-Onboard-Memory-Manager) - Modify Logitech G Mouse Memory
|
||||
* [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer
|
||||
* [The Manual Project](https://vimm.net/manual), [ReplacementDocs](http://replacementdocs.com/) or [GamesDatabase](https://www.gamesdatabase.org/) - Game Manuals
|
||||
* [Sym.gg](https://sym.gg/) - FPS Game Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP)
|
||||
* [SNES Manuals](https://sites.google.com/view/snesmanuals) - SNES Game Manuals
|
||||
* [LineupsValorant](https://lineupsvalorant.com/) - Valorant Lineups Database
|
||||
* [Ukikipedia](https://ukikipedia.net/) - SM64 Speedrunning Wiki
|
||||
* [FOUR.lol](https://four.lol/) - Tetris Openers Wiki
|
||||
* [Underdogs Cup Lounge](https://discord.gg/QCbC9cA) - Tetris Resources & Coaching Discord
|
||||
* [Fumen](https://harddrop.com/fumen/) - Tetris Field Editor
|
||||
* [Puyonexus](https://puyonexus.github.io/puyosim/) / [2](https://puyonexus.com/chainsim/) or [puyo.gg sim](https://www.puyo.gg/simulator/) - Puyo Puyo Chain Simulators
|
||||
* [Puyonexus](https://puyonexus.com/chainsim/) or [puyo.gg sim](https://www.puyo.gg/simulator/) - Puyo Puyo Chain Simulators
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -248,6 +257,7 @@
|
|||
* [Unseen64](https://www.unseen64.net/) - Cancelled / Lost Games
|
||||
* [Internet Game Cars Database](https://igcd.net/) - Game Vehicle Database
|
||||
* [Incendar](https://incendar.com/) - Game Release Date Tracker
|
||||
* [Yamtrack](https://github.com/FuzzyGrim/Yamtrack) - Self-Hosted Media Tracker
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -275,6 +285,7 @@
|
|||
* [Steam Mover](https://www.traynier.com/software/steammover) - Store Steam Games on Multiple Drives
|
||||
* [Steam Rom Manager](https://github.com/SteamGridDB/steam-rom-manager) - Add ROMs to Steam
|
||||
* [BoilR](https://github.com/PhilipK/BoilR) - Sync Game Platforms with Steam
|
||||
* [Achievement-Watcher](https://github.com/darktakayanagi/Achievement-Watcher) - Multi-Platform Achievement Parser
|
||||
* [SteamAchievementManager](https://github.com/gibbed/SteamAchievementManager) - Steam Achievement Manager
|
||||
* [SteamHunters](https://steamhunters.com/) / [Discord](https://discord.com/invite/SeJ25Xv) or [TrueSteamAchievements](https://truesteamachievements.com/) - Steam Achievement Tracking / Leaderboards / Profiles
|
||||
* [SteamID](https://steamid.io/) / [2](https://steamid.uk/), [SteamDetective](https://steamdetective.com/) or [SteamFinder](https://steamidfinder.com/) - Steam ID Lookup
|
||||
|
|
@ -306,14 +317,13 @@
|
|||
## ▷ DLC Unlock / DRM Bypass
|
||||
|
||||
* ⭐ **[CreamAPI](https://cs.rin.ru/forum/viewtopic.php?t=70576)** - Steam DLC Unlocker / [Auto Setup](https://github.com/Warwolfer/auto-creamapi-2)
|
||||
* ⭐ **[GreenLuma](https://cs.rin.ru/forum/viewtopic.php?f=29&t=103709)** - Offline Steam DRM Bypass / DLC Unlocker / [Manager](https://github.com/BlueAmulet/GreenLuma-2024-Manager) / [Family Bypass Guide](https://rentry.org/gzny948p)
|
||||
* ⭐ **[GreenLuma](https://cs.rin.ru/forum/viewtopic.php?f=29&t=103709)** - Steam DLC Unlocker / [Manager](https://github.com/3vil3vo/GreenLuma-Manager), [2](https://github.com/BlueAmulet/GreenLuma-2024-Manager) / [Family Bypass Guide](https://rentry.org/gzny948p)
|
||||
* ⭐ **[Unsteam](https://cs.rin.ru/forum/viewtopic.php?f=20&t=134707&hilit=unsteam)** - Online Steam DRM Bypass / Cracked Servers Only / Multiplayer Emulator
|
||||
* ⭐ **[Steamless](https://github.com/atom0s/Steamless)** - Steam DRM Remover
|
||||
* ⭐ **[Goldberg Fork](https://github.com/Detanup01/gbe_fork)** / [Guide](https://rentry.co/goldberg_emulator) or [SmartSteamEmu](https://cs.rin.ru/forum/viewtopic.php?f=29&t=62935&sid=c6b5dadd40d56ac20a8789121bb743c5) - Offline Steam / Multiplayer Emulators
|
||||
* ⭐ **[Steam-Auto-Crack](https://github.com/SteamAutoCracks/Steam-auto-crack)** or [SteamAutoCracker](https://github.com/BigBoiCJ/SteamAutoCracker) - Auto Apply Goldberg + Steamless / [Guide](https://codeberg.org/fernbacher/How-To-Crack)
|
||||
* [Koalageddon](https://github.com/acidicoala/Koalageddon/) - DLC Unlocker for Origin, EA & Uplay
|
||||
* ⭐ **[Steam-Auto-Crack](https://github.com/SteamAutoCracks/Steam-auto-crack)** or [SteamAutoCracker](https://github.com/BigBoiCJ/SteamAutoCracker) / [GUI](https://github.com/harryeffinpotter/Steam-Autocracker-GUI/) - Auto Apply Cracks / [Guide](https://codeberg.org/fernbacher/How-To-Crack)
|
||||
* [Koalageddon](https://github.com/KA4I/Koalageddon) - DLC Unlocker for Origin, EA, Uplay & Steam
|
||||
* [DreamAPI](https://cs.rin.ru/forum/viewtopic.php?f=10&t=111520) - DLC Unlocker for Origin and EA
|
||||
* [Anadius](https://rentry.co/FMHYB64#anadius) - DLC Unlockers for EA and Origin
|
||||
* [ScreamAPI](https://github.com/acidicoala/ScreamAPI) - Epic DLC Unlocker
|
||||
|
||||
***
|
||||
|
|
@ -321,12 +331,11 @@
|
|||
## ▷ Store Tools
|
||||
|
||||
* ⭐ **[SteamDB](https://steamdb.info/)** / [Extension](https://steamdb.info/extension/) / [Discord](https://discord.com/invite/steamdb), [Steam250](https://steam250.com/) or [Steambase](https://steambase.io/) / [Extension](https://chromewebstore.google.com/detail/better-steam/iobagpbkbdkobggejjcnidehfenchpec) - Steam Insight Tools
|
||||
* [EGData](https://egdata.app/) - Epic Games Insight Tools / [Discord](https://github.com/nachoaldamav/egdata)
|
||||
* [EGData](https://egdata.app/) - Epic Games Insight Tools / [GitHub](https://github.com/nachoaldamav/egdata)
|
||||
* [AugmentedSteam](https://augmentedsteam.com/) - Steam Web Enhancement Extension
|
||||
* [SteamScout](https://www.togeproductions.com/SteamScout/) - Steam Review Analyzer
|
||||
* [Steam Link Dropdown](https://greasyfork.org/en/scripts/523078) - Add Piracy Site Links to Steam Store
|
||||
* [UWPHook](https://briano.dev/UWPHook/) - Add Windows Store Games to Steam
|
||||
* [Wishlist Removals](https://steamcommunity.com/sharedfiles/filedetails/?id=1746978201) - Remove Hidden Items from Steam Wishlist
|
||||
* [Steam URL Opener](https://github.com/veteran29/steam-url-open-extension) - Open URLs Inside Steam Client
|
||||
* [Steam Age Bypass](https://greasyfork.org/en/scripts/18450-steam-bypass-age-confirmation-prompts) - Bypass Age Confirmation
|
||||
* [Steam Currency Converter](https://github.com/Solidet-com/steam-currency-converter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#steam-currency-converter-note) - Steam Currency Converter
|
||||
|
|
@ -337,8 +346,9 @@
|
|||
|
||||
* ⭐ **[WorkshopDL](https://github.com/imwaitingnow/WorkshopDL)**
|
||||
* [Nether Workshop Downloader](https://github.com/NethercraftMC5608/NetherWorkshopDownloader) / [Discord](https://discord.com/invite/bs9TMxMJk9)
|
||||
* [Streamline](https://github.com/dane-9/Streamline-Workshop-Downloader)
|
||||
* [GGNTW](https://ggntw.com/steam)
|
||||
* [SCMD](https://github.com/BerdyAlexei/SCMD-Workshop-Downloader-2)
|
||||
* [Streamline](https://github.com/dane-9/Streamline-Workshop-Downloader)
|
||||
* [Steam Workshop Downloader](https://github.com/shadoxxhd/steamworkshopdownloader)
|
||||
* [Wallpaper EngineWorkshop Downloader](https://github.com/SteamAutoCracks/WallpaperEngineWorkshopDownloader)
|
||||
* [Steamworkshop.download](http://steamworkshop.download/) - Web-Based
|
||||
|
|
@ -358,7 +368,6 @@
|
|||
## ▷ Multiplayer Fixes
|
||||
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - Online / LAN Multiplayer Fix / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[Playit.gg](https://playit.gg/)** - Dedicated Servers / LAN Multiplayer Fix / [Discord](https://discord.gg/AXAbujx)
|
||||
* ⭐ **[ZeroTier](https://www.zerotier.com/)** - LAN Multiplayer Fix
|
||||
* [Radmin](https://www.radmin-vpn.com/) - Dedicated Servers / LAN Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96)
|
||||
* [Hamachi](https://vpn.net/) - Dedicated Servers / LAN Multiplayer Fix
|
||||
|
|
@ -387,7 +396,7 @@
|
|||
* [NV:MP](https://nv-mp.com/) - Fallout: New Vegas Multiplayer / [Discord](https://discord.com/invite/mKVdhmEDrW)
|
||||
* [Nitrox](https://nitrox.rux.gg/) - Subnautica Multiplayer Mod / [Subreddit](https://www.reddit.com/r/SubnauticaNitrox/) / [Discord](https://discord.gg/E8B4X9s) / [GitHub](https://github.com/SubnauticaNitrox/Nitrox)
|
||||
* [BeamMP](https://beammp.com/) - BeamNG Multiplayer / [GitHub](https://github.com/BeamMP/BeamMP)
|
||||
* [Fika](https://project-fika.gitbook.io/wiki) - Play Single Player Tarkov Co-Op / Requires Legit Game
|
||||
* [Fika](https://project-fika.gitbook.io/wiki) - Play Single Player Tarkov Co-Op
|
||||
* [OnlineCTR](https://www.online-ctr.com/) - Crash Team Racing Multiplayer
|
||||
* [CnCNet](https://cncnet.org/) - Multiplayer Command & Conquer / [Discord](https://discord.com/invite/aJRJFe5)
|
||||
* [Old School RuneScape](https://oldschool.runescape.com/) - Classic Runescape / [Discord](https://discord.com/invite/osrs)
|
||||
|
|
@ -417,7 +426,6 @@
|
|||
* [R1Delta](https://r1delta.net/) - Titanfall 1 Server Revival / [Discord](https://discord.com/invite/AFnMwrvPzV)
|
||||
* [FXPGunZ](https://fxpgunz.com/) - GunZ Multiplayer Revival
|
||||
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Servers / [Discord](https://discord.com/invite/UBAZFys)
|
||||
* [Arctic Combat](https://warfareterritory.net/) - Arctic Combat Server Revival / [Discord](https://discord.com/invite/7aw6grzSgj)
|
||||
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
|
||||
* [Clash of Magic](https://www.clashofmagic.io/) / [Discord](https://discord.gg/clashofmagic) 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)
|
||||
|
|
@ -464,7 +472,7 @@
|
|||
* ⭐ **[r/SwitchPirates Wiki](https://www.reddit.com/r/SwitchPirates/wiki/index/)** or **[Switch Hacks Guide](https://switch.hacks.guide/)** (anti-piracy) - Homebrew Guides
|
||||
* ⭐ **[Homebrew App Store](https://hb-app.store/)** - Switch / Wii U Homebrew App Store
|
||||
* [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
|
||||
* [LAN Play Status](http://www.lan-play.com/) or [Switch-LAN-Play](https://github.com/spacemeowx2/switch-lan-play) / [Discord](https://discord.gg/PUEmfV4) - Switch Multiplayer Servers
|
||||
* [FlagBrew](https://github.com/FlagBrew) - Switch Homebrew Apps / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
||||
* [NSP Forwarder](https://nsp-forwarder.n8.io/) - Switch NSP Forwarder
|
||||
* [Switch Army Knife](https://www.gamebrew.org/wiki/Switch_Army_Knife) - Switch File Converter
|
||||
|
|
@ -493,7 +501,7 @@
|
|||
|
||||
## ▷ 3DS / DS Homebrew
|
||||
|
||||
* 🌐 **[DS Homebrew](https://ds-homebrew.com/)** - DS Homebrew Resources / [Wiki](https://wiki.ds-homebrew.com/) / [Discord](https://discord.com/invite/yD3spjv)
|
||||
* 🌐 **[DS Homebrew](https://ds-homebrew.com/)** - DS / 3DS Homebrew Resources / [Wiki](https://wiki.ds-homebrew.com/) / [Discord](https://discord.com/invite/yD3spjv)
|
||||
* ⭐ **[3DS Jailbreak Guide](https://3ds.hacks.guide/)** - 3DS Jailbreak Guide
|
||||
* ⭐ **[DSi Jailbreak Guide](https://dsi.cfw.guide/)** - DSi Jailbreak Guide
|
||||
* ⭐ **[Wiimmfi](https://wiimmfi.de/)** or [Kaeru Team](https://kaeru.world/) - DS Multiplayer Servers
|
||||
|
|
@ -512,7 +520,7 @@
|
|||
|
||||
## ▷ Playstation Homebrew
|
||||
|
||||
* ⭐ **[PS4 Modding](https://www.youtube.com/watch?v=8-dMXW7XZjA)** - PS4 Jailbreak Guides
|
||||
* ⭐ **[PS4 Modding](https://www.youtube.com/playlist?list=PLn7ji3VsPy3FRxLrjz5ScpvpTirAxQ3me)** - PS4 Jailbreak Guides
|
||||
* ⭐ **[Vita Hacks Guide](https://vita.hacks.guide/)** - Vita Jailbreak Guide
|
||||
* [PSX Place](https://www.psx-place.com/) or [PSX Hax](https://www.psxhax.com/) - Playstation Homebrew Forums
|
||||
* [PSDevWiki](https://www.psdevwiki.com/) - Playstation Dev / Homebrew Wiki
|
||||
|
|
@ -542,7 +550,7 @@
|
|||
|
||||
* 🌐 **[Steam Deck Mods](https://docs.google.com/document/d/1TWhN9nCorKxut5O7UbPQPDhXLb-8C-CIoesB01yfhmY/)** - Steam Deck Mods / [Discord](https://discord.com/invite/SteamDeck)
|
||||
* ⭐ **[Decky Loader](https://decky.xyz/)** - Steam Deck Plugin Loader / [Plugins](https://plugins.deckbrew.xyz/) / [GitHub](https://github.com/SteamDeckHomebrew/decky-loader)
|
||||
* [Steam Deck Guide](https://main.steamdeck.guide/), [2](https://steamdeck.guide/) - Steam Deck Guide / Resources / [GitHub](https://github.com/NKkrisz/Steam-Deck-Guide)
|
||||
* [Steam Deck Pirates’ Cove](https://livinin82.github.io/steam-deck-pirates/) / [2](https://rentry.org/steamdeckpiratescove) or [Steam Deck Guide](https://main.steamdeck.guide/) / [2](https://steamdeck.guide/) / [GitHub](https://github.com/NKkrisz/Steam-Deck-Guide) - Steam Deck Guides / Resources
|
||||
* [r/SteamDeckPirates](https://www.reddit.com/r/SteamDeckPirates/) - Steam Deck Piracy Subreddit / [Discord](https://discord.gg/frg5Mmda56)
|
||||
* [great-on-deck-search](https://github.com/cptpiepmatz/great-on-deck-search) - Verified Steam Deck Game Search
|
||||
* [Steam Deck Tools](https://steam-deck-tools.ayufan.dev) - Fan Overlay, Power Control and Steam Controller
|
||||
|
|
@ -557,12 +565,12 @@
|
|||
|
||||
# ► Minecraft Tools
|
||||
|
||||
* 🌐 **[MCDOC](https://mcdoc.site/)** - Minecraft Tools & Unlockers
|
||||
* 🌐 **[MCDOC](https://mcdoc.site/)** - Minecraft Tools & Unlockers / [GitLab](https://gitlab.com/mcdoc/mcdoc.site) / [Discord](https://discord.gg/TtJM3ahtuM)
|
||||
* 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)** - Minecraft Resources
|
||||
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** - Minecraft Wikis
|
||||
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)**
|
||||
* ⭐ **[Villager Trading 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 / [Discord](https://discord.com/invite/flyte)
|
||||
* [MC Utils](https://mcutils.com/) - Minecraft Web Tools / [Discord](https://discord.com/invite/HvPARrr55x)
|
||||
* [Minecraft Forum](https://www.minecraftforum.net/) - Minecraft Community / Support / [Discord](https://discord.com/invite/wGrQNKX)
|
||||
* [MCPEDL](https://mcpedl.com/) - Bedrock Resources
|
||||
* [DigiMinecraft](https://www.digminecraft.com/) or [Birdflop](https://www.birdflop.com/resources/) / [GitHub](https://github.com/birdflop/web) - Minecraft Guides / Tools
|
||||
|
|
@ -601,6 +609,7 @@
|
|||
* [DriveBackupV2](https://modrinth.com/plugin/drivebackupv2) - Server Plugin to Create Cloud Backups of Worlds / [Discord](https://discord.com/invite/VdCAUtm) / [GitHub](https://github.com/MaxMaeder/DriveBackupV2)
|
||||
* [Pufferfish](https://github.com/pufferfish-gg/Pufferfish), [Purpur](https://purpurmc.org/) / [Discord](https://purpurmc.org/discord) / [GitHub](https://github.com/PurpurMC/) or [Paper](https://papermc.io/software/paper) / [Discord](https://discord.com/invite/papermc) / [GitHub](https://github.com/PaperMC/Paper) / [Plugins](https://hangar.papermc.io/) - Performance Enhancement Servers
|
||||
* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Discord](https://discord.com/invite/geysermc) / [GitHub](https://github.com/GeyserMC/Geyser) / [Extras](https://geyserextras.letsgoaway.dev/) / [GitHub](https://github.com/GeyserExtras/GeyserExtras/) / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/)
|
||||
* [ServerPackCreator](https://serverpackcreator.de/) - Create Minecraft Server Packs from Modpacks / [Discord](https://discord.com/invite/JfsXK8qB95) / [GitHub](https://github.com/Griefed/ServerPackCreator)
|
||||
* [Minecraft Server Scanner](https://github.com/MrBruz/Minecraft-Server-Scanner) - Minecraft Server Info
|
||||
* [mcsrvstat](https://mcsrvstat.us/) - Server Status Updates
|
||||
* [MC-Server-Banner-API](https://github.com/LOOHP/MC-Server-Banner-API) - Real-Time Updated Server Banners
|
||||
|
|
@ -609,19 +618,20 @@
|
|||
|
||||
## ▷ Launchers
|
||||
|
||||
* ⭐ **[Prism Launcher](https://prismlauncher.org/)** - Feature-Rich Launcher / [CurseForge Downloads](https://gist.github.com/sugoidogo/2e607727cd61324b2d292da96961de3f) / [Free Method](https://rentry.co/prism4free) / [Ely.by Version](https://github.com/ElyPrismLauncher/ElyPrismLauncher) / [Discord](https://discord.com/invite/ArX2nafFz2) / [GitHub](https://github.com/PrismLauncher/PrismLauncher)
|
||||
* ⭐ **[ATLauncher](https://atlauncher.com/)** or [Technic Launcher](https://www.technicpack.net/) - Modpack Launchers
|
||||
* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** or [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) - Launchers for Bedrock Edition
|
||||
* ⭐ **[Prism Launcher](https://prismlauncher.org/)** - Feature-Rich Launcher / [CurseForge Downloads](https://gist.github.com/sugoidogo/2e607727cd61324b2d292da96961de3f) / [Free Version](https://rentry.co/FMHYB64#prism) / [Ely.by Version](https://github.com/ElyPrismLauncher/ElyPrismLauncher) / [Discord](https://discord.com/invite/ArX2nafFz2) / [GitHub](https://github.com/PrismLauncher/PrismLauncher)
|
||||
* ⭐ **[ATLauncher](https://atlauncher.com/)** / [Discord](https://discord.com/invite/B7TrrzH) or [Technic Launcher](https://www.technicpack.net/) / [Discord](https://discord.com/invite/technic) - Modpack Launchers
|
||||
* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** - Launcher for Bedrock Edition / [Does Not Work w/ Latest MC Versions](https://ibb.co/7NXBJXX5)
|
||||
* [ZalithLauncher](https://github.com/ZalithLauncher/ZalithLauncher), [Mojolauncher](https://github.com/mojolauncher/mojolauncher) or [FoldCraftLauncher](https://github.com/FCL-Team/FoldCraftLauncher) / [Discord](https://discord.gg/ffhvuXTwyV) - Java Edition for Android & iOS
|
||||
* [SkLauncher](https://skmedix.pl/) - User-friendly Launcher
|
||||
* [AstralRinth](https://git.astralium.su/didirus/AstralRinth) - User-friendly Launcher
|
||||
* [UltimMC](https://github.com/UltimMC/Launcher) - Launcher for Cracked Accounts
|
||||
* [FjordLauncher](https://github.com/unmojang/FjordLauncher) - Prism Launcher Fork w/ Alt Auth Server Support
|
||||
* [UltimMC](https://github.com/UltimMC/Launcher) - Launcher
|
||||
* [Betacraft Launcher](https://betacraft.uk/) / [2](https://betacraft.ee/) / [3](https://betacraft.ovh/) or [LegacyFix](https://github.com/betacraftuk/legacyfix) - Patch / Fix Legacy Versions
|
||||
* [HMCL](https://hmcl.huangyuhui.net/) - Launcher / [GitHub](https://github.com/HMCL-dev/HMCL)
|
||||
* [LabyMod](https://www.labymod.net/) - Launcher
|
||||
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher
|
||||
* [GDLauncher](https://gdlauncher.com/) - Launcher
|
||||
* [X Minecraft Launcher](https://xmcl.app/) - Launcher
|
||||
* [LabyMod](https://www.labymod.net/) - Launcher / [Discord](https://discord.com/invite/labymod)
|
||||
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher / [Discord](https://discord.com/invite/S4cSFjq)
|
||||
* [GDLauncher](https://gdlauncher.com/) - Launcher / [Discord](https://discord.com/invite/8n3NnERF22)
|
||||
* [X Minecraft Launcher](https://xmcl.app/) - Launcher / [Discord](https://discord.com/invite/W5XVwYY7GQ)
|
||||
* [Quantum Launcher](https://mrmayman.github.io/quantumlauncher/) - Lightweight Launcher / [Discord](https://discord.com/invite/bWqRaSXar5) / [GitHub](https://github.com/Mrmayman/quantum-launcher/)
|
||||
|
||||
***
|
||||
|
|
@ -638,7 +648,7 @@
|
|||
* [Voxy](https://modrinth.com/mod/voxy), [DistantHorizons](https://modrinth.com/mod/distanthorizons) or [Bobby](https://modrinth.com/mod/bobby) - Lightweight Distance Rendering Mods
|
||||
* [Nvidium](https://modrinth.com/mod/nvidium) - Nvidia OpenGL Rendering Mod
|
||||
* [VulkanMod](https://modrinth.com/mod/vulkanmod) - Vulkan Rendering Mod / [Discord](https://discord.gg/FVXg7AYR2Q)
|
||||
* [Forge](https://files.minecraftforge.net/), [NeoForged](https://neoforged.net/), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Mod Loaders
|
||||
* [Forge](https://files.minecraftforge.net/), [NeoForged](https://neoforged.net/) / [Discord](https://discord.com/invite/UuM6bmAjXh), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Mod Loaders
|
||||
* [PAX](https://github.com/maradotwebp/pax), [ModMenu](https://modrinth.com/mod/modmenu) (fabric) or [Mod Manager](https://github.com/kaniol-lck/modmanager) - Minecraft Mod Managers
|
||||
* [Forgix](https://github.com/PacifistMC/Forgix) - Merge Mod Loaders
|
||||
* [r/feedthebeast](https://reddit.com/r/feedthebeast/) - MC Modding Community
|
||||
|
|
@ -659,8 +669,9 @@
|
|||
## ▷ Maps / World Tools
|
||||
|
||||
* 🌐 **[ChunkBase](https://www.chunkbase.com/apps/)** - Minecraft Map Tools
|
||||
* [Amulet](https://www.amuletmc.com/), [Minecraft Datapack Map](https://map.jacobsjo.eu/) / [GitHub](https://github.com/jacobsjo/mc-datapack-map), [MCA Selector](https://github.com/Querz/mcaselector), [uNmINeD](https://unmined.net/) or [WorldPainter](https://www.worldpainter.net/) - Minecraft Map Editors / Viewers
|
||||
* [Amulet](https://www.amuletmc.com/) / [Discord](https://discord.com/invite/RCFKvhs9sz), [Minecraft Datapack Map](https://map.jacobsjo.eu/) / [GitHub](https://github.com/jacobsjo/mc-datapack-map), [MCA Selector](https://github.com/Querz/mcaselector), [uNmINeD](https://unmined.net/) / [Discord](https://discord.com/invite/TCmvrPyA9x) or [WorldPainter](https://www.worldpainter.net/) - Minecraft Map Editors / Viewers
|
||||
* [MineAtlas](http://mineatlas.com/) or [Cubiomes Viewer](https://github.com/cubitect/cubiomes-viewer) - Minecraft Seeds
|
||||
* [MapVerse](https://mapverse.net/) - Download / Play Minecraft Map Servers / [Discord](https://discord.gg/xFgTJtebgp)
|
||||
* [MinecraftMaps](https://www.minecraftmaps.com/), [Minecraft Forum](https://www.minecraftforum.net/) / [Discord](https://discord.com/invite/wGrQNKX) or [Mapcraft](https://mapcraft.me/) - Minecraft Maps
|
||||
* [Minecraft Earth Map](https://earth.motfe.net/) - Earth Maps
|
||||
* [CTMRepository](https://ctmrepository.com/) - Complete the Monument Maps / [Discord](https://discord.com/invite/G2WVCB3)
|
||||
|
|
@ -677,52 +688,51 @@
|
|||
|
||||
* 🌐 **[TMC Links](https://gist.github.com/JoakimThorsen/e90bd7a588af25ae529530987d9acc8a)** - Technical Minecraft Resources
|
||||
* 🌐 **[Minecraft Speedrunning](https://www.minecraftspeedrunning.com/)** - Minecraft Speedrunning Resources
|
||||
* ⭐ **[MCPropertyEncyclopedia](https://joakimthorsen.github.io/MCPropertyEncyclopedia/)** - Block Property Encyclopedia
|
||||
* ⭐ **[spark](https://spark.lucko.me/)** - Minecraft Performance Profiler
|
||||
* ⭐ **[MCPropertyEncyclopedia](https://joakimthorsen.github.io/MCPropertyEncyclopedia/)** - Block Property Encyclopedia / [Discord](https://discord.com/invite/RUEVmTahYg)
|
||||
* ⭐ **[spark](https://spark.lucko.me/)** - Minecraft Performance Profiler / [Discord](https://discord.com/invite/PAGT2fu)
|
||||
* ⭐ **[Minecraft Java Flags](https://unascribed.com/garden/jvm-args/)** - Java Edition Performance Tweaks
|
||||
* [Report Inspector](https://misode.github.io/report/) - Crash Report / Profiling Inspector
|
||||
* [Mineflayer](https://prismarinejs.github.io/mineflayer/) - Minecraft Bot Creator / [GitHub](https://github.com/PrismarineJS/mineflayer)
|
||||
* [Minecraft TAS](https://minecrafttas.com/) - Minecraft TAS Community / Tools / Tutorials / [Discord](https://discord.gg/jGhNxpd)
|
||||
* [Mineflayer](https://prismarinejs.github.io/mineflayer/) - Minecraft Bot Creator / [Discord](https://discord.com/invite/GsEFRM8) / [GitHub](https://github.com/PrismarineJS/mineflayer)
|
||||
* [Minecraft Armor Stand](https://haselkern.com/Minecraft-ArmorStand/) - Design Poses for Armorstands
|
||||
* [Enchant Order](https://iamcal.github.io/enchant-order/) - Minecraft Enchantment Ordering Tool
|
||||
* [Minecraft Tools](https://minecraft.tools/en/) or [GamerGeeks](https://www.gamergeeks.net/) - Minecraft Tools / Calculators
|
||||
* [Minecraft Command Science](https://minecraftcommand.science/) or [MCStacker](https://mcstacker.net/) - Minecraft Command Generators
|
||||
* [Minecraft Command Science](https://minecraftcommand.science/) or [MCStacker](https://mcstacker.net/) / [Discord](https://discord.com/invite/WCb6GNf) - Minecraft Command Generators
|
||||
* [NBT Studio](https://github.com/tryashtar/nbt-studio/) or [webNBT](https://irath96.github.io/webNBT/) - Minecraft NBT File Editors
|
||||
* [MinecraftJSON](https://www.minecraftjson.com/) - Minecraft Tellraw Generator
|
||||
* [MC Assets](https://rentry.co/FMHYB64#mc-assets) - Extracted Minecraft Assets
|
||||
|
||||
***
|
||||
|
||||
## ▷ Customization
|
||||
|
||||
* 🌐 **[ShaderLABS](https://shaderlabs.org/wiki/Main_Page)** - Shader Comparisons and Resources
|
||||
* 🌐 **[ShaderLABS](https://shaderlabs.org/wiki/Main_Page)** - Shader Comparisons and Resources / [Discord](https://discord.com/invite/RpzWN9S)
|
||||
* ↪️ **[Resource Pack Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_mod_.2F_resource_pack_indexes)**
|
||||
* ⭐ **[NameMC](https://namemc.com/)**, [Laby](https://laby.net/) / [Discord](https://discord.com/invite/8JBMHDfWKp) or [Crafty](https://crafty.gg/) - Minecraft Name & Skin Availability Trackers
|
||||
* ⭐ **[NameMC](https://namemc.com/)**, [Laby](https://laby.net/) / [Discord](https://discord.com/invite/8JBMHDfWKp) or [Crafty](https://crafty.gg/) / [Discord](https://discord.com/invite/WYgJK3y) - Minecraft Name & Skin Availability Trackers
|
||||
* [ShadersMods](https://shadersmods.com/) or [MinecraftShader](https://minecraftshader.com/) - Minecraft Shaders
|
||||
* [Iris Shaders](https://modrinth.com/mod/iris) - Fabric Shadermod for Minecraft
|
||||
* [MinecraftSkins](https://www.minecraftskins.com/) or [SkinMC](https://skinmc.net/) - Minecraft Skins
|
||||
* [MSkins](https://mskins.net/en) - Skin Grabber
|
||||
* [Ely.by](https://ely.by/) - Skin System / Authorization
|
||||
* [NeedCoolerShoes](https://needcoolershoes.com/) / [Discord](https://discord.gg/FEfbZYvQUa) / [GitHub](https://github.com/NeedCoolerShoes/needcoolershoes) or [Nova Skin](https://minecraft.novaskin.me/) - Minecraft Skin Editor
|
||||
* [MinecraftCapes](https://minecraftcapes.net/) or [Capes](https://modrinth.com/mod/capes) - Minecraft Capes
|
||||
* [Minecraft Heads](https://minecraft-heads.com/) - Custom Minecraft Heads
|
||||
* [MinecraftCapes](https://minecraftcapes.net/) / [Discord](https://discord.com/invite/jqRU9SN) or [Capes](https://modrinth.com/mod/capes) - Minecraft Capes
|
||||
* [Minecraft Heads](https://minecraft-heads.com/) - Custom Minecraft Heads / [Discord](https://discord.com/invite/K7yxDD2HP3)
|
||||
* [PVPRP](https://pvprp.com/) - PVP Texture Packs
|
||||
|
||||
***
|
||||
|
||||
## ▷ 3D Tools
|
||||
|
||||
* ⭐ **[MCprep](https://theduckcow.com/dev/blender/mcprep/)** - All-in-one Blender Addon / [Discord](https://discord.com/invite/mb8hBUC) / [GitHub](https://github.com/Moo-Ack-Productions/MCprep)
|
||||
* ⭐ **[jmc2obj](https://www.jmc2obj.net/)**, [Mineways](https://www.realtimerendering.com/erich/minecraft/public/mineways/), [MiEX](https://bramstout.nl/en/miex/), [Minutor](https://seancode.com/minutor/) - Minecraft World Exporters
|
||||
* ⭐ **[jmc2obj](https://www.jmc2obj.net/)**, [Mineways](https://www.realtimerendering.com/erich/minecraft/public/mineways/) / [Discord](https://discord.com/invite/wfayQA6Dyc), [MiEX](https://bramstout.nl/en/miex/), [Minutor](https://seancode.com/minutor/) - Minecraft World Exporters
|
||||
* [Mine-imator](https://www.mineimator.com/) - Animation Tool / [2.0 Version](https://www.mineimatorforums.com/index.php?/topic/90789-mine-imator-202/) / [Forum](https://www.mineimatorforums.com/) / [Discord](https://discord.com/invite/GxFp6xv) / [GitHub](https://github.com/stuffbydavid/Mine-imator)
|
||||
* [Chunky](https://chunky-dev.github.io/docs/) - Photorealistic Renderer / [Discord](https://discord.com/invite/VqcHpsF) / [GitHub](https://github.com/chunky-dev/chunky)
|
||||
* [Minecraft Generator](https://minecraftgenerator.com/) - Minecraft Model Generators
|
||||
* [Block Display](https://block-display.com/) - Design / Share Block Display Models / [Discord](https://discord.gg/VCeHfSd6Xa)
|
||||
* [Blockbench](https://www.blockbench.net/) - Low Poly 3D Editor
|
||||
* [Blockbench](https://www.blockbench.net/) - Low Poly 3D Editor / [Discord](https://discord.com/invite/blockbench)
|
||||
* [Cubical](https://www.cubical.xyz/) - Minecraft 3D Schematic Tool / [Beta](https://beta.cubical.xyz/)
|
||||
* [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
|
||||
* [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
|
||||
* [Layoutit](https://voxels.layoutit.com/), [VoxelSphereGenerator](https://oranj.io/blog/VoxelSphereGenerator) or [Minecraft Shapes](https://minecraftshapes.com/) - Minecraft Shape Tools / Voxel Editors
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -784,10 +794,10 @@
|
|||
* 🌐 **[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 Awesome](https://pokemon-awesome.vercel.app/), [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/), [PocketMonsters.net](https://pocketmonsters.net/) or [Pokémon Database](https://pokemondb.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
|
||||
* ⭐ **[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
|
||||
* ⭐ **[PokeMMO](https://pokemmo.com/)**, [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
|
||||
|
|
@ -830,11 +840,10 @@
|
|||
* 🌐 **[GTAAll](https://www.gtaall.com/)**, [GTAInside](https://gtainside.de/), [GameModding](https://gamemodding.com/), [GTAGarage](https://gtagarage.com/) or [LibertyCity](https://libertycity.net/) - GTA Mods, Walkthroughs & More
|
||||
* 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
|
||||
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
|
||||
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy
|
||||
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) / [Discord](https://discord.com/invite/yQvKgSs) or [RAGE](https://rage.mp/) / [Discord](https://discord.com/invite/tChBaeu) - Modded GTAV Servers / Requires Legit Copy
|
||||
* ⭐ **[San Andreas: Multiplayer](https://www.sa-mp.mp/)** / [Discord](https://discord.com/invite/samp) or [Multi Theft Auto](https://multitheftauto.com/) / [GitHub](https://github.com/multitheftauto/mtasa-blue) - Multiplayer GTA:SA
|
||||
* ⭐ **[CLEO](https://cleo.li/)** - Extensible Library Plugin for GTA III, VC & SA / [Discord](https://discord.com/invite/d5dZSfgBZr)
|
||||
* ⭐ **[SilentPatch](https://cookieplmonster.github.io/mods/gta/)** - Quality of Life Fixes for GTA III, VC & SA
|
||||
* [Grand Theft Wiki](https://www.grandtheftwiki.com/Main_Page) - GTA Wiki
|
||||
* [GTA Cars](https://gtacars.net/) - GTA Car Database / Stats
|
||||
* [Rainbomizer](https://rainbomizer.com/) - GTA Randomizer Mods
|
||||
* [OpenIV](https://openiv.com/) - Rockstar Game Modding Tool
|
||||
|
|
@ -905,23 +914,22 @@
|
|||
|
||||
## ▷ Roblox Tools
|
||||
|
||||
* 🌐 **[Roblox Archive](https://archive.roblonium.com/)** - Roblox Client Archive
|
||||
* ⭐ **[RoSeal](https://www.roseal.live/)**, [RoPro](https://ropro.io/), [RoValra](https://rovalra.com/) / [GitHub](https://github.com/NotValra/RoValra), [BTRoblox](https://github.com/AntiBoomz/BTRoblox) or [RoGold](https://rogold.live/free) - Enhance Roblox Website / Add Features / Extensions
|
||||
* ⭐ **[Bloxstrap](https://bloxstraplabs.com/)** / [Discord](https://discord.com/invite/nKjV3mGq6R) / [GitHub](https://github.com/bloxstraplabs/bloxstrap) or [Fishstrap](https://fishstrap.app/) / [GitHub](https://github.com/fishstrap/fishstrap) - Roblox Player Bootstrapper
|
||||
* ⭐ **[Rolimon's](https://www.rolimons.com/games)**, [Rotrends](https://rotrends.com/) or [RoMonitor Stats](https://romonitorstats.com/) - Roblox Analytics / Stats
|
||||
* ⭐ **[Bloxstrap](https://bloxstraplabs.com/)** or [Fishstrap](https://fishstrap.app/) - Roblox Player Bootstrapper / [Discord](https://discord.com/invite/nKjV3mGq6R) / [GitHub](https://github.com/bloxstraplabs/bloxstrap)
|
||||
* [Novetus](https://bitl.itch.io/novetus) - Self-Hosted Multi-version Roblox Client
|
||||
* [Roblox Studio Mod Manager](https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager) - Roblox Studio Bootstrapper
|
||||
* [RoPro](https://ropro.io/), [RoValra](https://rovalra.com/) / [GitHub](https://github.com/NotValra/RoValra), [BTRoblox](https://github.com/AntiBoomz/BTRoblox), [RoGold](https://rogold.live/free) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website
|
||||
* [Better Discovery](https://www.roblox.com/games/15317947079/) - Game Discovery
|
||||
* [RBXServers](https://rbxservers.xyz/) or [FreeVIPServers](https://freevipservers.net/) - Roblox VIP Servers
|
||||
* [RobloxDen](https://robloxden.com/) or [Rocodes](https://rocodes.gg/) - Track Roblox Promo Codes
|
||||
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs
|
||||
* [ingame.clothing](https://ingame.clothing/) - Preview Avatar Clothing
|
||||
* [FastFlags.space](https://fastflags.space/) - Roblox FastFlags Collection / [GitHub](https://github.com/fastdotspace/fastflags.space)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Terraria Tools
|
||||
|
||||
* 🌐 **[Terraria Community Archive](https://kuz-zzz.github.io/terraria-archive/)** - Terraria Tools / Resources
|
||||
* ⭐ **[Terraria Wiki](https://terraria.wiki.gg/)** or [Terranion](https://yal.cc/r/terranion/) - Terraria Wikis
|
||||
* [PinkGel](https://pinkgel.pages.dev/) - Terraria Item Database
|
||||
* [tShock](https://github.com/Pryaxis/TShock) - Terraria Server Tools
|
||||
|
|
@ -957,7 +965,8 @@
|
|||
## ▷ Tabletop Tools
|
||||
|
||||
* 🌐 **[Awesome TTRPGs](https://github.com/Zireael07/awesome-tabletop-rpgs)** - Online TTRPGs & Resources
|
||||
* ⭐ **[dice.run](https://dice.run/)**, [DiceSimulator.com](http://www.dicesimulator.com/) or [Desktop Dice](https://girkovarpa.itch.io/desktopdice) - Dice Simulators
|
||||
* ↪️ **[D&D Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_dungeons_.26amp.3B_dragons)** - Dungeons & Dragons Guides / Tools
|
||||
* ⭐ **[dice.run](https://dice.run/)**, [DiceSimulator.com](http://www.dicesimulator.com/), [Let's Roll](https://www.linepup.com/dice/) or [Desktop Dice](https://girkovarpa.itch.io/desktopdice) - Dice Simulators
|
||||
* [Scorecard.gg](https://scorecard.gg/) - Create Scorecards for Game Matches
|
||||
* [RPGBOT](https://rpgbot.net/), [Wargamer](https://www.wargamer.com/), [Roll for Fantasy](https://rollforfantasy.com/), [Kassoon](https://www.kassoon.com/) or [DragonsFoot](https://www.dragonsfoot.org/) - RPG / TTRPG Tools & Learning Resources
|
||||
* [Tabletopy](https://tabletopy.com/) or [Tabletop Audio](https://tabletopaudio.com/) - Immersive SFX / Music for TTRPGs
|
||||
|
|
@ -973,8 +982,9 @@
|
|||
|
||||
## ▷ RPG Worldbuilding
|
||||
|
||||
* ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_writing_tools)** - Writing Tools / Story Managers
|
||||
* ⭐ **[Kanka](https://kanka.io/)**, [World Anvil](https://www.worldanvil.com/), [RPTools](https://www.rptools.net/), [Scabard](https://www.scabard.com/), [Adventurer's Codex](https://adventurerscodex.com) or [Fantasia Archive](https://fantasiaarchive.com/) - RPG Campaign Managers / Worldbuilding Suites
|
||||
* ⭐ **[Chaotic Shiny](http://chaoticshiny.com/)**, [Seventh Sanctum](https://www.seventhsanctum.com/), [Notebook.ai](https://www.notebook.ai/), [Fantasy Name Generators](https://www.fantasynamegenerators.com/) or [Eigengrau's Generator](https://eigengrausgenerator.com/) - RPG / Fantasy Storywriting Tools
|
||||
* ⭐ **[Chaotic Shiny](http://chaoticshiny.com/)**, [Seventh Sanctum](https://www.seventhsanctum.com/), [Notebook.ai](https://www.notebook.ai/), [Fantasy Name Generators](https://www.fantasynamegenerators.com/) or [Eigengrau's Generator](https://eigengrausgenerator.com/) - RPG / Fantasy Story Writing Tools
|
||||
* ⭐ **[donjon](https://donjon.bin.sh/)** or [Azgaar](https://azgaar.github.io/Fantasy-Map-Generator/) - Procedural RPG / Fantasy Map Generators
|
||||
* [watabou](https://watabou.itch.io/) - Generators for Fantasy Worlds, Dungeons, and More
|
||||
* [Inkwell Ideas](https://inkwellideas.com/) - RPG Software & Accessories
|
||||
|
|
|
|||
218
docs/gaming.md
218
docs/gaming.md
|
|
@ -15,36 +15,38 @@
|
|||
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)**, [2](https://csrin.org/) - Download / Torrent / Signup / PW: `cs.rin.ru / csrin.org` / [.onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
|
||||
* ⭐ **CS.RIN Tools** - [Search Guide](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#csrin-search) (Important) / [Status](https://csrinstaff.writeas.com/) / [Enhancements](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external)
|
||||
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/SteamRip/) / [Discord](https://discord.gg/WkyjpA3Ua9)
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / Torrent / GOG Games Only / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **[AnkerGames](https://ankergames.net/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/Anker_Games_/) / [Discord](https://discord.gg/nnMnGzDbwg)
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / Torrent / GOG Games Only / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **[UnionCrax](https://union-crax.xyz/)** - Download / Pre-Installs / [Status](https://status.union-crax.xyz/) / [Discord](https://discord.com/invite/j2Q2ZKk3YJ)
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - Download / Torrent / Multiplayer / Signup / PW: `online-fix.me` / [Telegram](https://t.me/onlinefix) / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[GameBounty](https://gamebounty.world/)** - Download / [Discord](https://discord.gg/dmjUJ4xCEV)
|
||||
* ⭐ **[UnionCrax](https://union-crax.xyz/)** - Download / Pre-Installs / [Discord](https://discord.gg/dkVame6BQS)
|
||||
* ⭐ **[SteamUnderground](https://steamunderground.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/hxdv7eJ5Yt)
|
||||
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / PW: `www.ovagames.com` / [Redirect Bypass Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_redirect_bypass)
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download / Forum / Sign-Up Required
|
||||
* [Virgil Game Search](https://virgil.samidy.com/Game-search/) / [GitHub](https://github.com/SamidyFR/Virgil), [Rezi Search](https://rezi.one/), [Playseek](https://playseek.app/), [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg), [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [Virgil Game Search](https://virgil.samidy.com/Games/), [2](https://virgil-search.pages.dev/Games/) / [GitHub](https://github.com/SamidyFR/Virgil), [Rezi Search](https://rezi.one/), [Playseek](https://playseek.app/), [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg), [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [g4u](https://g4u.to/) - Download / PW: `404`
|
||||
* [GLoad](https://gload.to/) - Download
|
||||
* [Gamesdrive](https://gamesdrive.net/) - Download / [Telegram](https://t.me/+qkrAOiq7k7ozNzRk) / [Discord](https://discord.gg/wXdNEhf73x)
|
||||
* [SteamGG](https://steamgg.net/) - Download / Pre-Installs / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / [Subreddit](https://www.reddit.com/r/OfficialSteamGG/) / [Discord](https://discord.gg/Rw6AT3hZZE)
|
||||
* [scene cat](https://rentry.co/FMHYB64#scene-cat) - Download / [Discord](https://discord.gg/wXdNEhf73x)
|
||||
* [Fluxy Repacks](https://fluxyrepacks.xyz/games) - Download / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#fluxy-repacks) / [Discord](https://discord.gg/TBs8Te5nwn)
|
||||
* [AstralGames](https://astral-games.xyz/) - Download / Pre-Installs / [Discord](https://discord.gg/38bRNmKB4v)
|
||||
* [GoMorGames](https://gomorgames.com/) - Download / [Discord](https://discord.gg/raWtANAZqF)
|
||||
* [appnetica](https://appnetica.com/) - Download / Torrent / Pre-Installs / [Telegram](https://t.me/appnetica_info) / [Discord](https://discord.gg/TvKnH6P)
|
||||
* [AtopGames](https://atopgames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/KSG9Tg2s7b)
|
||||
* [ElEnemigos](https://elenemigos.com/) - Download / PW: `elenemigos.com` / [Telegram](https://t.me/ElEnemigos) / [Discord](https://discord.com/invite/juegos)
|
||||
* [Reloaded Steam](https://reloadedsteam.com/) - Download / Pre-Installs / [Discord](https://discord.gg/XqMpBdVWvK)
|
||||
* [AstralGames](https://astral-games.xyz/) - Download / Pre-Installs / [Discord](https://discord.gg/38bRNmKB4v)
|
||||
* [SteamGG](https://steamgg.net/) - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/OfficialSteamGG/) / [Discord](https://discord.gg/Rw6AT3hZZE)
|
||||
* [Rexa Games](https://rexagames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/6KWStFYSTj)
|
||||
* [SteamOra](https://steamora.net/) - Download / Pre-Installs / [Discord](https://discord.gg/2bRYgFS8Rj)
|
||||
* [TriahGames](https://triahgames.com/) - Download / PW: `www.triahgames.com` / [Discord](https://discord.gg/vRxJNNcJNh)
|
||||
* [GetFreeGames](https://getfreegames.net/) - Download / [Discord](https://discord.gg/Pc5TtEzk7k)
|
||||
* [desolation](https://rentry.co/FMHYB64#desolation) - Download / [Discord](https://discord.gg/Q85SNt2sSz)
|
||||
* [World of PC Games](https://worldofpcgames.com/) - Download / Pre-Installs / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / [Site Info](https://rentry.org/ikc3x8bt) / [Subreddit](https://www.reddit.com/r/WorldofPCGamess/)
|
||||
* [Games4U](https://games4u.org/) - Download / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Sources on DDL Pages
|
||||
* [CG Games](https://www.cg-gamespc.com/) - Download
|
||||
* [GamePCFull](https://gamepcfull.com/) - Download
|
||||
* [IRC Games](https://redd.it/x804wg) - Download Games via IRC
|
||||
* [FreeToGame](https://www.freetogame.com/games) or [Acid Play](https://acid-play.com/) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)
|
||||
* [Anti Denuvo Sanctuary](https://rentry.co/FMHYB64#adsanctuary) - Denuvo Games / Works Offline
|
||||
* [FreeToGame](https://www.freetogame.com/games), [TendingNow](https://trendingnow.games/free) or [Acid Play](https://acid-play.com/) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)
|
||||
* [Anti Denuvo Sanctuary](https://rentry.co/FMHYB64#ads) - Denuvo Games / Works Offline
|
||||
* [ROM Heaven CSF](https://rentry.co/FMHYB64#csf) - Clean Steam Files
|
||||
|
||||
***
|
||||
|
|
@ -58,11 +60,12 @@
|
|||
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Unofficial Launcher](https://github.com/CarrotRub/Fit-Launcher/)
|
||||
* ⭐ **[KaOsKrew](https://kaoskrew.org/)** - Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
|
||||
* ⭐ **[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) / [Discord](https://discord.gg/abeChzCy8X)
|
||||
* ⭐ **[Gnarly Repacks](https://rentry.co/FMHYB64#gnarly_repacks)** - Download / PW: `gnarly`
|
||||
* [Gnarly Repacks](https://rentry.co/FMHYB64#gnarly) - Download / PW: `gnarly`
|
||||
* [ScOOt3r Repacks](https://discord.gg/xe3Fys8Upy) - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
|
||||
* [M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/) - Download / [Discord](https://discord.gg/693hNBdymb)
|
||||
* [Dyren Repacks](https://rentry.co/FMHYB64#dyren) - Download / Torrent / [Discord](https://discord.com/invite/kw36u9cxd3)
|
||||
* [DODI Repacks](https://rentry.co/FMHYB64#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)
|
||||
* [Vanya Games](https://vanya-games.site/) - Download
|
||||
* [DODI Repacks](https://rentry.co/FMHYB64#dodi) - Torrent / [Redirect Bypass](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_redirect_bypass) / **[Site Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#dodi-warning)** / [Discord](https://discord.gg/D9WU7C9FSE)
|
||||
* [Stevv Game](https://www.stevvgame.com/) - Download / [Discord](https://discord.gg/snbpB6pCK9)
|
||||
* [Xatab Repacks](https://byxatab.com/) - Torrent
|
||||
* [Elamigos](https://elamigos.site/) - Download
|
||||
|
|
@ -88,6 +91,7 @@
|
|||
* [Alpha Beta Gamer](https://alphabetagamer.com/) - Play Games in Alpha / Beta Testing / [Discord](https://discord.gg/3Gtqp9BDeY)
|
||||
* [Necromanthus](https://necromanthus.com/) - 3D Shockwave Games
|
||||
* [LemmaSoft](https://lemmasoft.renai.us/) - Visual Novel Games / [Discord](https://discord.gg/6ckxWYm)
|
||||
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||
* [vgperson](https://vgperson.com/games/) - Simple Japanese Games
|
||||
* [Visual Pinball](https://github.com/vpinball/vpinball) - Pinball Table Editor / Simulator / [Tables](https://www.vpforums.org/)
|
||||
* [Ninja Kiwi Archive](https://ninjakiwi.com/archive) - Ninja Kiwi / Bloons Archive / [Subreddit](https://www.reddit.com/r/NinjaKiwiOfficial/) / [Discord](https://discord.com/invite/ninjakiwi)
|
||||
|
|
@ -101,7 +105,6 @@
|
|||
* [PyGames](https://www.pygame.org/) - Python Games / [Discord](https://discord.gg/uEKeRSqr2Y) / [GitHub](https://github.com/pygame/pygame)
|
||||
* [Flashtro](https://flashtro.com/) - Cracker Intros
|
||||
* [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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -161,20 +164,20 @@
|
|||
* 🌐 **[Game Decompilations](https://decomps.samidy.com/)**, [2](https://rentry.co/Decomps) - Game Decompilations / [GitHub](https://github.com/SamidyFR/Game-Decompilations)
|
||||
* 🌐 **[RetroReversing](https://www.retroreversing.com/source-code/decompiled-retail-console-games)** - Game Decompilations
|
||||
* 🌐 **[awesome-game-decompilations](https://github.com/CharlotteCross1998/awesome-game-decompilations)** - Game Decompilations
|
||||
* 🌐 **[Galaxy of Games](https://galaxyofgames.neocities.org/)** - Game Ports, Decompilations, etc
|
||||
* 🌐 **[Galaxy of Games](https://galaxyofgames.neocities.org/)** - Game Ports, Decompilations, etc
|
||||
* 🌐 **[TheGamingEmporium](https://www.thegamingemporium.com/)** - Game Ports, Decompilations, etc
|
||||
* [IOQuake3](https://ioquake3.org/) - Quake 3 Source Port / [Discord](https://discord.gg/YY9UvMHGYb) / [GitHub](https://github.com/ioquake/ioq3)
|
||||
* [YQuake2](https://www.yamagi.org/quake2/) - Quake 2 Source Port / [GitHub](https://github.com/yquake2/yquake2)
|
||||
* [Ship of Harkinian](https://www.shipofharkinian.com/) - Ocarina of Time Port / [Discord](https://discord.com/invite/shipofharkinian) / [GitHub](https://github.com/HarbourMasters/Shipwright)
|
||||
* [Beyond All Reason](https://www.beyondallreason.info/) - Open-Source Total Annihilation / Supreme Commander / [Discord](https://discord.gg/beyond-all-reason) / [GitHub](https://github.com/beyond-all-reason)
|
||||
* [DFWorkshop](https://www.dfworkshop.net/) - Daggerfall Unity Engine Port
|
||||
* [EDuke32](https://www.eduke32.com/) - Duke Nukem 3D Source Port / [Discord](https://discord.gg/ks5bHrH)
|
||||
* [NBlood](https://github.com/NBlood/NBlood) - Reverse-Engineered Duke Nukem Ports
|
||||
* [ECWolf](https://maniacsvault.net/ecwolf/) - Wolfenstein 3D, Spear of Destiny & Super 3D Noah's Ark Port
|
||||
* [Sonic 3 A.I.R.](https://sonic3air.org/) - Sonic 3 & Knuckles Enhanced / [Mods](https://gamebanana.com/mods/games/6878) / [Discord](https://dc.railgun.works/s3air) / [GitHub](https://github.com/Eukaryot/sonic3air)
|
||||
* [SRB2Kart](https://mb.srb2.org/threads/srb2kart.25868/) / [GitHub](https://github.com/STJr/Kart-Public) or [RingRacers](https://github.com/KartKrewDev/RingRacers) - Open-Source Sonic Kart Games
|
||||
* [Arx Libertatis](https://arx-libertatis.org/) - Arx Fatalis PC Port
|
||||
* [Pixel Gun World](https://pgun.rilisoft.info/) / [Discord](https://discord.com/invite/pHteGmZzbU) or [Pixel Gun X](https://discord.com/invite/8796Fs9tZm) - Pixel Gun 3D Revivals / PC Ports
|
||||
* [Infinity Blade PC](https://rentry.co/FMHYB64#ib-pc-port) - Infinity Blade I/II PC Ports / [Subreddit](https://www.reddit.com/r/infinityblade) / [Discord](https://discord.gg/GfX3pmC)
|
||||
* [Infinity Blade PC](https://www.reddit.com/r/infinityblade) - Infinity Blade I/II PC Ports / [Discord](https://discord.gg/GfX3pmC)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -185,13 +188,14 @@
|
|||
* [Locomalito](https://locomalito.com/) or [RetroSpec](https://retrospec.sgn.net/) - Classic Game Remakes
|
||||
* [Super Smash Flash](https://www.supersmashflash.com/) / [Discord](https://discord.com/invite/mcleodgaming) or [Smash Crusade](https://smash-crusade.itch.io/crusade) / [Forum](https://projectcrusade.forumotion.com/) / [Discord](https://discord.com/invite/9WBn6u65Fg) - Flash Super Smash Bros.
|
||||
* [Luanti](https://www.luanti.org/) / [Discord](https://discord.gg/minetest) / [GitHub](https://github.com/luanti-org) or [Classicube](https://www.classicube.net/) / [Discord](https://discord.com/invite/DvYYyRw) / [GitHub](https://github.com/UnknownShadow200/ClassiCube) - Open-Source Minecraft Clones / Alternatives
|
||||
* [Chrono Divide](https://rentry.co/FMHYB64#chrono-divide) / [Discord](https://discord.gg/uavJ34JTWY) / [GitHub](https://github.com/chronodivide) or [OpenRA](https://openra.net/) / [Discord](https://discord.com/invite/m5dVWH4aQE) / [GitHub](https://github.com/OpenRA/OpenRA) - Command & Conquer Recreations
|
||||
* [Chrono Divide](https://chronodivide.com/) / [Discord](https://discord.gg/uavJ34JTWY) / [GitHub](https://github.com/chronodivide) or [OpenRA](https://openra.net/) / [Discord](https://discord.com/invite/m5dVWH4aQE) / [GitHub](https://github.com/OpenRA/OpenRA) - Command & Conquer Recreations
|
||||
* [The Dark Mod](https://www.thedarkmod.com/) - Modernized Thief Recreation / [Community Missions](https://www.thedarkmod.com/missions/)
|
||||
* [OpenMW](https://openmw.org/) - Morrowind Remake / [GitHub](https://github.com/OpenMW/openmw) / [Multiplayer](https://github.com/TES3MP/TES3MP)
|
||||
* [Xonotic](https://xonotic.org/) - Open-Source Modified Quake Engine FPS / [GitLab](https://gitlab.com/xonotic/xonotic/)
|
||||
* [Silent Hill 2: Enhanced Edition](https://enhanced.townofsilenthill.com/SH2/) - Silent Hill 2 Mod Project
|
||||
* [DevilutionX](https://devilutionx.com/) - Open-Source Modified Diablo 1 / [GitHub](https://github.com/diasurgical/devilutionx)
|
||||
* [TeamForever](https://teamforeveronline.wixsite.com/home) - Sonic 1 & 2 Enhanced / [S1F Mods](https://gamebanana.com/mods/games/10601) / [S2A Mods](https://gamebanana.com/mods/games/15019) / [YouTube](https://www.youtube.com/@teamforeverdev) / [Tumblr](https://www.tumblr.com/teamforever)
|
||||
* [Team Forever](https://teamforeveronline.wixsite.com/home) - Sonic 1 & 2 Enhanced / [S1F Mods](https://gamebanana.com/mods/games/10601) / [S2A Mods](https://gamebanana.com/mods/games/15019) / [YouTube](https://www.youtube.com/@teamforeverdev) / [BlueSky](https://bsky.app/profile/teamforever.bsky.social)
|
||||
* [Sonic 3 A.I.R.](https://sonic3air.org/) - Sonic 3 & Knuckles Enhanced / [Mods](https://gamebanana.com/mods/games/6878) / [Discord](https://dc.railgun.works/s3air) / [GitHub](https://github.com/Eukaryot/sonic3air)
|
||||
* [SRB2](https://www.srb2.org/) - Open-Source Sonic Fan Game / [Addons](https://mb.srb2.org/addons/) / [Discord](https://discord.com/invite/b3BGb8A) / [GitLab](https://git.do.srb2.org/STJr/SRB2)
|
||||
* [Streets of Rage Remake](https://sorr.forumotion.net/t838-new-streets-of-rage-remake-v5-2-download-and-info) - Streets of Rage Remake
|
||||
* [OpenSA](https://github.com/Dzierzan/OpenSA) - Swarm Assault Recreation / [OpenRA Required](https://www.moddb.com/mods/opensa) / [Non OpenRA Version](https://dzierzan.itch.io/opensa)
|
||||
|
|
@ -227,6 +231,7 @@
|
|||
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
|
||||
* [TF2 Classic](https://tf2classic.com/) - Team Fortress 2 Classic Mod
|
||||
* [RisingHub](https://risinghub.net/) - Battlefield Heroes Revival Project / [Discord](https://discord.gg/GqxxgBj)
|
||||
* [r/MinecraftStoryMode](https://www.reddit.com/r/MinecraftStoryMode/) - Minecraft Story Mode Revival Project / [Discord](https://discord.gg/zUuABEc6at)
|
||||
* [Aleph One](https://alephone.lhowon.org/) - Open-Source Marathon Continuation / [Discord](https://discord.com/invite/NvF3pdV)
|
||||
* [Falcon BMS](https://www.falcon-bms.com/) - Falcon 4.0 Modernization Project / [Forum](https://forum.falcon-bms.com/) / [Subreddit](https://www.reddit.com/r/falconbms/) / [Discord](https://discord.gg/KQNHQBz)
|
||||
* [FlightGear](https://www.flightgear.org/) - Open-Source Flight Simulator / [GitLab](https://gitlab.com/flightgear/flightgear)
|
||||
|
|
@ -245,22 +250,21 @@
|
|||
* 🌐 **[Multi System Emulators](https://emulation.gametechwiki.com/index.php/Multi-system_emulators)** / [Frontends](https://emulation.gametechwiki.com/index.php/Frontends) - Emulators with Multiple Consoles
|
||||
* 🌐 **[RedSquirrel Project List](https://redsquirrel87.com/doku.php/projects-list)** - Emulator Tools
|
||||
* 🌐 **[Multiplayer Emulation](https://emulation.gametechwiki.com/index.php/Netplay)** - Multiplayer Emulation Tools
|
||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||
* ↪️ **[Emulators on Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||
* ⭐ **[Recommended Emulator Specs](https://emulation.gametechwiki.com/index.php/Computer_specs)**
|
||||
* ⭐ **[Emulator BIOS Files](https://rentry.co/FMHYB64#emulator-files)**
|
||||
* ⭐ **[RetroAchievements](https://retroachievements.org/)** - Achievements for Emulators / [DAT Files](https://rentry.co/FMHYB64#ra-dat)
|
||||
* ⭐ **[Emulator BIOS Files](https://emulation.gametechwiki.com/)** - Search for "Emulator Files"
|
||||
* ⭐ **[RetroAchievements](https://retroachievements.org/)** - Achievements for Emulators / [Compatible Games](https://retroachievements.vercel.app/) / [DAT Files](https://rentry.co/FMHYB64#ra-dat)
|
||||
* ⭐ **[Dolphin Guide](https://github.com/shiiion/dolphin/wiki/Performance-Guide)** - Dolphin Setup Guide
|
||||
* ⭐ **[Cemu Guide](https://cemu.cfw.guide/)** or [r/CemuPiracy Tutorial](https://www.reddit.com/r/CemuPiracy/wiki/tutorial/) - Wii U / BOTW Setup Guides
|
||||
* [Switch Emulation](https://rentry.co/FMHYB64#switch-emulation) - Switch Emulator Setup Guides
|
||||
* [Axekin Wiki](https://wiki.axekin.com/en/) - Emulation Guides / [Discord](https://discord.gg/CUpf57y5Vg)
|
||||
* [Wiki of Axekin](https://wiki.axekin.com/) - Emulation Guides / [Discord](https://discord.gg/CUpf57y5Vg)
|
||||
* [RetroCatalog](https://retrocatalog.com/) or [Handheld Emulation Compatibility](https://docs.google.com/spreadsheets/d/1irg60f9qsZOkhp0cwOU7Cy4rJQeyusEUzTNQzhoTYTU/) - Handheld Emulation Compatibility / Info
|
||||
* [TOSEC](https://rentry.co/FMHYB64#tosec) - The Old School Emulation Center
|
||||
* [Emulation Collective](https://discord.com/invite/7pcAbZzpXj) - Xbox One/Series X|S UWP Emulation Discord
|
||||
* [MouseInjector](https://github.com/garungorp/MouseInjectorDolphinDuck) - Add Mouse Support to Emulators
|
||||
* [SaveFileConverter](https://savefileconverter.com/) - Convert Console Saves to Emulator Saves
|
||||
* [Motion Support Bypass](https://redd.it/gobcne) - Fix Cemu BOTW Motion Shrines / [DL](https://mega.nz/file/1Uo3BI6L#X5m-bPK27-X-IijzJH1o4MloivkUqP33zsUJE_kpOdc)
|
||||
* [ns-emu-mod-downloader](https://github.com/Exefer/ns-emu-mod-downloader) - Download Switch Emulator Mods
|
||||
* [Green Leaf](https://discord.gg/m6z3ra8ssh) - Switch Saves Discord
|
||||
* [ns-emu-mod-downloader](https://github.com/exefer/ns-emu-mod-downloader) - Download Switch Emulator Mods
|
||||
* [TOTK Optimization](https://rentry.co/FMHYB64#totk-optimization) - TOTK Optimization / Fixes
|
||||
* [UniversalDynamicInput](https://github.com/Venomalia/UniversalDynamicInput) - Custom Dolphin Button Pack
|
||||
* [Prime Hack](https://github.com/Kekun/primehack) or [Prime Hunter Hack](https://github.com/IBreakGames/PrimeHunterHack) - Add Mouse Support to Metroid Games
|
||||
|
|
@ -268,6 +272,7 @@
|
|||
* [PCSX-Redux](https://pcsx-redux.consoledev.net) - PSCX Development Emulator
|
||||
* [Modernized PCSX2 Settings](https://mega.nz/folder/WdNAlY5Z#K6PmrQFyDm2k7BEV8KoAmg) - Premade PCSX2 Settings
|
||||
* [Skate 3 RPCS3 Online](https://discord.gg/DFWCaTGyBT) - RPCS3 Skate 3 Multiplayer
|
||||
* [ArticBaseServer](https://github.com/azahar-emu/ArticBaseServer) - Broadcast 3DS Games to Emulators / No Game Dump Required
|
||||
* [PictoChat Online](https://pict.chat/) - Browser DS PictoChat
|
||||
* [webnofrendo](https://zardam.github.io/webnofrendo/) - NES Numworks Emulator
|
||||
* [Objection!](https://objection.lol/) - Ace Attorney Courtroom / Objection Generator
|
||||
|
|
@ -292,26 +297,27 @@
|
|||
|
||||
* 🌐 **[ROM Sites Wiki](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites)** - List of ROM Download Sites
|
||||
* 🌐 **[r/ROMs Mega](https://r-roms.github.io/)** - ROMs / [Pastebins](https://rentry.co/FMHYB64#romcenter)
|
||||
* ⭐ **[CrocDB](https://crocdb.net/)** - ROM Site Aggregator / [Discord](https://discord.gg/3NyMZKxhUA)
|
||||
* ⭐ **[Myrient](https://rentry.co/FMHYB64#myrient)** - ROMs / [Telegram](https://t.me/s/myrient) / [Discord](https://discord.gg/4kVP9AuQ24)
|
||||
* ⭐ **[CrocDB](https://crocdb.net/)** - ROMs / [Discord](https://discord.gg/3NyMZKxhUA)
|
||||
* ⭐ **[AlvRo](https://rentry.co/FMHYB64#alvro)** - ROMs / PW: `ByAlvRo`
|
||||
* ⭐ **[Vimms Lair](https://vimm.net/)** - ROMs / [Restore Downloads](https://greasyfork.org/en/scripts/495800) / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
||||
* ⭐ **[Vimms Lair](https://vimm.net/)** - ROMs / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
||||
* ⭐ **[No-Intro](https://rentry.co/FMHYB64#no-intro)** - ROMs / [Discord](https://discord.gg/dvk6W6vZmp)
|
||||
* ⭐ **[ROM Heaven](https://romheaven.com/)** - ROMs
|
||||
* ⭐ **[Axekin](https://www.axekin.com/)** - ROMs / [Discord](https://discord.gg/CUpf57y5Vg)
|
||||
* ⭐ **[Ziperto](https://ziperto.com/)** - ROMs / [Discord](https://discord.gg/VgZ66bM87u)
|
||||
* ⭐ **[RuTracker ROMs](https://rutracker.org/forum/viewforum.php?f=548)** - ROMs / Torrents / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn)
|
||||
* ⭐ **[RetroGameTalk](https://retrogametalk.com/)** / [Subreddit](https://www.reddit.com/r/RetroGameTalk/), [ROMHack.ing](https://www.romhack.ing/) / [Discord](https://discord.gg/uAufcgz), [ROMHacking.com](https://romhacking.com/), [ROMhacking](https://www.romhacking.net/), [ROMHack Plaza](https://romhackplaza.org/) / [Discord](https://discord.gg/5CKzeWmZZU) or [Reality Incorporated](https://sites.google.com/view/bonmarioinc/rom-hacks/released-rom-hacks) - ROM Fan Translations / Hacks
|
||||
* ⭐ **[CDRomance](https://cdromance.org/)** / [Forum](https://retrogametalk.com/) / [Subreddit](https://www.reddit.com/r/RetroGameTalk/), [ROMHack.ing](https://www.romhack.ing/) / [Discord](https://discord.gg/uAufcgz), [ROMHacking.com](https://romhacking.com/), [ROMhacking](https://www.romhacking.net/), [ROMHack Plaza](https://romhackplaza.org/) / [Discord](https://discord.gg/5CKzeWmZZU) or [Reality Incorporated](https://sites.google.com/view/bonmarioinc/rom-hacks/released-rom-hacks) - ROM Fan Translations / Hacks
|
||||
* [WowROMs](https://wowroms.com/en) - ROMs
|
||||
* [Retro Game Champion](https://www.retrogamechampion.com/) - Retro Game ROMs, Magazines, Music & more / [Discord](https://discord.gg/zueusZt)
|
||||
* [Zophar's Domain](https://www.zophar.net/) - ROM Mods
|
||||
* [roms.by](https://www.roms.by/) - ROMs / Signup
|
||||
* [TheRomDepot](https://theromdepot.com/) - ROMs / Signup
|
||||
* [BlueRoms](https://www.blueroms.ws/) - ROMs / Torrents
|
||||
* [EpicROMs](https://epicroms.net/roms/) - ROMs / [Subreddit](https://www.reddit.com/r/EpicRoms/)
|
||||
* [Arquivista ROMs](https://rentry.co/FMHYB64#arquivista) - ROMs
|
||||
* [FinalBurn Neo](https://rentry.co/FMHYB64#finalburn-neo) - ROMs / Zip
|
||||
* [Romsie](https://roms2000.com/) - ROMs
|
||||
* [Retro Vault](https://www.retrospot.net/vault/) - ROMs
|
||||
* [Retrostic](https://www.retrostic.com/) - ROMs
|
||||
* [DLPSGame](https://dlpsgame.com/), [2](https://nswgame.com) - ROMs / Avoid PC Games
|
||||
* [Romsever](https://romsever.com) - ROMs
|
||||
* [ROMsGames](https://www.romsgames.net/roms/) - ROMs
|
||||
* [ConsoleROMs](https://www.consoleROMs.com/) - ROMs
|
||||
|
|
@ -325,20 +331,17 @@
|
|||
* [Romspedia](https://www.romspedia.com/) - ROMs
|
||||
* [TechToROMs](https://techtoroms.com/) - ROMs
|
||||
* [RPGOnly](https://rpgonly.com) - ROMs
|
||||
* [AllMyROMs](https://www.allmyroms.net/) - ROMs
|
||||
* [ROMsFun](https://romsfun.com/) - ROMs
|
||||
* [RetroZone](https://retrozone.co/) - ROMs / [Discord](https://discord.gg/662GhC76tJ)
|
||||
* [ROMSPack](https://www.romspack.com/) - ROMs
|
||||
* [NGR](https://www.nextgenroms.com/) - ROMs / [Discord](https://discord.gg/BQPzkwj)
|
||||
* [FantasyAnime](https://fantasyanime.com/) - ROMs
|
||||
* [Ziperto](https://ziperto.com/) - ROMs / [Discord](https://discord.gg/VgZ66bM87u)
|
||||
* [Rom Magnet Links](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites#BitTorrent) - ROMs / Torrent
|
||||
* [ROM CSE](https://cse.google.com/cse?cx=f47f68e49301a07ac) / [CSE 2](https://cse.google.com/cse?cx=744926a50bd7eb010) - Multi-Site ROM Search
|
||||
* [Wad Archive](https://archive.org/details/wadarchive) - 83k WAD Files
|
||||
* [Cah4e3](https://cah4e3.shedevr.org.ru/) - Unlicensed ROMs / Bootlegs / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [xbarchive](https://github.com/codemasterv/xbarchive) - ROMs / Xbox Consoles
|
||||
* [AtariMania](https://www.atarimania.com/) - ROMs / Atari Consoles
|
||||
* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [ROMs For MAME](https://www.romsformame.com/), [PleasureDome](https://pleasuredome.github.io/pleasuredome/mame/), [MAME World](https://mameworld.info/) or [Arcade Database](http://adb.arcadeitalia.net/default.php?lang=en) - Arcade MAME ROMs
|
||||
* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [PleasureDome](https://pleasuredome.github.io/pleasuredome/mame/), [MAME World](https://mameworld.info/) or [Arcade Database](http://adb.arcadeitalia.net/default.php?lang=en) - Arcade MAME ROMs
|
||||
* [PICOwesome](https://rentry.co/FMHYB64#picowesome) - PICO-8 ROMs
|
||||
* [POP Unofficial Website](https://popuw.com/) - Prince of Persia ROMs / Mods
|
||||
* [FFHacktics](https://ffhacktics.com/smf/) - Final Fantasy Tactics Mods / [Discord](https://discord.gg/xpXa8VEV2k)
|
||||
|
|
@ -353,7 +356,7 @@
|
|||
* ⭐ **[WiiUDownloader](https://github.com/Xpl0itU/WiiUDownloader)**, [WiiUSBHelper](https://github.com/FailedShack/USBHelperInstaller/releases) or [JNUSTool](https://gbatemp.net/threads/jnustool-nusgrabber-and-cdecrypt-combined.413179/) - ROMs / Wii U
|
||||
* ⭐ **[NesFiles](https://www.nesfiles.com/)** or [FC Gallery](https://fcpic.nesbbs.com/index_en.html) - ROMs / NES / Famicom
|
||||
* [taodung](https://taodung.com/) - ROMs / 3DS / Switch
|
||||
* [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROMs / NES / Gameboy
|
||||
* [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROMs / NES / Game Boy
|
||||
* [64DD.org](https://64dd.org/) - ROMs / 64DD
|
||||
* [NXBrew](https://nxbrew.net/) - ROMs / Switch
|
||||
* [SwitchGamesMall](https://switchgamesmall.icu/) - ROMs / Switch / DDL / Torrents / [Discord](https://discord.gg/rgttByzYRY)
|
||||
|
|
@ -362,6 +365,8 @@
|
|||
* [ROMSLAB](https://romslab.com/) - ROMs / Switch
|
||||
* [SwitchROM](https://switchroms.io/) - ROMs / Switch
|
||||
* [GNS](https://rentry.co/FMHYB64#gns) - ROMs / Switch
|
||||
* [RetroNDS](https://t.me/retronds) - ROMs / Switch / Telegram Required
|
||||
* [NSWTL](https://nswtl.info/) - ROMs / Switch / Torrents / Telegram Required
|
||||
* [NSWDB](https://www.nswdb.com) - Switch Release Tracker
|
||||
* [3DSDB](https://3dsdb.com/) - 3DS Release Tracker
|
||||
* [SM64ROMHacks](https://rentry.co/FMHYB64#sm64romhacks) - Super Mario 64 Mods / [Discord](https://discord.com/invite/BYrpMBG)
|
||||
|
|
@ -388,6 +393,7 @@
|
|||
|
||||
* ⭐ **[NoPayStation](https://nopaystation.com/)** - ROMs / PS3 / PSP / PSVita / [Discord](https://discord.com/invite/rNGrkUY)
|
||||
* ⭐ **[PSVitaVPK](https://psvitavpk.com/)** - ROMs / PSVita
|
||||
* [AlvRo](https://rentry.co/FMHYB64#alvro) - ROMs / PS2 / PW: `ByAlvRo`
|
||||
* [PKGPS4](https://www.pkgps4.click/) - ROMs / PS4
|
||||
* [PS3R](https://ps3r.com/) - ROMs / PS3
|
||||
* [PSXROMs](https://psxroms.pro/) - ROMs / PS2 / PSP
|
||||
|
|
@ -398,49 +404,39 @@
|
|||
## ▷ Browser Emulators
|
||||
|
||||
* 🌐 **[Browser Emulator Index](https://emulation.gametechwiki.com/index.php/Emulators_on_browsers)** - List of Browser Emulators
|
||||
* ↪️ **[EmulatorJS / NeptunJS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_emulatorjs_.2F_neptunjs)** - Frontends for EmulatorJS / NeptuneJS
|
||||
* ⭐ **[GAM.ONL](https://gam.onl/)**, [2](https://www.retrogames.onl/) - Multi-Console
|
||||
* ⭐ **[Console Living Room](https://archive.org/details/consolelivingroom)** - Multi-Console / Archive.org
|
||||
* ⭐ **[Telemelt](https://telemelt.com/)** - Multiplayer Browser Emulator
|
||||
* ⭐ **[GAM.ONL](https://gam.onl/)**, [2](https://www.retrogames.onl/) - Multi-Console Browser Emulator
|
||||
* ⭐ **[EmulatorJS](https://demo.emulatorjs.org/)** - Multi-Console Browser Emulator / [Supported Systems](https://emulatorjs.org/docs/systems) / [Discord](https://discord.gg/6akryGkETU) / [GitHub](https://github.com/EmulatorJS/EmulatorJS)
|
||||
* ⭐ **[Console Living Room](https://archive.org/details/consolelivingroom)** - Multi-Console Browser Emulator
|
||||
* ⭐ **[RetroArch Web](https://web.libretro.com/)** - Multi-Console Browser Emulator
|
||||
* ⭐ **[Eclipse](https://eclipseemu.me/play/)** - Retro-Console Browser Emulator / [Discord](https://discord.gg/dTCnM2r5e5)
|
||||
* [ClassicGames](https://www.classicgames.me/) - Retro-Console Browser Emulator
|
||||
* [RetroGames.cc](https://www.retrogames.cc/) - Retro-Console Browser Emulator
|
||||
* [PlayRetroGames](https://www.playretrogames.com/) - Retro-Console Browser Emulator
|
||||
* [RetroGames](https://www.retrogames.cz/) - Retro-Console Browser Emulator
|
||||
* [PlayRetroGames](https://playretrogames.net/) - Retro-Console Browser Emulator / [Discord](https://discord.gg/qw9caq2qEg)
|
||||
* [Vizzed](https://www.vizzed.com/) - Multi-Console Browser Emulator
|
||||
* [PlayEmulator](https://playemulator.online/) - Multi-Console Browser Emulator
|
||||
* [Online Retro Games](https://www.vincenzoscarpa.it/emuwiki/pmwiki/pmwiki.php?n=OnlineGames.OnlineGames&lng=en) - Retro-Console Browser Emulator
|
||||
* [Tiny8bit](https://floooh.github.io/tiny8bit/) - Retro-Console Browser Emulator / [GitHub](https://github.com/floooh/chips-test)
|
||||
* [Play Classic Games](https://playclassic.games/) - Retro-Console Browser Emulator
|
||||
* [OldGameShelf](https://oldgameshelf.com/) - Retro-Console Browser Emulator
|
||||
* [Virtual Consoles](https://virtualconsoles.com/) - Retro-Console Browser Emulator
|
||||
* [AfterPlay](https://afterplay.io/play/recently-played) - Multi-Console Browser Emulator / [Discord](https://discord.gg/PtgKse35q7)
|
||||
* [WebRCade](https://play.webrcade.com/) - Retro-Console Browser Emulator / [Discord](https://discord.gg/C4gXN2HJAv) / [GitHub](https://github.com/webrcade)
|
||||
* [EmuGames](https://www.emugames.net/) - Multi-Console Browser Emulator
|
||||
* [Online.OldGames](https://online.oldgames.sk/) - Multi-Console Browser Emulator
|
||||
* [ClassicReload](https://classicreload.com/) - Multi-Console Browser Emulator
|
||||
* [Retro Games Bot](https://retrogamesbot.com/) - Retro-Console Browser Emulator
|
||||
* [rom.so](https://rom.so/) - Multi-Console Browser Emulator / Sign-Up Required
|
||||
* [PS1FUN](https://www.ps1fun.com/) - PS1 Browser Emulator
|
||||
* [Aurora](https://skitty.xyz/aurora/) - Nintendo / Sega Console Browser Emulator / [Discord](https://discord.gg/UAf7Bad)
|
||||
* [LetsPlayGB](https://www.letsplaygb.com/) - Game Boy Browser Emulator
|
||||
* [SNESFun](https://www.snesfun.com/) - SNES Browser Emulator
|
||||
* [8bbit](https://www.8bbit.com/) or [Play NES](https://www.playnesonline.com/) - NES Browser Emulators
|
||||
* ⭐ **[RetroArch Web](https://web.libretro.com/)** - Multi-Console
|
||||
* ⭐ **[EmulatorJS](https://demo.emulatorjs.org/)** - Multi-Console / [Supported Systems](https://emulatorjs.org/docs/systems) / [Discord](https://discord.gg/6akryGkETU) / [GitHub](https://github.com/EmulatorJS/EmulatorJS)
|
||||
* ⭐ **[Eclipse](https://eclipseemu.me/play/)** - Multi-Console / [Discord](https://discord.gg/dTCnM2r5e5)
|
||||
* [AfterPlay](https://afterplay.io/play/recently-played) - Multi-Console / [Discord](https://discord.gg/PtgKse35q7)
|
||||
* [rom.so](https://rom.so/) - Multi-Console / Sign-Up Required
|
||||
* [Online Retro Games](https://www.vincenzoscarpa.it/emuwiki/pmwiki/pmwiki.php?n=OnlineGames.OnlineGames&lng=en) - Retro Consoles / Archive.org
|
||||
* [RetroGames](https://www.retrogames.cz/) - Retro Consoles
|
||||
* [Retro Games Bot](https://retrogamesbot.com/) - Retro Consoles
|
||||
* [Aurora](https://skitty.xyz/aurora/) - Retro Consoles / [Discord](https://discord.gg/UAf7Bad)
|
||||
* [WebRCade](https://play.webrcade.com/) - Retro Consoles / [Discord](https://discord.gg/C4gXN2HJAv) / [GitHub](https://github.com/webrcade)
|
||||
* [Vizzed](https://www.vizzed.com/) - Retro Consoles / Multiple-Emulators
|
||||
* [Online.OldGames](https://online.oldgames.sk/) - Retro Consoles / Multiple-Emulators
|
||||
* [ClassicGames](https://www.classicgames.me/) - Retro Consoles / Multiple-Emulators
|
||||
* [Play Classic Games](https://playclassic.games/) - Retro Consoles / Multiple-Emulators
|
||||
* [Virtual Consoles](https://virtualconsoles.com/) - Retro Consoles / Multiple-Emulators
|
||||
* [ClassicReload](https://classicreload.com/) - Retro Consoles / Multiple-Emulators
|
||||
* [Meowio](https://www.information-superhighway.net/meowio/) - NES Browser Emulator / Custom Music + Sounds
|
||||
* [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROM Emulator / NES / Gameboy
|
||||
* [SSega](https://www.ssega.com/) or [Sega Play](https://sega-play.online/) - Sega Browser Emulators
|
||||
* [Let's Play Sega](https://www.letsplaysega.com/) - Sega Genesis Browser Emulator
|
||||
* [Mega Drive Emulator](https://megadrive-emulator.com/) - Sega Megadrive Browser Emulator
|
||||
* [Capcom Town](https://captown.capcom.com/en/retro_games) - Capcom Browser Emulator
|
||||
* [DosGames](https://dosgames.com/), [DOSDeck](https://dosdeck.com/), [PlayOldGames](https://playold.games/), [DOSZone](https://dos.zone/) / [Discord](https://discord.com/invite/hMVYEbG), [WePlayDOS](https://weplaydos.games/) / [Discord](https://discord.gg/82TAR6fJ8g) / [GitHub](https://github.com/muditjuneja/weplaydos.games), [DOSBox](https://www.dosbox.com/), [Online DOS games](https://dos.zczc.cz/) or [PlayDOSGames](https://www.playdosgames.com/) - DOS Browser Emulators
|
||||
* [NeoGeoFun](https://www.neogeofun.com/) - Neo Geo Browser Emulator
|
||||
* [RetroFab](https://itizso.itch.io/retrofab) or [LCD Games](http://bdrgames.nl/lcdgames/) / [GitHub](http://github.com/BdR76/lcdgame.js) - Retro LCD Game Emulators
|
||||
* [SNESFun](https://www.snesfun.com/) - SNES Browser Emulator / Multiplayer
|
||||
* [PS1FUN](https://www.ps1fun.com/) - PS1 Browser Emulator
|
||||
* [SSega](https://www.ssega.com/) - Sega Browser Emulators / Multiplayer
|
||||
* [Sega Play](https://sega-play.online/) - Sega Browser Emulator
|
||||
* [File-Hunter](https://www.file-hunter.com/) - MSX / Amiga Browser Emulator
|
||||
* [QAOP](https://torinak.com/qaop/games) - ZX Spectrum
|
||||
* [MSXGamesWorld](https://www.msxgamesworld.com/) or [CheatMSX](https://www.cheatmsx.com/) - MSX Browser Emulators
|
||||
* [CommodoreGames](https://www.commodoregames.net/) or [C64Online](https://c64online.com/) - C64 Browser Emulators
|
||||
* [CommodoreGames](https://www.commodoregames.net/) or [C64Online](https://c64online.com/) - Commodore / C64 Browser Emulators
|
||||
* [QAOP](https://torinak.com/qaop/games) - ZX Spectrum Browser Emulator
|
||||
* [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROM Emulator / NES / Gameboy
|
||||
* [Tiny8bit](https://floooh.github.io/tiny8bit/) - Vintage 8-Bit / [GitHub](https://github.com/floooh/chips-test)
|
||||
* [RetroFab](https://itizso.itch.io/retrofab) or [LCD Games](http://bdrgames.nl/lcdgames/) / [GitHub](https://github.com/BdR76/lcdgame.js) - Retro LCD Game Emulators
|
||||
* [DosGames](https://dosgames.com/), [DOSZone](https://dos.zone/) / [Discord](https://discord.com/invite/hMVYEbG), [WePlayDOS](https://weplaydos.games/) / [Discord](https://discord.gg/82TAR6fJ8g) / [GitHub](https://github.com/muditjuneja/weplaydos.games) or [PlayDOSGames](https://www.playdosgames.com/) - DOS Browser Emulators
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -457,8 +453,9 @@
|
|||
* [DailyDungeon](https://dailydungeon.net/) - Puzzle Dungeon Crawler
|
||||
* [Sokoban](https://suppilulemur.neocities.org/) - Zelda-Themed Sokoban Puzzles
|
||||
* [All The 2048](https://true65536.github.io/allthe2048/), [DuckDuckgo 2048](https://duckduckgo.com/?q=play+2048&ia=answer) or [2048](https://play2048.co/) - 2048 Puzzles
|
||||
* [JetHolt](https://jetholt.com/hacking/), [RebelWithoutACause](https://rebelwithoutarootcause.com/demos/terminal/) or [Aramor](http://aramor.epizy.com/fallout-terminal/main) - Fallout Terminal Hacking Game
|
||||
* [JetHolt](https://jetholt.com/hacking/), [RebelWithoutACause](https://rebelwithoutarootcause.com/demos/terminal/) or [Aramor](https://aramor.epizy.com/fallout-terminal/main) - Fallout Terminal Hacking Game
|
||||
* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game
|
||||
* [Queens Game](https://queensgame.io/) - N-Queens Problem Inspired Puzzle
|
||||
* [Orion](https://orion.lukasbach.com/) - Puzzle Game
|
||||
* [Euclidea](https://www.euclidea.xyz/) - Geometric Puzzles
|
||||
* [Pixel Puzzler](https://pixel-puzzler.playcurious.games/) or [UnFlip](https://unflipgame.com/) / [Discord](https://discord.com/invite/Hg6zVmTJeP) - Block Puzzles
|
||||
|
|
@ -500,7 +497,6 @@
|
|||
## ▷ Crosswords
|
||||
|
||||
* ⭐ **[Crosshare](https://crosshare.org/)** - Crossword Puzzles / Creator
|
||||
* [Down for a Cross](https://downforacross.com/) - Crossword Puzzles
|
||||
* [BestCrosswords](https://www.bestcrosswords.com/) - Crossword Puzzles
|
||||
* [Hovercats](https://hovercats.gg/) - Multiplayer Crosswords / [Discord](https://discord.gg/PwvKmJE6Xp)
|
||||
* [Truncate](https://truncate.town/) - Crossword Strategy Game
|
||||
|
|
@ -512,14 +508,15 @@
|
|||
|
||||
## ▷ Word Games
|
||||
|
||||
* 🌐 **[Wordleverse](https://wordleverse.net/)**, [WordleWeb](https://github.com/rarelygoeshere/WordleWeb), [Wordle Collection](https://rentry.org/v72n74fu), [Awesome Wordle](https://github.com/prakhar897/awesome-wordle), [Alldle](https://alldle.net/) or [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) - Wordle Game Index
|
||||
* 🌐 **[Wordleverse](https://wordleverse.net/)**, [DLES](https://dles.aukspot.com/), [WordleWeb](https://github.com/rarelygoeshere/WordleWeb), [Wordle Collection](https://rentry.org/v72n74fu), [Awesome Wordle](https://github.com/prakhar897/awesome-wordle), [Alldle](https://alldle.net/) or [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) - Wordle Game Indexes
|
||||
* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle
|
||||
* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)** / [GitHub](https://github.com/jakearchibald/wordle-analyzer/)
|
||||
* ⭐ **[MoreWords](https://www.morewords.com/)**, [PlayScrabble](https://playscrabble.com/) or [WordHub](https://wordhub.com/) - Scrabble
|
||||
* ⭐ **[Woogles](https://woogles.io/)**, [MoreWords](https://www.morewords.com/), [PlayScrabble](https://playscrabble.com/) or [WordHub](https://wordhub.com/) - Scrabble
|
||||
* [TheWordSearch](https://thewordsearch.com/) - Word Search Puzzles
|
||||
* [Make a Word Search](http://www.makeawordsearch.net/) or [Word Search Labs](https://wordsearchlabs.com/) - Word Search Creators
|
||||
* [Connections](https://connections.swellgarfo.com/) - Custom Word Puzzles
|
||||
* [RobinWords](https://www.robinwords.com/) - Word Ladder Game
|
||||
* [TiledWords](https://tiledwords.com/) - Daily Tile Rotation Word Game
|
||||
* [Word Golf](https://www.word.golf/) - Word Relation Game
|
||||
* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Games
|
||||
* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online
|
||||
|
|
@ -544,11 +541,12 @@
|
|||
|
||||
* 🌐 **[Online Board Games](https://drive.google.com/file/d/1NO-05LM-SakbwqNajBXgIO4HuCSkBd6n/view)** - Evan Leed's Board Games Index
|
||||
* ↪️ **[Tabletop Tools & Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools/#wiki_.25B7_tabletop_tools)**
|
||||
* ⭐ **[Roll20](https://roll20.net/)** / [Discord](http://discord.gg/roll20) or [Rolisteam](https://rolisteam.org/) / [Discord](https://discord.gg/MrMrQwX) - Online Virtual Tabletop Platforms
|
||||
* ⭐ **[Roll20](https://roll20.net/)** / [Discord](https://discord.gg/roll20) or [Rolisteam](https://rolisteam.org/) / [Discord](https://discord.gg/MrMrQwX) - Online Virtual Tabletop Platforms
|
||||
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Tabletop Games
|
||||
* [VirtualTabletop](https://virtualtabletop.io/) - Multiplayer Tabletop Games / [GitHub](https://github.com/ArnoldSmith86/virtualtabletop)
|
||||
* [PlayOK](https://www.playok.com/) - Multiplayer Tabletop Games
|
||||
* [Screentop](https://screentop.gg/) - Online Tabletop Games / [Discord](https://discord.gg/wva8ebh)
|
||||
* [BoardSpace](https://boardspace.net/english/index.shtml) - Online Board Games / [GitHub](https://github.com/ddyer0/boardspace.net)
|
||||
* [FreeBoardGames](https://www.freeboardgames.org/) - Online Board Games / [Discord](https://discord.gg/AaE6n3n) / [GitHub](https://github.com/freeboardgames/FreeBoardGames.org)
|
||||
* [FunNode](https://www.funnode.com/) - Online Board Games
|
||||
* [Board Game Online](https://www.boardgame-online.com/) - Online Board Games
|
||||
|
|
@ -557,7 +555,7 @@
|
|||
* [lishogi.org](https://lishogi.org/) - Shogi / [Discord](https://discord.gg/YFtpMGg3rR)
|
||||
* [Online-Go.com](https://online-go.com/) - Multiplayer GO
|
||||
* [lidraughts.org](https://lidraughts.org/) - Multiplayer Checkers
|
||||
* [Colonist](https://colonist.io/) - Settlers of Catan-Style Board Game / [Subreddit](https://www.reddit.com/r/Colonist/) / [Discord](https://discord.gg/colonist)
|
||||
* [Colonist](https://colonist.io/) - Settlers of Catan Board Game / [Subreddit](https://www.reddit.com/r/Colonist/) / [Discord](https://discord.gg/colonist)
|
||||
* [Party Project](https://char64.itch.io/partyproject) - Mario Party-Style Tabletop Games / [Discord](https://discord.gg/nhUQwpGEQR)
|
||||
* [Richup.io](https://richup.io/) - Monopoly-Style Board Game / [Discord](https://discord.gg/r6uJ6bq8ZH)
|
||||
* [Rally the Troops](https://www.rally-the-troops.com/) - Historical-Style Board Games / [Discord](https://discord.gg/CBrTh8k84A)
|
||||
|
|
@ -587,6 +585,7 @@
|
|||
* ↪️ **[Tabletop Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools#wiki_.25B7_tabletop_tools)**
|
||||
* ⭐ **[World of Card Games](https://worldofcardgames.com/)** - Multiplayer Card Games
|
||||
* ⭐ **[Codenames](https://codenames.game/)** - Party Card Game
|
||||
* [OCTGN](https://www.octgn.net/) - Virtual Multiplayer Card Games / Tabletop App / [Discord](https://discord.gg/Yn3Jrpj) / [GitHub](https://github.com/octgn/OCTGN)
|
||||
* [CardGames.io](https://cardgames.io/) - Multiplayer Card Games
|
||||
* [247Games](https://www.247games.com/) - Multiplayer Card Games
|
||||
* [CardzMania](https://www.cardzmania.com/) - Multiplayer Card Games
|
||||
|
|
@ -617,7 +616,6 @@
|
|||
* ⭐ **[Mario Kart PC](https://mkpc.malahieude.net/mariokart.php)** - Browser SNES Style Mario Kart / Multiplayer / [Custom Maps](https://mkpc.malahieude.net/creations.php)
|
||||
* ⭐ **[Marble Blast Gold Web](https://marbleblast.vaniverse.io/)** / [GitHub](https://github.com/Vanilagy/MarbleBlast) or [Marble Blast Ultra](https://marbleblastultra.randomityguy.me/) / [GitHub](https://github.com/RandomityGuy/MBHaxe) - Browser Marble Blast
|
||||
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
|
||||
* [Tetris](https://tetris.com/), [LazyTetris](https://lazytetris.com/) or [Tetr.js](http://farter.cn/tetr.js/) - Tetris
|
||||
* [SMBGames](https://smbgames.be/) - Browser Super Mario
|
||||
* [SMWGames](https://www.smwgames.com/) - Modded Browser Super Mario World
|
||||
* [Level Share Square](https://levelsharesquare.com/) - Custom Mario Fangame Maps
|
||||
|
|
@ -625,9 +623,9 @@
|
|||
* [Snubby](https://rentry.co/FMHYB64#sr-game) - Browser Slime Rancher
|
||||
* [CelesteClassic](https://maddymakesgamesinc.itch.io/celesteclassic) - Full Classic Celeste
|
||||
* [Mega Man Games](https://www.megamangames.net/) - Browser Mega Man
|
||||
* [Play Snake](https://playsnake.org/), [Snake-Game](https://www.onemotion.com/snake-game/) or [Google Snake Mods](https://googlesnakemods.com/) / [Discord](https://discord.gg/NA6vHg62An) - Snake Style Games
|
||||
* [TENNIS!](https://snek-vunderkind.vercel.app/games/tennis.html) - JavaScript Pong
|
||||
* [SpaceCadetPinball](https://alula.github.io/SpaceCadetPinball) - Browser Space Cadet Pinball
|
||||
* [Google Snake Mods](https://googlesnakemods.com/) / [Discord](https://discord.gg/NA6vHg62An) / [GitHub](https://github.com/DarkSnakeGang/GoogleSnakeModLoader) , [Play Snake](https://playsnake.org/) or [Snake-Game](https://www.onemotion.com/snake-game/)- Snake Style Games
|
||||
* [LEGO Island Web Port](https://isle.pizza/) - Browser LEGO Island / [GitHub](https://github.com/isledecomp/isle-portable)
|
||||
* [Flappy Bird](https://flappybird.io/) - HTML5 Flappy Bird
|
||||
* [Lain Game](https://laingame.net/) - Lain Game Browser Emulator
|
||||
|
|
@ -654,11 +652,10 @@
|
|||
* [The Race](https://therace.montblanclegend.com/), [2](https://therace.montblancexplorer.com/) - Driving Game
|
||||
* [slow roads](https://slowroads.io/) - Driving Game
|
||||
* [The Multiverse](https://across-multiverse.com/) - Universe Exploration Game Across
|
||||
* [Messenger](https://messenger.abeto.co/) - Relaxing 3D Delivery Game
|
||||
* [Starshine Legacy](https://starshine-legacy.starstable.com/index.html) - 3D Browser Mystery Game
|
||||
* [Neopets](https://www.neopets.com/), [tamaNOTchi](https://tamanotchi.world/) or [Marapets](https://www.marapets.com) - Virtual Pet Games / Sign-Up Required
|
||||
* [Gaia Online](https://www.gaiaonline.com/) - Anime Virtual Pet / Sign-Up Required
|
||||
* [First-Person Tetris](https://firstpersontetris.com/) - First Person Tetris
|
||||
* [Sandtris](https://sandtris.com/) - Falling Sand Style Tetris
|
||||
* [Edu-Games](https://www.edu-games.org/) - Educational Games
|
||||
|
||||
***
|
||||
|
|
@ -671,7 +668,6 @@
|
|||
* ⭐ **[Armor Games](https://armorgames.com/)** - Browser Games
|
||||
* [Nitrome](https://www.nitrome.com/) - Browser Games
|
||||
* [Browser Craft](https://browsercraft.com/) - Indie Browser Games
|
||||
* [RG Games](https://www.rgshows.me/games/) - Browser Games / [Discord](https://discord.gg/e34HMTgyEy)
|
||||
* [Addicting Games](https://www.addictinggames.com/) - Browser Games
|
||||
* [Kongregate](https://www.kongregate.com/) - Browser Games
|
||||
* [Y8](https://www.y8.com/) - Browser Games
|
||||
|
|
@ -685,15 +681,12 @@
|
|||
* [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
|
||||
* [GamePix](https://www.gamepix.com/) - Browser Games
|
||||
* [RoundGames](https://www.roundgames.com/) - Browser Games
|
||||
* [Snokido](https://www.snokido.com/) - Browser Games
|
||||
* [Game-Game](https://game-game.com/) - Browser Games
|
||||
* [ArcadeSpot](https://arcadespot.com/) - Browser Games
|
||||
* [Alfy](https://www.alfy.com/) - Browser Games
|
||||
* [Andkon](https://andkon.com/arcade/) - Browser Games
|
||||
* [FreeGames](https://freegames.org/) - Browser Games
|
||||
|
|
@ -706,7 +699,7 @@
|
|||
* [Rosebud AI](https://www.rosebud.ai/) or [Wild West](https://www.wildwest.gg/) - AI Made Browser Games
|
||||
* [Noel Friedrich](https://www.noel-friedrich.de/terminal/) - Browser Terminal Games
|
||||
* [ABA Games](https://www.asahi-net.or.jp/~cs8k-cyu/browser.html) - Single Button Games
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [gn-math](https://gn-math.github.io/), [frogie's arcade](https://frogiesarca.de/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) - Browser Games / Unblocked at Schools
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [gn-math](https://gn-math.github.io/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) - Browser Games / Unblocked at Schools
|
||||
* [FlashMuseum](https://flashmuseum.org/), [Flash Arch](https://flasharch.com/en) or [AlbinoBlackSheep](https://www.albinoblacksheep.com/games/) - Flash Games
|
||||
* [Arcade Prehacks](https://www.arcadeprehacks.com/) or [KongHack](https://konghack.com/) - Flash Game Mods
|
||||
* [Js13kGames](https://js13kgames.com/entries), [HTML5 Games](https://html5games.com/) or [TheBestarcade](https://html5.thebestarcadescript.com/) - HTML5 Games
|
||||
|
|
@ -716,28 +709,27 @@
|
|||
|
||||
## ▷ Party / Multiplayer
|
||||
|
||||
* ⭐ **[TETR.IO](https://tetr.io/)** - Multiplayer Tetris / [Discord](https://discord.com/invite/tetrio) / [GitHub](https://github.com/tetrio/) / [Plus](https://gitlab.com/UniQMG/tetrio-plus) / [Skin Database](https://you.have.fail/tetrioplus//) / [Stats](https://tsbeta.dan63.by/)
|
||||
* ⭐ **[Eaglercraft](https://eaglercraft.com/)**, [EaglerCraftX](https://fastest.eaglercraft.win/) / [2](https://client.eaglercraft.win/) or [Minecraft Classic](https://classic.minecraft.net/) - Online Browser Minecraft / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#eaglercraft-note) / [Site List](https://deev.is/)
|
||||
* ⭐ **Eaglercraft Tools** - [Mod Loader](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Create Mods](https://eaglerforge-builder.vercel.app/) / [Public Servers](https://servers.eaglercraft.com/)
|
||||
* ⭐ **[NetGames](https://netgames.io/)** - Multiple Games / [Discord](https://discord.com/invite/chgD7WF)
|
||||
* ⭐ **[Gidd.io](https://gidd.io/)** - Multiple Games
|
||||
* ⭐ **[Gartic Phone](https://garticphone.com/)** - Telephone Game / [Discord](https://discord.gg/gartic)
|
||||
* ⭐ **[skribbl](https://skribbl.io/)**, [DrawBattle](https://drawbattle.io/) / [Discord](https://discord.gg/D6aHB4hRhK), [Sketchful](https://sketchful.io/) / [Subreddit](https://reddit.com/r/Sketchful) / [Discord](https://discord.gg/MEvtMCv), [Drawize](https://www.drawize.com/) or [Gartic](https://gartic.io/) - Drawing / Guessing Game / Multiplayer
|
||||
* [Tough Love Arena](https://toughlovearena.com/) - Multiplayer Browser Fighting Game / [Discord](https://discord.gg/gMBRaUPDT7)
|
||||
* [AWBW](https://awbw.amarriner.com/) - Multiplayer Browser Advance Wars / [Discord](https://discord.com/invite/rPpWT2x)
|
||||
* [Bloxd](https://bloxd.io/) / [Discord](https://discord.com/invite/vwMp5y25RX) or [MiniBlox](https://miniblox.io/) / [Discord](https://discord.com/invite/nAwzkUJNmb) - Online Minecraft Clones
|
||||
* [Jstris](https://jstris.jezevec10.com/) - Multiplayer Tetris / [Plus](https://discord.gg/mtX8ek82xb) / [Skin Database](https://docs.google.com/spreadsheets/d/1xO8DTORacMmSJAQicpJscob7WUkOVuaNH0wzkR_X194/htmlview#)
|
||||
* [Game Of Bombs](https://gameofbombs.com/) - Multiplayer Bomberman Style MMO
|
||||
* [PandaBomber](https://pandabomber.gg/) - Multiplayer Bomberman Style Game / [Discord](https://discord.gg/YFJCCxkdFZ)
|
||||
* [Splatoon.io](https://splatoon.io/) - Multiplayer Splatoon Style Game
|
||||
* [Slither.io](http://slither.io/) - Grow the Longest Worm
|
||||
* [Slither.io](https://slither.io/) - Grow the Longest Worm
|
||||
* [Make It Meme](https://makeitmeme.com/) - Meme Party Game
|
||||
* [Hexar.io](http://www.hexar.io/) or [splix.io](https://splix.io/) - Control the Map
|
||||
* [Hexar.io](https://www.hexar.io/) or [splix.io](https://splix.io/) - Control the Map
|
||||
* [Powerline.io](https://powerline.io/) - Multiplayer Snake / [Discord](https://discord.com/invite/NckDSyb)
|
||||
* [agar.io](https://agar.io/) - Become the Biggest Circle
|
||||
* [mope.io](https://mope.io/) - Become the Biggest Animal / [Discord](https://discord.com/invite/nQAVB9c)
|
||||
* [TagPro](https://koalabeast.com/) - Multiplayer Capture the Flag / [Discord](https://discord.com/invite/hhW3MDzrt3)
|
||||
* [Golf Party](https://golfparty.io/) - Multiplayer Mini Golf Game
|
||||
* [Bloob.io](https://bloob.io/) - Multiple Games
|
||||
* [Gidd.io](https://gidd.io/) - Multiple Games
|
||||
* [Yucata](https://www.yucata.de/en/) - Multiple Games
|
||||
* [Foony](https://foony.com/) - Multiple Games
|
||||
* [Pixoguess](https://pixoguess.io/) - Guess Pixelated Images
|
||||
|
|
@ -767,7 +759,7 @@
|
|||
* [IFArchive](https://www.ifarchive.org/) - Text Adventures
|
||||
* [Web Adventures](https://www.web-adventures.org/) - Text Adventures
|
||||
* [Seedship](https://philome.la/johnayliff/seedship/play/index.html) - Text Adventures
|
||||
* [TextAventures](http://textadventures.co.uk/) - User-Made Text Adventures
|
||||
* [TextAventures](https://textadventures.co.uk/) - User-Made Text Adventures
|
||||
* [WrittenRealms](https://writtenrealms.com/), [Genesis](https://www.genesismud.org/), [Fateful Quest](https://fateful.quest/) or [Level 13](https://nroutasuo.github.io/level13/) - Individual Adventures
|
||||
* [Muds](https://muds.fandom.com/wiki/) - Text Adventure ROMs
|
||||
* [SolutionArchive](https://solutionarchive.com/) - Text Adventure Solutions
|
||||
|
|
@ -779,13 +771,13 @@
|
|||
* ⭐ **[Play-CS](https://play-cs.com/)** - Browser Counter-Strike 1.6
|
||||
* ⭐ **[NZP](https://nzp.gay/)** - Browser COD Zombies
|
||||
* ⭐ **[Krunker.io](https://krunker.io/)**, [2](https://browserfps.com/) - PvP FPS
|
||||
* [OpenArena Live](https://kosmi.io/openarena) or [Q1K3](https://js13kgames.com/games/q1k3/index.html) - Quake Inpired Games
|
||||
* [OpenArena Live](https://kosmi.io/openarena) or [Q1K3](https://js13kgames.com/games/q1k3/index.html) - Quake Inspired Games
|
||||
* [WebLiero](https://www.webliero.com/) - Multiplayer Liero Clone
|
||||
* [Venge](https://venge.io/) - PvP FPS
|
||||
* [kour.io](https://kour.io/), [2](https://kourio.online/) - PvP FPS
|
||||
* [ev.io](https://ev.io/) - PvP FPS
|
||||
* [Deadshot](https://deadshot.io/) - PvP FPS
|
||||
* [LolShot](https://lolshot.io/) - PvP FPS
|
||||
* [1v1.LOL](https://1v1.lol/) - 1v1 Building / Battle Simulator
|
||||
* [ShellShock](https://www.shellshock.io/) - PvP FPS
|
||||
* [MiniRoyale](https://miniroyale.io/) - Battle Royale Game
|
||||
* [ZombsRoyale.io](https://zombsroyale.io/) - Top-Down Battle Royale
|
||||
|
|
@ -813,7 +805,8 @@
|
|||
|
||||
## ▷ Simulation
|
||||
|
||||
* [HatTrick](https://www.hattrick.org/) - Multiplayer Football Manager
|
||||
* [HatTrick](https://www.hattrick.org/) - Multiplayer Football League Manager
|
||||
* [MatchSimulator](https://matchsimulator.com/) - Football League Simulator
|
||||
* [FSHistory](https://s-macke.github.io/FSHistory/) - Play Classic Flight Simulator
|
||||
* [Hacker Wars](https://hackerwars.io/) - Hacking Simulators
|
||||
* [Startup Simulator](https://toggl.com/startup-simulator/) - Startup Simulation Game
|
||||
|
|
@ -845,9 +838,6 @@
|
|||
* [Forumwarz](https://www.forumwarz.com/) - Browser RPG
|
||||
* [Dungeon Crawl](https://crawl.develz.org/) - Browser RPG
|
||||
* [Isleward](https://bigbadwaffle.itch.io/isleward) - Browser RPG
|
||||
* [BitBurner](https://bitburner-official.github.io/) - Incremental RPG
|
||||
* [ProgressQuest](http://progressquest.com/) - Idle RPG
|
||||
* [Idlescape](https://www.play.idlescape.com/) - Idle MMORPG
|
||||
* [Hordes.io](https://hordes.io/) / [Discord](https://discord.com/invite/hordes) or [Aberoth](https://aberoth.com/) - Browser MMORPGs
|
||||
* [RPGMaker Game Archive](https://archive.org/details/rpgmaker-net-game-archive) - Collection of Games From RPGMaker
|
||||
|
||||
|
|
@ -866,11 +856,14 @@
|
|||
|
||||
## ▷ Incremental / Idle
|
||||
|
||||
* 🌐 **[r/Incremental_Games](https://www.reddit.com/r/incremental_games/wiki/list_of_incremental_games)**, [Galaxy Click](https://galaxy.click/), [Incremental Game Plaza](https://plaza.dsolver.ca/), [IncrementalDB](https://www.incrementaldb.com/) or [Almost Idle](https://almostidle.com/) - Incremental Games Indexes
|
||||
* 🌐 **[r/Incremental_Games](https://www.reddit.com/r/incremental_games/wiki/list_of_incremental_games)**, [Galaxy Click](https://galaxy.click/), [IncrementalDB](https://www.incrementaldb.com/) or [Almost Idle](https://almostidle.com/) - Incremental Games Indexes
|
||||
* ⭐ **[Cookie Clicker](https://orteil.dashnet.org/cookieclicker/) / [2](https://orteil.dashnet.org/experiments/cookie/)** - Incremental Cookie Game
|
||||
* ⭐ **Cookie Clicker Tools** - [Multiple Tools](https://github.com/CookieMonsterTeam/CookieMonster) / [Calculator](https://coderpatsy.bitbucket.io/cookies/cookies.html) / [Discord](https://discord.com/invite/cookie)
|
||||
* [The Thorp of Woodstock](https://cheerfulghost.github.io/civ-clicker/index.html) - Build a Civilization
|
||||
* [Universal paperclips](https://www.decisionproblem.com/paperclips/index2.html) - A Paperclip Creation Simulator
|
||||
* [BitBurner](https://bitburner-official.github.io/) - Incremental RPG
|
||||
* [Progress Quest](http://progressquest.com/play/) - Idle RPG / [Discord](https://discord.com/invite/dz7MFNU)
|
||||
* [Idlescape](https://www.play.idlescape.com/) - Idle MMORPG
|
||||
* [Universal Paperclips](https://www.decisionproblem.com/paperclips/index2.html) - A Paperclip Creation Simulator
|
||||
* [MousePoint](https://creativetechguy.com/mousepoint) - Incremental Mouse Movement Game
|
||||
* [CandyBox](https://candybox2.github.io/) - Candy Eating Game
|
||||
* [Particle Clicker](https://particle-clicker.web.cern.ch/) - Incremental Particle Physics Games
|
||||
|
|
@ -888,7 +881,7 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Trivia Games
|
||||
## ▷ Trivia
|
||||
|
||||
* ⭐ **[GuessTheGame](https://guessthe.game/)** or [Gamedle](https://www.gamedle.wtf/) - Game Guessing Games
|
||||
* [TriviaDuel](https://www.triviaduel.com/), [Fun Trivia](https://www.funtrivia.com/), [Sporcle](https://www.sporcle.com/), [uQuiz](https://uquiz.com/), [ARealMe](https://www.arealme.com/) or [JetPunk](https://www.jetpunk.com/) - Quiz / Trivia
|
||||
|
|
@ -905,10 +898,10 @@
|
|||
* [AMQ](https://animemusicquiz.com/) - Anime Theme Guessing
|
||||
* [ConnectTheStars](https://connectthestars.xyz/) or [Movie To Movie](https://movietomovie.com/) - Connect Stars through Movies
|
||||
* [Play Football](https://playfootball.games/) - Football Quizzes / Trivia
|
||||
* [The Wiki Game](https://www.thewikigame.com/), [Six Degrees of Wikipedia](https://www.sixdegreesofwikipedia.com/) or [WikiRacer](https://wikiracer.io/) - Wiki Exploration Games / [Automation Tool](https://gitlab.com/johanbluecreek/wikiracer)
|
||||
* [The Wiki Game](https://www.thewikigame.com/) or [WikiRacer](https://wikiracer.io/) - Wiki Exploration Games / [Automation Tool](https://www.sixdegreesofwikipedia.com/), [2](https://gitlab.com/johanbluecreek/wikiracer)
|
||||
* [Catfishing](https://catfishing.net/) - Wiki Article Guessing Game
|
||||
* [More or Less](https://moreorless.io/) - More or Less Guessing
|
||||
* [Muzify](https://muzify.com/), [Musicle](https://musicle.app/), [Bandle](https://bandle.app/), [Spotle](https://spotle.io/) or [Lofidle](https://lofidle.com/) - Music / Song Guessing Games
|
||||
* [Muzify](https://muzify.com/) (signup), [Musicle](https://musicle.app/), [Bandle](https://bandle.app/), [Spotle](https://spotle.io/) or [Lofidle](https://lofidle.com/) - Music / Song Guessing Games
|
||||
* [DanceMusic](https://dancemusic.wtf/) - Electronic Music Genre Guessing Game
|
||||
* [Guess My Rank](https://guessmyrank.com/) - Guess Player Game Ranks
|
||||
* [Poeltl](https://poeltl.nbpa.com/) - NBA Guessing Game
|
||||
|
|
@ -929,14 +922,27 @@
|
|||
* [Owdle](https://owdle.guessing.day/) - Overwatch 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
|
||||
|
||||
***
|
||||
|
||||
## ▷ GeoGuessr Games
|
||||
## ▷ Tetris
|
||||
|
||||
* ⭐ **[TETR.IO](https://tetr.io/)** - Multiplayer Browser Tetris / [Plus](https://gitlab.com/UniQMG/tetrio-plus) / [Skin Database](https://you.have.fail/tetrioplus//) / [Stats](https://tsbeta.dan63.by/) / [Discord](https://discord.com/invite/tetrio) / [GitHub](https://github.com/tetrio/)
|
||||
* [Jstris](https://jstris.jezevec10.com/) - Multiplayer Browser Tetris / [Plus](https://discord.gg/mtX8ek82xb) / [Skin Database](https://docs.google.com/spreadsheets/d/1xO8DTORacMmSJAQicpJscob7WUkOVuaNH0wzkR_X194/htmlview#)
|
||||
* [Tetra eSports](https://tetraesports.com/) - Competitive Multiplayer Tetris / [Discord](https://discord.gg/6EFdcGuWKn)
|
||||
* [Apotris](https://akouzoukos.com/apotris/play/) - Customizable Browser Tetris w/ Responsive Controls / [Multi-Platform](https://akouzoukos.com/apotris) / [Source](https://gitea.com/akouzoukos/apotris)
|
||||
* [Tetris](https://tetris.com/) - Browser Tetris
|
||||
* [LazyTetris](https://lazytetris.com/) - Browser Tetris
|
||||
* [Tetr.js](http://farter.cn/tetr.js/) - Browser Tetris
|
||||
* [First-Person Tetris](https://firstpersontetris.com/) - First Person Tetris
|
||||
* [Sandtris](https://sandtris.com/) - Falling Sand Style Tetris
|
||||
|
||||
***
|
||||
|
||||
## ▷ GeoGuessr
|
||||
|
||||
* 🌐 **[GGHY](https://gghy.net/)** - GeoGuessr Resources
|
||||
* ⭐ **[Plonk It](https://www.plonkit.net/)** / [Discord](https://discord.gg/plonk-it-854419081813164042), **[Regionguessing](https://docs.google.com/spreadsheets/d/1UNvkoY-LaktF75nU_cP7-wVRAEvH3fSqVZet20HqxXA)**, [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd), [GeoMetas](https://www.geometas.com/), [GeoPrep](https://geoprep.fun/) or [Top Tricks](https://somerandomstuff1.wordpress.com/2019/02/08/geoguessr-the-top-tips-tricks-and-techniques/) - GeoGuessr Guides / Tips
|
||||
* ⭐ **[Plonk It](https://www.plonkit.net/)** / [Discord](https://discord.gg/plonk-it-854419081813164042), **[Regionguessing](https://docs.google.com/spreadsheets/d/1UNvkoY-LaktF75nU_cP7-wVRAEvH3fSqVZet20HqxXA)**, [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd), [GeoMetas](https://www.geometas.com/) 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 / Sign-Up Required
|
||||
* ⭐ **[Globle](https://globle-game.com/)** - Country Hot-or-Cold Guessing Game
|
||||
* [LearnableMeta](https://learnablemeta.com/) / [Discord](https://discord.gg/AcXEWznYZe) or [helloquiz](https://helloquiz.app/) / [Discord](https://discord.gg/td7bN9HKhX) - Geoguessr Practice Maps
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* [Scribus](https://www.scribus.net/) or [Quarkdown](https://quarkdown.com/) / [GitHub](https://github.com/iamgio/quarkdown) - Page Layout & Typesetting Programs
|
||||
* [Images.weserv.nl](https://images.weserv.nl/) - Image Editing Server
|
||||
* [GradientArt](https://gra.dient.art/) or [TailBlend](https://tailblend.vercel.app/) - Gradient Editor
|
||||
* [Canvas](https://www.nvidia.com/en-us/studio/canvas/) - Turn Simple Art into Photorealistic Landscapes
|
||||
* [Canvas](https://www.nvidia.com/en-us/studio/creative-side-hustle/) - Turn Simple Art into Photorealistic Landscapes
|
||||
* [Image Splitter](https://ruyili.ca/image-splitter/) - Split Images into Tiles
|
||||
* [PicFont](https://picfont.com/) - Add Text to Images
|
||||
|
||||
|
|
@ -25,15 +25,13 @@
|
|||
* ↪️ **[Adobe Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
||||
* ↪️ **[Android Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_image_tools)**
|
||||
* ⭐ **[GIMP](https://www.gimp.org/)** / Windows, Mac, Linux / [Photoshop UI](https://github.com/Diolinux/PhotoGIMP) / [Texture Synthesizer](https://github.com/bootchk/resynthesizer) / [Discord](https://discord.gg/kHBNw2B) / [Subreddit](https://www.reddit.com/r/GIMP/) / [GitLab](https://gitlab.gnome.org/GNOME/gimp)
|
||||
* ⭐ **[Pinta Project](https://www.pinta-project.com/)** / Windows, Mac, Linux / [GitHub](https://github.com/PintaProject/Pinta)
|
||||
* ⭐ **[ImageMagick](https://imagemagick.org/index.php)** / Windows, Mac, Linux, iOS / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php) / [GitHub](https://github.com/imagemagick/imagemagick)
|
||||
* [Affinity](https://www.affinity.studio/) / Windows, Mac / [No Login Method ](https://rentry.co/FMHYB64#affinity)
|
||||
* [LazPaint](https://lazpaint.github.io/) / Windows, Mac, Linux / [GitHub](https://github.com/bgrabitmap/lazpaint/)
|
||||
* [PhotoDemon](https://photodemon.org/) / Windows / [GitHub](https://github.com/tannerhelland/PhotoDemon)
|
||||
* [RapidRAW](https://github.com/CyberTimon/RapidRAW) / Windows, Mac, Linux
|
||||
* [Paint.net](https://www.getpaint.net/index.html) / Windows / [GitHub](https://github.com/paintdotnet)
|
||||
* [Gimel Studio](https://gimelstudio.com/) / Windows / [GitHub](https://github.com/GimelStudio/GimelStudio)
|
||||
* [darktable](https://www.darktable.org/) - Virtual Lighttable & Darkroom / Windows, Mac, Linux / [GitHub](https://github.com/darktable-org/darktable)
|
||||
* [RawTherapee](https://www.rawtherapee.com/) - Raw Image Editor / Windows, Mac, Linux / [GitHub](https://github.com/RawTherapee/RawTherapee)
|
||||
* [Hugin](https://hugin.sourceforge.io/) - Panorama Image Generator / Windows, Mac, Linux
|
||||
* [IOPaint](https://github.com/Sanster/IOPaint) - AI Image Multitool Editor
|
||||
|
||||
|
|
@ -50,7 +48,7 @@
|
|||
* [Polarr](https://photoeditor.polarr.co/) - Multi-Tool
|
||||
* [Resize Pixel](https://www.resizepixel.com/) - Multi-Tool
|
||||
* [Tom's Editor](https://tomseditor.com/editor/) - Multi-Tool
|
||||
* [photo.codes/](https://www.photo.codes/) - Simple Editor w/ Shareable Colab Codes
|
||||
* [photo.codes](https://www.photo.codes/) - Simple Editor w/ Shareable Colab Codes
|
||||
* [Photomate](https://photomate.dev/) - Simple Editor
|
||||
* [MiNi Photo Editor](https://mini2-photo-editor.netlify.app/) - Simple Editor / [GitHub](https://github.com/xdadda/mini-photo-editor)
|
||||
* [Polotno Studio](https://studio.polotno.com/) - Simple Editor / [GitHub](https://github.com/polotno-project/polotno-studio)
|
||||
|
|
@ -70,12 +68,12 @@
|
|||
|
||||
* ⭐ **[ObjectRemover](https://objectremover.com/)**, **[Lama Cleaner](https://lama-cleaner-docs.vercel.app/)**, [Inpaint](https://theinpaint.com/), [Cleanup.pictures](https://cleanup.pictures/) or [HAMA](https://www.hama.app/) - Object Removers
|
||||
* ⭐ **[BRIA RMBG](https://briaai-bria-rmbg-2-0.hf.space/)** - Background Remover
|
||||
* ⭐ **[BG Bye](https://bgbye.fyrean.com/)**, [2](https://fyrean.itch.io/bgbye-background-remover) - Background Remover / [GitHub](https://github.com/MangoLion/bgbye)
|
||||
* ⭐ **[BG Bye](https://bgbye.io/)**, [2](https://fyrean.itch.io/bgbye-background-remover), [3](https://bgbye.fyrean.com/) - Background Remover / [GitHub](https://github.com/MangoLion/bgbye)
|
||||
* [Pixelcut](https://www.pixelcut.ai/) - Background Remover
|
||||
* [Ripolas Background Remover](https://ripolas.org/background-remover/) - Background Remover
|
||||
* [BGNix](https://www.bgnix.com/) - Background Remover / [GitHub](https://github.com/thinkingjimmy/bg-remove)
|
||||
* [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background) - Background Remover
|
||||
* [remove.bg](https://www.remove.bg/) - Background Remover / [GIMP Plugin](https://github.com/manu12121999/RemoveBG-GIMP)
|
||||
* [remove.bg](https://www.remove.bg/) - Background Remover / [GIMP Plugin](https://github.com/manu12121999/RemoveBG-GIMP)
|
||||
* [ORMBG](https://huggingface.co/spaces/schirrmacher/ormbg) - Human Optimised Background Remover
|
||||
* [Rembg](https://github.com/danielgatis/rembg) - Self-Hosted Background Remover
|
||||
* [Segment Anything](https://segment-anything.com/) - Visual Segmentation / [GUI](https://github.com/dibrale/samist) / [Stable Diffusion WebUI](https://github.com/continue-revolution/sd-webui-segment-anything) / [Extensions](https://github.com/kevmo314/magic-copy)
|
||||
|
|
@ -95,7 +93,7 @@
|
|||
* [Bigjpg](https://bigjpg.com/) - Image Upscaling / Online
|
||||
* [Ilaria_Upscaler](https://huggingface.co/spaces/TheStinger/Ilaria_Upscaler) - Image Upscaling / Online
|
||||
* [Final2x](https://github.com/Tohrusky/Final2x) - Image Upscaling / Self-Hosted
|
||||
* [Lossless Scaling](https://rentry.co/FMHYB64#lossless-scaling) - Image Upscaling
|
||||
* [Lossless Scaling](https://fmhy.net/gaming#download-games) (search) - Image Upscaling
|
||||
* [imgupscaler](https://imgupscaler.com/) - Image Upscaling / Online
|
||||
* [QualityScaler](https://github.com/Djdefrag/QualityScaler) - Image Upscaling / Video Upscaling / Denoising / Self-Hosted
|
||||
* [resdet](https://github.com/0x09/resdet) - Detect Source Resolution of Upscaled Images / Self-Hosted
|
||||
|
|
@ -105,9 +103,10 @@
|
|||
## ▷ Image Effects
|
||||
|
||||
* ⭐ **[Mosh](https://moshpro.app/)**, [glitch2](https://akx.github.io/glitch2/) or [GlitchyImage](https://glitchyimage.com/) - Glitch Images
|
||||
* [PhotoFunia](https://photofunia.com/), [Tooooools](https://tooooools.app/) or [Image Mage](https://imagemageage.github.io/) - Photo Effects / Filters
|
||||
* [PhotoFunia](https://photofunia.com/), [effect.app](https://effect.app/), [Tooooools](https://tooooools.app/) or [Image Mage](https://imagemageage.github.io/) - Photo Effects / Filters
|
||||
* [Palettum](https://palettum.com/) - Add Custom Color Palettes to Images & GIFs / [GitHub](https://github.com/arrowpc/palettum)
|
||||
* [InColor](https://www.myheritage.com/incolor) - B&W Image Colorization / Sign-Up Required
|
||||
* [Dual Shades](https://dual-shades.anmolagrawal.dev/) - Generate B&W Images w/ Colorized Subjects
|
||||
* [PhotoJoiner](https://www.photojoiner.com/) - Collage Maker
|
||||
* [shabzefilters](https://shabzefilters.netlify.app/) - ASCII, Dot, Braille, Block, Line, etc
|
||||
* [AIDraw](https://ai-draw.tokyo/en/) or [FiniteCurve](https://www.finitecurve.com/) - Turn Photos into Line Art
|
||||
|
|
@ -115,9 +114,9 @@
|
|||
* [Fotosketcher](https://fotosketcher.com/) - Turn Photos into Artwork / Windows
|
||||
* [Mimi](https://mimi-panda.com/) - Turn Photos into Coloring Book Sketch
|
||||
* [Text-Image](https://www.text-image.com/) - Text Image Generator
|
||||
* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/), [Ditherista](https://github.com/robertkist/ditherista/) or [Dither Me This](https://doodad.dev/dither-me-this/) - Image Dithering
|
||||
* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/), [BDFM](https://bitmap.designfamilymarket.com/), [Ditherista](https://github.com/robertkist/ditherista/) or [Dither Me This](https://doodad.dev/dither-me-this/) - Image Dithering / Bitmap Generators
|
||||
* [Rutt-Etra-Izer](https://airtightinteractive.com/demos/js/ruttetra/) - Scanned-line Images
|
||||
* [Tinter](https://tinter.uxie.io/) - Hue Editor / [GitHub](https://github.com/uxie-io/tinter)
|
||||
* [Tinter](https://github.com/uxie-io/tinter) - Hue Editor
|
||||
* [Geometrize](https://www.geometrize.co.uk/) - Redraw Images with Geometric Shapes / [GitHub](https://github.com/Tw1ddle/geometrize)
|
||||
* [PBNify](https://pbnify.com/) - Paint by Number Tool
|
||||
* [Party-ify](https://nathanielw.github.io/party-ify/) - Party-ify Images
|
||||
|
|
@ -141,7 +140,7 @@
|
|||
* 🌐 **[Digital Art Brushes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_digital_brushes)** - Download Brushes
|
||||
* ⭐ **[Krita](https://krita.org/en/)** - Painting App / Windows, Mac, Linux / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [GitHub](https://github.com/KDE/krita)
|
||||
* ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting / Web
|
||||
* ⭐ **[AutoDraw](https://www.autodraw.com/)** - AI Drawing Tools / Web
|
||||
* ⭐ **[Pinta Project](https://www.pinta-project.com/)** - Painting App / Windows, Mac, Linux / [GitHub](https://github.com/PintaProject/Pinta)
|
||||
* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App / Windows
|
||||
* [Inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape)
|
||||
* [FireAlpaca](https://firealpaca.com/) - Painting App / Windows, Mac
|
||||
|
|
@ -149,6 +148,7 @@
|
|||
* [SumoPaint](https://sumopaint.com/) - Browser Painting / Web
|
||||
* [Wigglypaint](https://wigglypaint.net/) - Browser Painting / Animated Brushes
|
||||
* [Milton](https://www.miltonpaint.com/) - Infinite Canvas Painting / Windows, Linux / [GitHub](https://github.com/serge-rgb/milton)
|
||||
* [AutoDraw](https://www.autodraw.com/) - AI Drawing Tools / Web
|
||||
* [Provector](https://start.provector.app/) - Vector Editor / Web / [GitHub](https://github.com/diaoliu/provector)
|
||||
* [Graphite](https://graphite.rs/) - Vector Editor / Web / [GitHub](https://github.com/GraphiteEditor/Graphite)
|
||||
* [Vectorpea](https://www.vectorpea.com/) - Vector Editor / Web
|
||||
|
|
@ -190,9 +190,9 @@
|
|||
* [Pixelated](https://pixelated.vercel.app/) - Pixel Art Editor / Web
|
||||
* [PixilArt](https://www.pixilart.com/draw) - Pixel Art Editor / Web
|
||||
* [GraphicsGale](https://graphicsgale.com/us/) - Pixel Art Editor
|
||||
* [JPixel](https://emad.itch.io/jpixel) - Pixel Art Editor
|
||||
* [JPixel](https://pixelfromhell.itch.io/jpixel) - Pixel Art Editor
|
||||
* [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Editor
|
||||
* [PixelartVillage](https://pixelartvillage.com/), [Pixel It](https://giventofly.github.io/pixelit/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixel Art Converter / Web
|
||||
* [PixelartVillage](https://pixelartvillage.com/), [Pixel It](https://giventofly.github.io/pixelit/), [PixelartGenerator](https://pixelartgenerator.app/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixel Art Converter / Web
|
||||
* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor / Windows, Mac, Linux, Web / [Discord](https://discord.com/invite/GTMtr8s) / [GitHub](https://github.com/Orama-Interactive/Pixelorama)
|
||||
* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator / Web
|
||||
* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor / Windows, Mac, Linux, Android
|
||||
|
|
@ -212,7 +212,7 @@
|
|||
* [ScreenToGif](https://www.screentogif.com/) - GIF Recorder / Windows / [GitHub](https://github.com/NickeManarin/ScreenToGif)
|
||||
* [licecap](https://www.cockos.com/licecap/) - Create GIFs via Screencasts / Windows, Mac, Linux / [GitHub](https://github.com/justinfrankel/licecap)
|
||||
* [ugiffer](https://iobureau.com/ugiffer/) - Create GIFs via Screencasts / Windows
|
||||
* [blinkies.cafe](https://blinkies.cafe/) - Custom Retro Blinkie GIFs / Badges [GitHub](https://github.com/piconaut/blinkies.cafe)
|
||||
* [blinkies.cafe](https://blinkies.cafe/) - Custom Retro Blinkie GIFs / Badges [GitHub](https://github.com/piconaut/blinkies.cafe)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -224,7 +224,8 @@
|
|||
* [Memegine](https://memegine.com/) - Meme Search Engine
|
||||
* [MemeAtlas](https://www.memeatlas.com/) - Meme Templates
|
||||
* [GreenScreenMemes](https://greenscreenmemes.com/) - Green Screen Memes
|
||||
* [iFake](https://ifaketextmessage.com/) - Fake Text Conversation Creator
|
||||
* [TweetGen](https://www.tweetgen.com/) - Fake Tweet Creator
|
||||
* [iFake](https://ifaketextmessage.com/) - Fake Text 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
|
||||
|
|
@ -244,7 +245,7 @@
|
|||
|
||||
# ► Design Resources / Ideas
|
||||
|
||||
* 🌐 **[Art Gainz](https://pilssken.neocities.org/gainz/)** or [Evernote.Design](https://www.evernote.design/) - Design Resources
|
||||
* 🌐 **[Evernote.Design](https://www.evernote.design/)** - Design Resources
|
||||
* ⭐ **[archives.design](https://archives.design/)** - Graphic Design Archive
|
||||
* ⭐ **[awwwards](https://www.awwwards.com/websites)** - Website Design Ideas
|
||||
* [One Page Love](https://onepagelove.com/) - Single Page Site Design Ideas
|
||||
|
|
@ -257,12 +258,13 @@
|
|||
## ▷ Design Apps
|
||||
|
||||
* ⭐ **[Figma](https://www.figma.com/)** - Design Collab App / Web
|
||||
* [Canva](https://www.canva.com/) - Design App / Windows, Mac, Web
|
||||
* [Canva](https://www.canva.com/) - Design App / Windows, Mac, Web / [Invites](https://rentry.co/FMHYB64#canva)
|
||||
* [lunacy](https://icons8.com/lunacy) - Design App / Windows, Mac, Linux
|
||||
* [VistaCreate](https://create.vista.com/) - Design App / Web
|
||||
* [blush](https://blush.design/) - Illustration Design / Web
|
||||
* [Pattern Ninja](https://patterninja.com/) - Background / Pattern Design / Web
|
||||
* [Pixelied](https://pixelied.com/) - Online Design Tool / Web
|
||||
* [Antlii](https://antlii.work/) - Online Design Generators
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -276,7 +278,7 @@
|
|||
* [Bitmoji](https://www.bitmoji.com/) - Full Body Avatar Creator
|
||||
* [Avatar Maker](https://avatarmaker.com/), [Avataaars](https://getavataaars.com/) or [Personas](https://personas.draftbit.com/) - Simple Avatar Creators
|
||||
* [MultiAvatar](https://multiavatar.com/) - Generate Random Avatars
|
||||
* [FreeLogoMaker](https://myfreelogomaker.com/) or [OnlineLogoMaker](https://www.onlinelogomaker.com/) - Logo Creators
|
||||
* [FreeLogoMaker](https://myfreelogomaker.com/), [BrandCrowd](https://www.brandcrowd.com/) or [OnlineLogoMaker](https://www.onlinelogomaker.com/) - Logo Creators
|
||||
* [Logo Fast](https://logofa.st/) or [LogoFreeway](https://logofreeway.com/logos.php) - Simple Logo Creators Based on Premade Icons
|
||||
* [LogoMaker](https://www.namecheap.com/logo-maker/app/new/) - Generate Logos Based on Project Name & Style
|
||||
* [PFP Finder](https://pfpfinder.com) - PFPs / Avatars
|
||||
|
|
@ -302,10 +304,8 @@
|
|||
* [MatLib](https://matlib.gpuopen.com/main/materials/all) - Textures
|
||||
* [TextureNinja](https://texture.ninja/) - Textures
|
||||
* [cgbookcase](https://www.cgbookcase.com/) - Textures
|
||||
* [Texture Collection](https://rentry.co/FMHYB64#texture-collection) - Textures
|
||||
* [Subtle Patterns](https://www.toptal.com/designers/subtlepatterns/) - Patterns
|
||||
* [Background Tiles](https://background-tiles.com/) - Patterns
|
||||
* [Pattern Collection](https://rentry.co/FMHYB64#pattern-collection) - Patterns
|
||||
* [ArmorLab](https://armorlab.org/), [Pixela](https://pixela.ai/), [Texture Library](https://www.texture-library.com/) or [TextureLab](https://www.texturelab.io/) - Texture Generators
|
||||
* [TextureLab](https://njbrown.itch.io/texturelab) - Procedural Texture Generator / [Discord](https://discord.com/invite/975NdQPsSc) / [GitHub](https://github.com/njbrown/texturelab)
|
||||
* [Material Maker](https://rodzilla.itch.io/material-maker) - Procedural Texture Creator
|
||||
|
|
@ -322,14 +322,13 @@
|
|||
|
||||
* [Gumroad](https://gumroad.com/) (Enter $0)
|
||||
* [psdkeys](https://psdkeys.com/)
|
||||
* [AvaxGFX](https://avxgfx.com/)
|
||||
* [Freeject](https://www.freeject.net/)
|
||||
* [Salvaged](https://salvaged.nu/)
|
||||
* [AvaxGFX](https://avxgfx.com/)
|
||||
* [Cg_peers Archive](https://t.me/Cgpeers_archive)
|
||||
* [PNGTree](https://pngtree.com/)
|
||||
* [TianUI](https://www.titanui.com/)
|
||||
* [Designer Candies](https://designercandies.net/category/freebies/)
|
||||
* [GraphixTree](https://graphixtree.com/)
|
||||
* [PSDLY](https://www.psdly.to/)
|
||||
* [Unblast](https://unblast.com/)
|
||||
* [CGArchives](https://cgarchives.com/)
|
||||
|
|
@ -374,9 +373,8 @@
|
|||
* [Footyrenders](https://www.footyrenders.com/) - Football Related Images
|
||||
* [PSDGraphics](https://www.psdgraphics.com/) - PSD Files
|
||||
* [Placeit](https://placeit.net/) - Image Templates
|
||||
* [Worldvectorlogo](https://worldvectorlogo.com/), [Logos & Badges Bundle](https://rentry.co/FMHYB64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [seeklogo](https://seeklogo.com/) or [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/) - Logo Search / Designs
|
||||
* [Worldvectorlogo](https://worldvectorlogo.com/), [Brands of the World](https://www.brandsoftheworld.com/), [seeklogo](https://seeklogo.com/) or [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/) - Logo Search / Designs
|
||||
* [MariaLetta](https://github.com/MariaLetta/mega-doodles-pack) - Free Doodles
|
||||
* [Watercolor Collection](https://rentry.co/FMHYB64#watercolor-collection) - Download Watercolor Pictures
|
||||
* [googleimagerestored](https://git.sr.ht/~fanfare/googleimagesrestored) - Old Google Image Search
|
||||
* [Block Posters](https://www.blockposters.com/), [PosterRazor](https://posterazor.sourceforge.io/) or [Rasterbator](https://rasterbator.net/) - Create Printable Posters
|
||||
|
||||
|
|
@ -439,21 +437,21 @@
|
|||
* [twnsnd](https://nos.twnsnd.co/) - Vintage Photos / Public Domain
|
||||
* [PNGIMG](https://pngimg.com/) or [stickpng](https://www.stickpng.com/) - PNG Photos / Noncommercial License
|
||||
* [gfxmountain](https://gfxmountain.com/stock-photos/) - Stock Photo Collections
|
||||
* [FreePik Downloader](https://freepik-downloader.beatsnoop.com/) or [freepikuz_pro](https://t.me/freepikuz_pro) - FreePik Downloaders
|
||||
* [freepikuz_pro](https://t.me/freepikuz_pro) - FreePik Downloader
|
||||
* [Flickr Commons](https://www.flickr.com/commons) - Public Photo Archives / [Downloader](https://github.com/beaufour/flickr-download)
|
||||
* [Shutterstock Premium](https://t.me/shutterstockpremium), [freestockphotos](https://t.me/freestockphotos) or [Shutter](https://t.me/Shutter) - Shutterstock Telegram Downloaders
|
||||
* [Nohat](https://nohat.cc/), [FreeImages](https://www.freeimages.com/), [cgispread](https://cgispread.com/), [Vecteezy](https://www.vecteezy.com/) or [FreeDesignFile](https://freedesignfile.com/) - Misc Stock Photos / Vectors
|
||||
* [publicdomainvectors](https://publicdomainvectors.org/), [Free Vector](https://www.freevector.com/), [VectorJunky](https://www.vectorjunky.com/), [freevectors](https://www.freevectors.net/) or [vector4free](https://www.vector4free.com/) - Misc Vectors
|
||||
* [VectorPortal](https://www.vectorportal.com/) - Vector Collections / Creative Common Attribution
|
||||
* [123freevectors](https://www.123freevectors.com/) - Background Vectors
|
||||
* [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/), [Mockups](https://mockups.pixeltrue.com/) or [MockupsForFree](https://mockupsforfree.com/) - Product Mockups
|
||||
* [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/) or [Mockups](https://mockups.pixeltrue.com/) - Product Mockups
|
||||
|
||||
***
|
||||
|
||||
## ▷ Art / Illustrations
|
||||
|
||||
* ⭐ **[Kemono](https://kemono.cr/posts?tag=)** - Patreon Content / Some NSFW / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* ⭐ **[DeviantArt](https://www.deviantart.com/)** - User-Made Art / Fanart / [Frontend Instances](https://git.macaw.me/skunky/SkunkyArt/src/branch/master/INSTANCES.md)
|
||||
* ⭐ **[Kemono](https://kemono.cr/posts?tag=)** - Patreon Content / Some NSFW / [Patreon Redirect](https://sleazyfork.org/en/scripts/483259), [2](https://greasyfork.org/en/scripts/553616) / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* ⭐ **[DeviantArt](https://www.deviantart.com/)** - User-Made Art / Fanart
|
||||
* ⭐ **[ArtStation](https://www.artstation.com/)** - User-Made Art / Fanart / [Downloader](https://github.com/findix/ArtStationDownloader)
|
||||
* ⭐ **[Pixiv](https://www.pixiv.net/)** - Japanese Fanart
|
||||
* ⭐ **Pixiv Tools** - [Downloader](https://github.com/Nandaka/PixivUtil2), [2](https://github.com/xuejianxianzun/PixivBatchDownloader) / [Rankings](https://pixiv.navirank.com/) / [Official Frontend](https://pixiv.perennialte.ch/) / [Frontend List](https://pixivfe-docs.pages.dev/instance-list/) / [Preview](https://github.com/NightLancer/PixivPreview), [2](https://github.com/ppixiv/ppixiv) / [Android](https://github.com/Notsfsssf/pixez-flutter/blob/master/.github/README_en.md)
|
||||
|
|
@ -474,7 +472,6 @@
|
|||
* [reshot](https://www.reshot.com/), [freeillustrations](https://freeillustrations.xyz/), [DrawKit](https://www.drawkit.com/), [NiceIllustrations](https://niceillustrations.com/free-illustrations/) or [manypixels](https://www.manypixels.co/gallery) - Misc Illustrations
|
||||
* [OldBookIllustrations](https://www.oldbookillustrations.com/) - Illustrations from Old Books
|
||||
* [Plant Illustrations](http://www.plantillustrations.org/) - Plant Illustrations
|
||||
* [Animes Boxes](https://animebox.es/) - Booru Clients / [Telegram](https://t.me/Flexbooru/161)
|
||||
* [Buhitter](https://buhitter.com/) - X.com Illustration Search
|
||||
* [imgbrd-grabber](https://www.bionus.org/imgbrd-grabber/) - Booru Image Downloader
|
||||
* [Artbreeder](https://artbreeder.com/) - Image Discovery / Combining
|
||||
|
|
@ -484,7 +481,7 @@
|
|||
|
||||
## ▷ Media Covers / Posters
|
||||
|
||||
* ⭐ **[Ben Dodson](https://bendodson.com/projects/itunes-artwork-finder/)**, [2](https://bendodson.com/projects/apple-tv-movies-artwork-finder/) - Movies / TV / Music / Comic / Book / Anime / Manga / Games
|
||||
* ⭐ **[Ben Dodson](https://bendodson.com/projects/itunes-artwork-finder/)**, [2](https://bendodson.com/projects/apple-tv-movies-artwork-finder/) - Movies / TV / Music / Comic / Book / Anime / Manga
|
||||
* [BigBoxCollection](https://bigboxcollection.com/) - 3D Game Boxes
|
||||
* [The Poster DB](https://theposterdb.com/) / [Subreddit](https://www.reddit.com/r/ThePosterDB) / [Discord](https://discord.com/invite/NARZqQX), [DVD Covers](https://www.dvd-covers.org/) or [MediUX](https://mediux.pro/) - Movies / TV
|
||||
* [Movie Posters Gallery](https://www.moviepostersgallery.com/), [Film On Paper](https://www.filmonpaper.com/posters/), [The Poster Collector](https://postercollector.co.uk/) or [IMP Awards](http://www.impawards.com/) - Movies
|
||||
|
|
@ -514,7 +511,7 @@
|
|||
* ⭐ **[Thingiverse](https://www.thingiverse.com/)** - Share / Download 3D Models
|
||||
* ⭐ **[Printables](https://www.printables.com/)** - Find Practical 3D Models Ready for Printing
|
||||
* [Clara.io](https://clara.io/library), [PolyHaven](https://polyhaven.com/), [CadNav](https://www.cadnav.com/), [Open3dModel](https://open3dmodel.com/) or [Archibase](https://archibase.co/) - Misc 3D Models
|
||||
* [Sketchfab](https://sketchfab.com/), [3DArchive](https://t.me/ArchiveStl), [cgtrader](https://www.cgtrader.com/free-3d-models) or [3dsky](https://3dsky.org/) - Misc 3D Models / Sign-Up Required
|
||||
* [Sketchfab](https://sketchfab.com/), [Tripo Studio](https://studio.tripo3d.ai/) (temp mail), [3DArchive](https://t.me/ArchiveStl), [cgtrader](https://www.cgtrader.com/free-3d-models) or [3dsky](https://3dsky.org/) - Misc 3D Models / Sign-Up Required
|
||||
* [Cults](https://cults3d.com/), [Thangs](https://thangs.com/), [MakerWorld](https://makerworld.com/) or [Pinshape](https://pinshape.com/) - Printable 3D Models / Sign-Up Required
|
||||
* [STLFinder](https://www.stlfinder.com/) - Multi-Site Search
|
||||
* [3D Warehouse](https://3dwarehouse.sketchup.com/) - 3D Models Compatible with SketchUp / Sign-Up Required
|
||||
|
|
@ -530,6 +527,7 @@
|
|||
* [3D Find It](https://www.3dfindit.com/en/) - Industrial / Engineering 3D Models
|
||||
* [thebasemesh](https://www.thebasemesh.com/) - Mesh 3D Models
|
||||
* [BlenderKit](https://www.blenderkit.com/) - 3D Model Library Integrated into Blender
|
||||
* [Gridfinity](https://gridfinity.xyz/) - 3D Storage Systems
|
||||
* [CosplayStaticFigure](https://t.me/CosplayStaticFigure) - Cosplay / Figurine 3D Models
|
||||
* [3DBrute](https://3dbrute.com/), [3DZip](https://3dzip.org/) or [DesignConnected](https://www.designconnected.com/) - 3D Furniture Models
|
||||
* [Vertex](https://vertex.im/) - 3D Icons
|
||||
|
|
@ -542,13 +540,15 @@
|
|||
## ▷ 3D Modeling Apps
|
||||
|
||||
* ⭐ **[Blender](https://www.blender.org/)** - FOSS 3D Modeling App
|
||||
* ⭐ **Blender Tools** - [Resources](https://t.me/BlenderUniverse/3), [2](https://awesome-blender.netlify.app) / [Plugins](https://t.me/blenderplugs) / [Tutorials](https://www.3dbestie.com/) / [Textures](https://github.com/carson-katri/dream-textures) / [Renderer](https://github.com/prman-pixar/RenderManForBlender) / [3D Nodes](https://t.me/geometrynodes) / [AI Render](https://github.com/benrugg/AI-Render)
|
||||
* ⭐ **Blender Tools** - [Resources](https://awesome-blender.netlify.app/), [GitHub](https://github.com/agmmnn/awesome-blender) / [Addons](https://t.me/BlenderUniverse/3) / [Plugins](https://t.me/blenderplugs) / [Tutorials](https://www.3dbestie.com/) / [Textures](https://github.com/carson-katri/dream-textures) / [Renderer](https://github.com/prman-pixar/RenderManForBlender) / [3D Nodes](https://t.me/geometrynodes) / [AI Render](https://github.com/benrugg/AI-Render)
|
||||
* ⭐ **[MCprep](https://theduckcow.com/dev/blender/mcprep/)** - All-in-one Blender Addon / [Discord](https://discord.com/invite/mb8hBUC) / [GitHub](https://github.com/Moo-Ack-Productions/MCprep)
|
||||
* ⭐ **[Shap-e](https://github.com/openai/shap-e)** - Generate 3D Objects Based on Text / Image Prompts
|
||||
* [Goo Engine](https://www.dillongoostudios.com/gooengine/) - 3D Anime Blender Mod
|
||||
* [Meshy.ai](https://www.meshy.ai/) / [Discord](https://discord.com/invite/KgD5yVM9Y4) or [TRELLIS](https://trellis3d.github.io/) / [GitHub](https://github.com/microsoft/TRELLIS) / [HuggingFace](https://huggingface.co/spaces/JeffreyXiang/TRELLIS) - AI 3D Model Generators
|
||||
* [Meshy.ai](https://www.meshy.ai/) / [Discord](https://discord.com/invite/KgD5yVM9Y4), [Tripo Studio](https://studio.tripo3d.ai/) (temp mail) or [TRELLIS](https://trellis3d.github.io/) / [GitHub](https://github.com/microsoft/TRELLIS) / [HuggingFace](https://huggingface.co/spaces/JeffreyXiang/TRELLIS) - AI 3D Model Generators
|
||||
* [VFXmed](https://www.vfxmed.com/) - Blender Addons
|
||||
* [Wings 3D](https://www.wings3d.com/) - Cross-Platform 3D Modeling App
|
||||
* [JustSketchMe](https://justsketch.me/) - Cross-Platform 3D Pose Reference Tool
|
||||
* [MakeHuman](http://www.makehumancommunity.org/) - 3D Humanoid Modeler
|
||||
* [MakeHuman](https://static.makehumancommunity.org/) - 3D Humanoid Modeler
|
||||
* [PoseMy.art](https://app.posemy.art/), [SetPose](https://setpose.com/), [DesignDoll](https://terawell.net/en/index.php), [Magic Poser](https://magicposer.com/), [Quickposes](https://quickposes.com/en) or [JustSketchMe](https://app.justsketch.me/) - Posing Tools
|
||||
* [Vectary](https://www.vectary.com/), [Womp](https://beta.womp.com/), [Bloom3D](https://bloom3d.com/) or [Zdog](https://zzz.dog/) - Online 3D Modeling Tools
|
||||
* [FaceMaker](http://facemaker.uvrg.org/) - 3D Face / Avatar Generator
|
||||
|
|
@ -562,8 +562,6 @@
|
|||
|
||||
## ▷ 3D Modeling Tools
|
||||
|
||||
* [3D Printer Recs](https://redd.it/1bh9jud) - Hobbyist 3D Printer Recommendations
|
||||
* [Polymaker](https://wiki.polymaker.com/) - 3D Printing Guide / Community / [Discord](https://discord.com/invite/polymaker)
|
||||
* [Embossify](https://www.embossify.com/) or [Tripo3D](https://www.tripo3d.ai/app/home) - Image to 3D Model Converters
|
||||
* [3D Transformer](https://www.3dtransformer.com/) - Rotate 3D Images
|
||||
* [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter
|
||||
|
|
@ -574,7 +572,16 @@
|
|||
* [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)
|
||||
* [Ninja Ripper](https://kemono.cr/patreon/user/45591569) / [2](https://gamebanana.com/tools/5638) / [3](https://0curtain0.github.io/ninja_ripper.html) - Extract 3D Models from Games
|
||||
* [Ultimaker Cura](https://ultimaker.com/software/ultimaker-cura) - 3D Printing Software
|
||||
|
||||
***
|
||||
|
||||
## ▷ 3D Printing
|
||||
|
||||
* [Polymaker](https://wiki.polymaker.com/) / [Discord](https://discord.com/invite/polymaker) or [Teaching Tech](https://teachingtechyt.github.io/index.html) / [GitHub](https://github.com/teachingtechYT/teachingtechYT.github.io) - 3D Printer Guides / Learning
|
||||
* [3D Printer Recs](https://redd.it/1bh9jud) - Hobbyist 3D Printer Recommendations
|
||||
* [SpoolScout](https://www.spoolscout.com/) - Search / Compare 3D Printing Filament Prices
|
||||
* [OrcaSlicer](https://www.orcaslicer.com/) / [X](https://x.com/real_OrcaSlicer) / [Discord](https://discord.gg/P4VE9UY9gJ) / [GitHub](https://github.com/OrcaSlicer/OrcaSlicer), [PrusaSlicer](https://help.prusa3d.com/product/prusaslicer) / [GitHub](https://github.com/prusa3d/PrusaSlicer) or [Ultimaker Cura](https://ultimaker.com/software/ultimaker-cura) - 3D Printing Software
|
||||
* [e-NABLE](https://enablingthefuture.org/) - Volunteer Own 3D Printer for use in Prosthetic Limb Printing
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -601,17 +608,9 @@
|
|||
* ⭐ **[Muzli](https://search.muz.li/)** - Design Inspiration Search
|
||||
* ⭐ **[Slowpoke Pics](https://slow.pics/)**, [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) or [Image Comparison Tool](https://jklgit.github.io/Image-Comparison-in-Browser/index.html) - Image Comparisons
|
||||
* [odiff](https://github.com/dmtrKovalenko/odiff) - Image Visual Difference Tool
|
||||
* [PhotoFeeler](https://www.photofeeler.com/) - Get Photo Feedback
|
||||
* [Picviewer CE+](https://github.com/hoothin/UserScripts/tree/master/Picviewer%20CE+) - Turn Webpages into Image Galleries
|
||||
* [Universal Sig Rotator](https://sig.grumpybumpers.com/) - Rotates Image for Forum Signatures / Site Banners
|
||||
* [Binternet](https://github.com/Ahwxorg/Binternet) or [Pinvibe](https://www.pinvibe.com/) - Pinterest Frontend
|
||||
* [r/Photography Guide](https://www.reddit.com/r/photography/wiki/introduction) or [Cambridge In Colour](https://www.cambridgeincolour.com/) - Photography / Camera Guides
|
||||
* [PhotoEphemeris](https://photoephemeris.com/) - Photography Sunlight Calculator
|
||||
* [PixelPeeper](https://pixelpeeper.com/) - Extract Lightroom Edits / Settings
|
||||
* [MagicLantern](https://www.magiclantern.fm/) - Custom Canon EOS Firmware / [Unsupported](https://magiclantern.fandom.com/wiki/Other_dslr) / [Subreddit](https://www.reddit.com/r/MagicLantern/) / [Discord](https://discord.gg/uaY8akC)
|
||||
* [CHDK](https://chdk.fandom.com/wiki/CHDK) - Custom Canon PowerShot Firmware
|
||||
* [fSpy](https://fspy.io/) - Still Image Camera Matching
|
||||
* [DPReview](https://www.dpreview.com/reviews/image-comparison/fullscreen) - Camera Image Quality Comparison
|
||||
* [Binternet](https://github.com/Ahwxorg/Binternet) or [Pinvibe](https://www.pinvibe.com/) - Pinterest Frontends
|
||||
* [Image Color Summarizer](https://mk.bcgsc.ca/color-summarizer/) - Image Color Summarizer
|
||||
* [Image Colors](https://franciscouzo.github.io/image_colors/) - Image Color Scatter Plot
|
||||
* [Image Pixel Sorter](http://birdhat.org/misc/sort-pixels/) - Sort Pixels of Images
|
||||
|
|
@ -629,22 +628,20 @@
|
|||
* [BooruDatasetTagManager](https://github.com/starik222/BooruDatasetTagManager) - Booru Image Tagger
|
||||
* [Cluttr](https://gitlab.com/bearjaws/cluttr), [Exif Sorter](https://www.amok.am/en/freeware/amok_exif_sorter/) or [TagStudio](https://github.com/TagStudioDev/TagStudio) - Image File Organizers / Managers
|
||||
* [Allusion](https://allusion-app.github.io/) - Reference Image Manager
|
||||
* [Camera Wiki](http://camera-wiki.org/) - Camera Model Wiki
|
||||
* [Canon Camera Museum](https://global.canon/en/c-museum/camera-series.html) - History of Canon Cameras
|
||||
* [Something to Draw](https://something-to-draw.com/) - Find Things to Draw
|
||||
|
||||
***
|
||||
|
||||
## ▷ Image Compressors
|
||||
|
||||
* ↪️ **[Image Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_image_optimization)**
|
||||
* ⭐ **[Caesium](https://saerasoft.com/caesium/)** - Compression Software / [Web App](https://caesium.app/) / [CLI](https://github.com/Lymphatus/caesium-clt) / [GitHub](https://github.com/Lymphatus/caesium-image-compressor)
|
||||
* ⭐ **[Caesium](https://saerasoft.com/caesium/)** - Compression Software / [Web App](https://caesium.app/) / [CLI](https://github.com/Lymphatus/caesium-clt) / [GitHub](https://github.com/Lymphatus/caesium-image-compressor)
|
||||
* ⭐ **[Squoosh](https://squoosh.app/)** - Compressor / Converter / [GitHub](https://github.com/GoogleChromeLabs/squoosh)
|
||||
* ⭐ **[Seopix](https://www.seopix.io/)** - Batch Compressor / Editor
|
||||
* [optimize.photos](https://optimize.photos/) - Batch Compressor
|
||||
* [CompressImage](https://compressimage.io/) - Batch Compressor
|
||||
* [CrushImage](https://crushimage.com/) - Batch Compressor
|
||||
* [Bulk Image Compress](https://imagecompressr.com/) - Batch Compressor
|
||||
* [HiCompress](https://hicompress.com/tools) - Batch Compressor
|
||||
* [minipic](https://minipic.app/) - Batch Compressor / Converter
|
||||
* [Compress JPEG](https://compressjpeg.com/) - Batch Compressor / Unlimited Upload
|
||||
* [TinyPNG](https://tinypng.com/) or [TinyJPG](https://tinyjpg.com/) - Batch Compressor / 20MB Upload / [GitHub](https://github.com/tinify)
|
||||
|
|
@ -654,10 +651,25 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Image Optimization
|
||||
|
||||
* ⭐ **[ImageMagick](https://imagemagick.org/index.php)** - Image Optimization / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php)
|
||||
* [RIOT](https://riot-optimizer.com/) - Image Optimization
|
||||
* [YOGA](https://yoga.flozz.org/) - Image Optimization
|
||||
* [ImageFoo](https://imagefoo.com/) - Image Optimization
|
||||
* [tiny.pictures](https://tiny.pictures/) - Image Optimization
|
||||
* [Ihancer](https://ihancer.com) - Image Optimization
|
||||
* [Waifu2x](https://www.waifu2x.net/) - Image Optimization
|
||||
* [OxiPNG](https://github.com/shssoichiro/oxipng) - PNG Optimization
|
||||
* [Crunch](https://github.com/chrissimpkins/Crunch) - PNG Optimization / Self-Hosted / No Sign-Up
|
||||
|
||||
***
|
||||
|
||||
## ▷ Image Converters
|
||||
|
||||
* ↪️ **[File Converter](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_converters)** - Multi-Format Converters
|
||||
* ⭐ **[minipic](https://minipic.app/)**
|
||||
* [RedKetchup](https://redketchup.io/)
|
||||
* [Knvrt](https://www.knvrt.one/)
|
||||
* [Convertmyimage](https://convert-my-image.com/)
|
||||
* [ImageConvert](https://imageconvert.org/)
|
||||
|
|
@ -698,7 +710,6 @@
|
|||
* [OCR.SPACE](https://ocr.space/) - Online OCR
|
||||
* [OCRTool](https://ocrtool.net/) - Online OCR
|
||||
* [2OCR](https://2ocr.com/) - Online OCR
|
||||
* [Ocrify](https://ocrify.com/) - Online OCR
|
||||
* [OnlineOCR](https://onlineocr.org/) - Online OCR
|
||||
* [NewOCR](https://www.newocr.com/) - Online OCR
|
||||
* [OnlineOCR](https://www.onlineocr.net/) - Online OCR
|
||||
|
|
@ -743,7 +754,7 @@
|
|||
* [HomeGallery](https://home-gallery.org/)
|
||||
* [LibrePhotos](https://github.com/LibrePhotos/librephotos)
|
||||
* [Lychee](https://lycheeorg.github.io/)
|
||||
* [Photoprism](https://github.com/photoprism/photoprism)
|
||||
* [PhotoPrism](https://github.com/photoprism/photoprism)
|
||||
* [Photoview](https://github.com/photoview/photoview)
|
||||
* [Ente](https://help.ente.io/self-hosting/)
|
||||
* [Photonix](https://photonix.org/)
|
||||
|
|
@ -762,12 +773,12 @@
|
|||
## ▷ Online Galleries
|
||||
|
||||
* ⭐ **[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) / [Direct Link Grabber](https://imgur.plen.io/)
|
||||
* [Rimgo](https://rimgo.codeberg.page/), [2](https://codeberg.org/rimgo/instances) - Imgur Frontend
|
||||
* [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
|
||||
* [imgchest](https://imgchest.com/) - 10MB (30MB with Account) / 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) / [Direct Link Grabber](https://imgur.plen.io/)
|
||||
* [Google Photos](https://photos.google.com/) - 200MB / 15GB Cloud / Forever
|
||||
* [Ente](https://ente.io/) - Unlimited / 10GB Cloud
|
||||
* [Piczel](https://piczel.tv/) - 10MB / Forever / Sign-Up Required
|
||||
|
|
@ -781,7 +792,7 @@
|
|||
|
||||
## ▷ Image Hosts
|
||||
|
||||
* ⭐ **[PixVid](https://pixvid.org/)** - 32MB / Forever
|
||||
* ⭐ **[PixVid](https://pixvid.org/)** - 32MB / Forever / Some NSFW
|
||||
* ⭐ **[ImgBB](https://imgbb.com/)** - 32MB / Forever
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / [Proxy](https://fatbox.moe/) / [ShareX Config](https://files.catbox.moe/w4ztcf.sxcu)
|
||||
* [pixelfed](https://pixelfed.org/) - Decentralized Image Sharing Social Network / Sign-Up Required / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_pixelfed_tools) / [Android](https://gitlab.shinice.net/pixeldroid/PixelDroid) / [GitHub](https://github.com/pixelfed/pixelfed)
|
||||
|
|
@ -793,10 +804,8 @@
|
|||
* [YourImageShare](https://yourimageshare.com/) - 100MB / Forever
|
||||
* [pic.maxiol](https://pic.maxiol.com/) - 100MB / Forever
|
||||
* [GIFYU](https://gifyu.com/) - 50MB (100MB with Account) / Forever
|
||||
* [IMGDrop](https://imgdrop.io/) - 50MB / Forever
|
||||
* [ThumbSnap](https://thumbsnap.com/) - 48MB / Forever
|
||||
* [Kepkuldes](https://kepkuldes.com/) - 40MB / Forever
|
||||
* [FreeIMGHost](https://freeimghost.net/) - 20MB / Forever
|
||||
* [Pikky](https://pikky.net/) - 20MB / Forever
|
||||
* [imagebam](https://www.imagebam.com/) - 20MB / Forever
|
||||
* [imagevenue](https://www.imagevenue.com/) - 20MB / Forever
|
||||
|
|
@ -809,7 +818,7 @@
|
|||
|
||||
* ⭐ **[ShareX](https://getsharex.com/)** - Screenshot & Screen Recorder Tool / [Image Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_image_hosts) / [File Manager](https://xbackbone.app/) / [Discord](https://discord.com/invite/ShareX) / [GitHub](https://github.com/ShareX/ShareX)
|
||||
* ⭐ **[Flameshot](https://flameshot.org/)** / [GitHub](https://github.com/flameshot-org/flameshot)
|
||||
* ⭐ **[Zipline](https://zipline.diced.sh/)** / [GitHub](https://github.com/diced/zipline) or [yaass](https://github.com/tycrek/yaass) - Self-Hosted ShareX Server
|
||||
* ⭐ **[Zipline](https://zipline.diced.sh/)** - Self-Hosted ShareX Server / [GitHub](https://github.com/diced/zipline)
|
||||
* [Greenshot](https://getgreenshot.org/) / [GitHub](https://github.com/greenshot/greenshot)
|
||||
* [KSnip](https://github.com/ksnip/ksnip)
|
||||
* [Nimbus Capture](https://nimbusweb.me/screenshot.php)
|
||||
|
|
@ -817,7 +826,7 @@
|
|||
* [ScreenshotX](https://screenshotx.com/)
|
||||
* [Pilko](https://pilko.studio/) - Video Frame Capture Tool
|
||||
* [FRAMED](https://framedsc.com/index.htm) - In-Game Screenshotting Tips
|
||||
* [Moocup](https://moocup.jaydip.me/) - Screenshot Editor / Mockups / [GitHub](https://github.com/jellydeck/moocup/)
|
||||
* [Moocup](https://moocup.jaydip.me/) - Screenshot Editor / Mockups / [GitHub](https://github.com/jellydeck/moocup/)
|
||||
* [Screenshot Guru](https://screenshot.guru/), [Site-Shot](https://www.site-shot.com/) or [Pikwy](https://pikwy.com/) - Take Screenshots of Websites
|
||||
* [Screenshot Rocks](https://screenshot.rocks/) / [GitHub](https://github.com/daveearley/screenshot.rocks) - Create Screenshot Mockups of Websites
|
||||
* [paste.photos](https://www.paste.photos/) - Paste Image to Download
|
||||
|
|
@ -827,7 +836,7 @@
|
|||
|
||||
## ▷ Palette Generators
|
||||
|
||||
* ⭐ **[Color Designer](https://colordesigner.io/tools)**, [TheGoodColors](https://thegoodcolors.com/), [Super Color Palette](https://supercolorpalette.com/) or [Coolors](https://coolors.co/) - Color Palette Generators
|
||||
* ⭐ **[Color Designer](https://colordesigner.io/tools)**, [Color Palette Pro](https://colorpalette.pro/) / [Guide](https://colorpalette.pro/manual), [TheGoodColors](https://thegoodcolors.com/), [Super Color Palette](https://supercolorpalette.com/) or [Coolors](https://coolors.co/) - Color Palette Generators
|
||||
* [Clariss](https://www.clariss.xyz/), [Color Palette Generator](https://www.degraeve.com/color-palette), [Palitra](https://palitra.app/) or [Color Picker](https://imagecolorpicker.com/) - Generate Color Palettes from Images
|
||||
* [Color Space](https://mycolor.space/) - Generate Gradient Color Palettes
|
||||
* [Colors Wall](https://colorswall.com/) or [ColorKit](https://colorkit.co/color-palette-generator/) - Generate Random Color Palettes
|
||||
|
|
@ -859,24 +868,41 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Photo Forensics
|
||||
# ► Photography / Cameras
|
||||
|
||||
* ↪️ **[Android Camera](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_camera)** - Android Camera Resources / Tools
|
||||
* [r/Photography Guide](https://www.reddit.com/r/photography/wiki/introduction) or [Cambridge In Colour](https://www.cambridgeincolour.com/) - Photography / Camera Guides
|
||||
* [Camera Decision](https://cameradecision.com/) or [Digicamfinder](https://digicamfinder.com/) - Compare Cameras
|
||||
* [Camera Wiki](http://camera-wiki.org/) - Camera Model Wiki
|
||||
* [PhotoFeeler](https://www.photofeeler.com/) - Get Photo Feedback
|
||||
* [darktable](https://www.darktable.org/) / [GitHub](https://github.com/darktable-org/darktable), [RawTherapee](https://www.rawtherapee.com/) / [GitHub](https://github.com/RawTherapee/RawTherapee) or [LightZone](https://github.com/ktgw0316/LightZone) - RAW Photo Editors / Windows, Mac, Linux
|
||||
* [HDRMerge](https://jcelaya.github.io/hdrmerge/) - RAW Photography HDR Merge Tool / [GitHub](https://github.com/jcelaya/hdrmerge)
|
||||
* [PixelPeeper](https://pixelpeeper.com/) - Extract Lightroom Edits / Settings
|
||||
* [PhotoEphemeris](https://photoephemeris.com/) - Photography Sunlight Calculator
|
||||
* [MagicLantern](https://www.magiclantern.fm/) - Custom Canon EOS Firmware / [Unsupported](https://magiclantern.fandom.com/wiki/Other_dslr) / [Subreddit](https://www.reddit.com/r/MagicLantern/) / [Discord](https://discord.gg/uaY8akC)
|
||||
* [CHDK](https://chdk.fandom.com/wiki/CHDK) - Custom Canon PowerShot Firmware
|
||||
* [fSpy](https://fspy.io/) - Still Image Camera Matching
|
||||
* [DPReview](https://www.dpreview.com/reviews/image-comparison/fullscreen) - Camera Image Quality Comparison
|
||||
* [Canon Camera Museum](https://global.canon/en/c-museum/camera-series.html) - History of Canon Cameras
|
||||
|
||||
***
|
||||
|
||||
## ▷ Photo Forensics / Metadata
|
||||
|
||||
* 🌐 **[Photo OSINT](https://start.me/p/0PgzqO/photo-osint)** - Image OSINT Resources
|
||||
* ↪️ **[File Info / Metadata](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_info_.2F_metadata)**
|
||||
* ⭐ **[Fawkes](http://sandlab.cs.uchicago.edu/fawkes/)** - Facial Cloaking
|
||||
* ⭐ **[FotoForensics](https://www.fotoforensics.com/)**, [Sherloq](https://github.com/GuidoBartoli/sherloq) or [Forensically](https://29a.ch/photo-forensics/) - Photo Forensics Tools
|
||||
* [Picarta](https://picarta.ai/) / [Discord](https://discord.gg/g5BAd2UFbs), [GeoSpy](https://geospy.net/) or [GeoEstimation](https://labs.tib.eu/geoestimation) - Estimate Image Locations
|
||||
* [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter) or [CameraSummary](https://camerasummary.com/) - EXIF / Metadata Viewers
|
||||
* [exiftool](https://exiftool.org/), [2](https://github.com/FrankBijnen/ExifToolGui/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [MetaEditor](https://metaeditor.picvario.com/), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data
|
||||
* [Pic2Map](https://www.pic2map.com/) - Image EXIF data viewer with GPS support
|
||||
* [TheExifer](https://www.thexifer.net/), [Photini](https://github.com/jim-easterbrook/Photini) or [ColorPilot](https://www.colorpilot.com/exif.html) - Image EXIF Data Editors
|
||||
* [Picarta](https://picarta.ai/) / [Discord](https://discord.gg/g5BAd2UFbs), [GeoSpy](https://geospy.net/)
|
||||
or [GeoEstimation](https://labs.tib.eu/geoestimation) - Image Geolocation / Location Estimation
|
||||
* [Image Identification Project](https://www.imageidentify.com/) - Image Identification Tool
|
||||
* [StegOnline](https://georgeom.net/StegOnline/upload), [OpenStego](https://www.openstego.com/), [OpenPuff](https://embeddedsw.net/OpenPuff_Steganography_Home.html), [Steganography-PNG](https://pedrooaugusto.github.io/steganography-png/) / [GitHub](https://github.com/pedrooaugusto/steganography-png), [ImSter](https://github.com/DJayalath/ImSter), [stegano](https://bztsrc.gitlab.io/stegano/), [hide-text](https://all-tools.github.io/hide-text-in-image/) or [stegpy](https://github.com/izcoser/stegpy) - Images Steganography Tools
|
||||
* [Aperisolve](https://aperisolve.fr/) / [2](https://www.aperisolve.com/) or [stegextract](https://github.com/evyatarmeged/stegextract) - Steganography Analysis Tool
|
||||
* [Redacted](https://redacted.app/) - Blur, Pixelate or Blackout parts of Images
|
||||
* [Image Scrubber](https://everestpipkin.github.io/image-scrubber/) - Blur Images / Scrub Metadata
|
||||
* [Schizoware](https://sourceforge.net/projects/schizoware/) - Image Name / Hash Randomizer
|
||||
* [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter) or [CameraSummary](https://camerasummary.com/) - EXIF / Metadata Viewers
|
||||
* [exiftool](https://exiftool.org/), [2](https://github.com/FrankBijnen/ExifToolGui/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [MetaEditor](https://metaeditor.picvario.com/), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data
|
||||
* [Pic2Map](https://www.pic2map.com/) - Image EXIF data viewer with GPS support
|
||||
* [TheExifer](https://www.thexifer.net/), [Photini](https://github.com/jim-easterbrook/Photini) or [ColorPilot](https://www.colorpilot.com/exif.html) - Image EXIF Data Editors
|
||||
* [Base64 Image](https://www.base64-image.de/) - Encode / Decode Images
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Android Camera](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_camera)
|
||||
|
|
@ -7,10 +7,10 @@ hero:
|
|||
name: freemediaheckyeah
|
||||
tagline: The largest collection of free stuff on the internet!
|
||||
announcement:
|
||||
title: Oct 2025 Updates 🎃
|
||||
link: /posts/oct-2025
|
||||
title: Dec 2025 Updates ❄️
|
||||
link: /posts/dec-2025
|
||||
image:
|
||||
src: /test.png
|
||||
src: /xmasfmhy.png
|
||||
alt: FMHY Icon
|
||||
actions:
|
||||
- theme: brand
|
||||
|
|
@ -153,7 +153,7 @@ features:
|
|||
d="M 7 17h.01"/><path d="m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6
|
||||
7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"/><title>Miscellaneous</title></svg>
|
||||
link: /misc
|
||||
details: Content too niche to be included elsewhere.
|
||||
details: Various topics like food, travel, news, shopping, fun sites and more!
|
||||
---
|
||||
|
||||
<script setup>
|
||||
|
|
@ -175,7 +175,7 @@ onMounted(() => {
|
|||
const resetKawaii = () => {
|
||||
const images = document.querySelectorAll('.VPImage.image-src')
|
||||
images.forEach((img) => {
|
||||
img.src = '/test.png'
|
||||
img.src = '/xmasfmhy.png'
|
||||
})
|
||||
}
|
||||
if (kawaii === 'true') {
|
||||
|
|
|
|||
|
|
@ -17,8 +17,9 @@
|
|||
|
||||
## ▷ Network Tools
|
||||
|
||||
* ⭐ **[fast](https://fast.com/)** / [Blur Info](https://userstyles.world/style/17413) / [CLI](https://github.com/sindresorhus/fast-cli), **[Cloudflare Speed Test](https://speed.cloudflare.com/)** or **[LibreSpeed](https://librespeed.org/)** - Speed Tests
|
||||
* [Pinging](https://www.pinging.net/) or [PingTracer](https://github.com/bp2008/pingtracer) - Internet Uptime / Ping Monitors
|
||||
* ⭐ **[fast](https://fast.com/)** / [Blur Info](https://userstyles.world/style/17413) / [CLI](https://github.com/sindresorhus/fast-cli), **[Cloudflare Speed Test](https://speed.cloudflare.com/)**, **[OpenSpeedTest](https://openspeedtest.com/)** / [GitHub](https://github.com/openspeedtest/Speed-Test) or **[LibreSpeed](https://librespeed.org/)** - Speed Tests
|
||||
* ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall / [Discord](https://discord.com/invite/9ScnccuXaZ) / [GitHub](https://github.com/safing)
|
||||
* [Pinging](https://www.pinging.net/), [GlobalPing](https://globalping.io/) or [PingTracer](https://github.com/bp2008/pingtracer) - Network Testing / Ping Monitors
|
||||
* [NetBlocks](https://api.webprobe.org/) or [OpenNetMeter](https://github.com/Ashfaaq18/OpenNetMeter) - Internet Performance Monitor
|
||||
* [WiFi Analyzer](https://apps.microsoft.com/store/detail/wifi-analyzer/9NBLGGH33N0N) - WiFi Analyzer
|
||||
* [WireShark](https://www.wireshark.org/) - Network Protocol Analyzer / [Profiles](https://github.com/amwalding/wireshark_profiles)
|
||||
|
|
@ -28,7 +29,6 @@
|
|||
* [mRemoteNG](https://mremoteng.org/) - Remote Connections Manager
|
||||
* [Netbalancer](https://netbalancer.com/) - Internet Traffic Control
|
||||
* [Arcai](https://arcai.com/) - WiFi Speed Control
|
||||
* [NeverSSL](http://neverssl.com/) - Fix Public Wi-Fi Login Pages
|
||||
* [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
|
||||
|
|
@ -41,9 +41,8 @@
|
|||
## ▷ Password Managers
|
||||
|
||||
* ↪️ **[Password Privacy / 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
||||
* ⭐ **[KeePass](https://keepass.info/)** or **[KeePassXC](https://keepassxc.org/)**
|
||||
* ⭐ **KeePass Tools** - [Forks](https://keepass.info/download.html) / [Plugins](https://keepass.info/plugins.html) / [Read-Only Functionality](https://subdavis.com/Tusk/)
|
||||
* ⭐ **[Bitwarden](https://bitwarden.com/)** / [X](https://twitter.com/bitwarden) / [Subreddit](https://reddit.com/r/bitwarden) / [GitHub](https://github.com/bitwarden)
|
||||
* ⭐ **[Bitwarden](https://bitwarden.com/)** / [Alt Client](https://github.com/AChep/keyguard-app) / [X](https://x.com/bitwarden) / [Subreddit](https://reddit.com/r/bitwarden) / [GitHub](https://github.com/bitwarden)
|
||||
* ⭐ **[KeePass](https://keepass.info/)** / [Forks](https://keepass.info/download.html) / [Plugins](https://keepass.info/plugins.html) / [Read-Only](https://subdavis.com/Tusk/) or **[KeePassXC](https://keepassxc.org/)**
|
||||
* ⭐ **[Proton Pass](https://proton.me/pass)**
|
||||
* [Pashword](https://pashword.app/)
|
||||
* [LessPass](https://lesspass.com/)
|
||||
|
|
@ -58,8 +57,8 @@
|
|||
|
||||
* ⭐ **[Archive.today](https://archive.is/)** / [.li](https://archive.li/) / [.ph](https://archive.ph/) / [.vn](https://archive.vn/) / [.fo](https://archive.fo/) / [.md](https://archive.md/) - Archived Articles
|
||||
* ⭐ **[Bypass Paywalls Clean](https://gitflic.ru/project/magnolia1234/bpc_uploads)** - Browser Extensions / [X](https://x.com/Magnolia1234B)
|
||||
* ⭐ **[Freedium](https://freedium.cfd/)**, [ReadMedium](https://readmedium.com/) or [Medium Parser](https://github.com/Xatta-Trone/medium-parser-extension) - Bypass Medium Paywalls
|
||||
* ⭐ **[wallabag](https://wallabag.org/)** or [Ladder](https://github.com/everywall/ladder) - Self-Hosted
|
||||
* ⭐ **[Freedium](https://freedium-mirror.cfd/)**, [ReadMedium](https://readmedium.com/) or [Medium Parser](https://github.com/Xatta-Trone/medium-parser-extension) - Bypass Medium Paywalls
|
||||
* ⭐ **[wallabag](https://wallabag.org/)** or [Ladder](https://github.com/everywall/ladder) - Self-Hosted
|
||||
* [PaywallBuster](https://paywallbuster.com/) - Paywall Bypass Tools
|
||||
* [ByeByePaywall](https://byebyepaywall.com/en/) - Paywall Bypass Tools
|
||||
* [Bypass paywalls for scientific documents](https://greasyfork.org/en/scripts/35521) - Bypass Scientific Document Paywalls
|
||||
|
|
@ -90,10 +89,12 @@
|
|||
|
||||
## ▷ Chat Tools
|
||||
|
||||
* ↪️ **[Discord Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25BA_discord_tools)**
|
||||
* ↪️ **[Telegram Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25BA_telegram_tools)**
|
||||
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)**
|
||||
* ↪️ **[IRC Clients / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25B7_irc_tools)**
|
||||
* ⭐ **[Mumble](https://www.mumble.info/)**, [Jam](https://jam.systems/), [TeaSpeak](https://teaspeak.de/gb/) or [TeamSpeak](https://www.teamspeak.com/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#teamspeak-warning) - Voice Chat
|
||||
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [Convene](https://letsconvene.im/), [otr.to](https://otr.to/) / [GitHub](https://github.com/jermainee/otr.to), [Chitchatter](https://chitchatter.im/) / [GitHub](https://github.com/jeremyckahn/chitchatter) or [tik.io](https://tlk.io/) - Minimal / No Sign-Up Required Chats
|
||||
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [otr.to](https://otr.to/) / [GitHub](https://github.com/jermainee/otr.to), [Chitchatter](https://chitchatter.im/) / [GitHub](https://github.com/jeremyckahn/chitchatter) or [tik.io](https://tlk.io/) - Minimal / No Sign-Up Required Chats
|
||||
* ⭐ **[Gajim](https://gajim.org/)**, [CoyIM](https://coy.im/), [Profanity](https://profanity-im.github.io/) / [GitHub](https://github.com/profanity-im/profanity) or [xabber](https://www.xabber.com/) - XMPP Clients
|
||||
* [Pidgin](https://www.pidgin.im/) / [GitHub](https://keep.imfreedom.org/pidgin/pidgin/) or [Ferdium](https://ferdium.org/) / [GitHub](https://github.com/ferdium/ferdium-app) - Combine Web Apps / Chat Services
|
||||
* [MatterBridge](https://github.com/42wim/matterbridge) - Bridge for Multiple Chat Apps
|
||||
|
|
@ -108,7 +109,6 @@
|
|||
* [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
|
||||
* [Jitsi](https://jitsi.org/) - Video Chat / [Web App](https://meet.jit.si/) / [GitHub](https://github.com/jitsi/jitsi-meet)
|
||||
* [Hello](https://hello.vasanthv.me/) - Video Chat / [GitHub](https://github.com/vasanthv/hello)
|
||||
* [Briefing](https://brie.fi/ng) - Video Chat
|
||||
* [Talky](https://talky.io/) - Video Chat
|
||||
* [GoTeam](https://goteam.video/) - Video Chat
|
||||
|
|
@ -157,7 +157,6 @@
|
|||
* [WebFeed](https://taoshu.in/webfeed/turn-browser-into-feed-reader.html) - RSS Reader / Web-Based
|
||||
* [JungleReader](https://www.zajungle.com/) - RSS Reader / Web-Based
|
||||
* [JesterEngine](https://jesterengine.com/) - RSS Reader / Web-Based
|
||||
* [Tiny Tiny RSS](https://tt-rss.org/) - RSS Reader / Web-Based
|
||||
* [NewsPipe](https://github.com/cedricbonhomme/newspipe), [Miniflux](https://miniflux.app/), [selfoss](https://selfoss.aditu.de/), [FreshRSS](https://freshrss.org/), [Fusion](https://github.com/0x2E/fusion), [rss](https://codeberg.org/danb/rss) or [CommaFeed](https://www.commafeed.com/#/welcome) - Self-Hosted RSS Readers
|
||||
|
||||
***
|
||||
|
|
@ -184,7 +183,7 @@
|
|||
* ↪️ **[Reddit Search Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_reddit_search)**
|
||||
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [SimilarWeb](https://similarweb.com/), [SitesLikes](https://www.siteslike.com/), [TopSimilarSites](https://topsimilarsites.com/), [SimilarSites](https://similarsites.com/), [OpenDirectory](https://odir.us/) or [SiteLike.org](https://www.sitelike.org/) - Similar Site Searches
|
||||
* [sitedorks](https://github.com/Zarcolio/sitedorks), [Dorks-collections-list](https://github.com/cipher387/Dorks-collections-list/), [OSINT Dorks](https://github.com/BushidoUK/OSINT-SearchOperators), [Google Dork List](https://www.boxpiper.com/posts/google-dork-list), [Dork Genius](https://dorkgenius.com/) or [DorkSearch](https://www.dorksearch.com/) - Search Engine Dorking Tools
|
||||
* [UserSearch](https://usersearch.org/), [Sherlock](https://sherlockproject.xyz/), [Maigret](https://github.com/soxoj/maigret), [Nexfil](https://github.com/thewhiteh4t/nexfil), [Lullar](https://lullar-com-3.appspot.com/), [Blackbird](https://github.com/p1ngul1n0/blackbird) or [WhatsMyName](https://whatsmyname.app/) - Username Search
|
||||
* [UserSearch](https://usersearch.com/) / [2](https://usersearch.org/), [Sherlock](https://sherlockproject.xyz/), [Maigret](https://github.com/soxoj/maigret), [Nexfil](https://github.com/thewhiteh4t/nexfil), [Lullar](https://lullar-com-3.appspot.com/), [Blackbird](https://github.com/p1ngul1n0/blackbird) or [WhatsMyName](https://whatsmyname.app/) - Username Search
|
||||
* [Soovle](https://www.seo.com/soovle/), [Keyword.io](https://www.keyword.io/), [SearchEngineReports](https://searchenginereports.net/), [ContentIdeas](https://contentideas.io/) or [Keyword Tool](https://keywordtool.io/) - Popular Keyword Search
|
||||
* [DuckDuckBang](https://mosermichael.github.io/duckduckbang/html/main.html) - DuckDuckGo !bang Meta Search / [GitHub](https://github.com/MoserMichael/duckduckbang)
|
||||
* [KeywordSheeter](https://keywordsheeter.com/) or [Spyfu](https://www.spyfu.com/) - Keyword Research Tools
|
||||
|
|
@ -237,7 +236,6 @@
|
|||
* [TheOldNet](https://theoldnet.com/) or [OldVista](https://www.oldavista.com/) - Oldschool / Retro Site Search Engines
|
||||
* [OceanHero](https://oceanhero.today/) or [ekoru](https://ekoru.org/) - Ocean Protection Search Engines
|
||||
* [Ecosia](https://www.ecosia.org/) - Plant Trees via Search / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ecosia-the-green-search/) / [Chrome](https://chromewebstore.google.com/detail/ecosia-the-search-engine/eedlgdlajadkbbjoobobefphmfkcchfk)
|
||||
* [Mullvad Leta](https://leta.mullvad.net/)
|
||||
* [Presearch](https://presearch.com/) / [GitHub](https://github.com/presearchofficial)
|
||||
* [Bing](https://www.bing.com/)
|
||||
* [Google](https://google.com/) / [AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50)
|
||||
|
|
@ -264,7 +262,7 @@
|
|||
* [TV Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg) - Search TV Streaming Sites
|
||||
* [Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0), [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e)
|
||||
* [Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z), [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h) - Search Download Sites
|
||||
* [Virgil Software Search](https://virgil.samidy.com/software-search/) / [GitHub](https://github.com/SamidyFR/Virgil) or [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) - Search Software Sites
|
||||
* [Virgil Software Search](https://virgil.samidy.com/Software/) / [GitHub](https://github.com/SamidyFR/Virgil) or [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) - Search Software Sites
|
||||
* [Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj), [2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Search General Torrent Sites
|
||||
* [Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8), [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu), [3](https://cse.google.com/cse?cx=e9657e69c76480cb8), [4](https://cse.google.com/cse?cx=c46414ccb6a943e39), [5](https://ravebooksearch.com/), [6](https://recherche-ebook.fr/en/) - Search Reading Sites
|
||||
* [Audiobooks CSE](https://cse.google.com/cse?cx=006516753008110874046:cwbbza56vhd) - Search Audiobook Sites
|
||||
|
|
@ -281,7 +279,7 @@
|
|||
* [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz) - Search Anime Torrent Sites
|
||||
* [Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io), [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w), [3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Search Audio Download Sites
|
||||
* [Audio Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:v75cyb4ci55) - Search Audio Torrent Sites
|
||||
* [Virgil Game Search](https://virgil.samidy.com/Game-search/) / [GitHub](https://github.com/SamidyFR/Virgil), [Rezi Search](https://rezi.one/), [Playseek](https://playseek.app/), [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [Virgil Game Search](https://virgil.samidy.com/Games/) / [GitHub](https://github.com/SamidyFR/Virgil), [Rezi Search](https://rezi.one/), [Playseek](https://playseek.app/), [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) - Search Game Torrent Sites
|
||||
* [PastebinSearch](https://cipher387.github.io/pastebinsearchengines/) or [Paste Skimmer](https://sites.google.com/view/l33tech/tools/pasteskimmer) - Search Pastebins
|
||||
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1) - Search File Hosts
|
||||
|
|
@ -367,6 +365,7 @@
|
|||
* [Bom.so](https://bom.so/) - `bom.so/VevMJv`
|
||||
* [By.com.vn](https://by.com.vn/) - `by.com.vn/tKYeSo`
|
||||
* [Bly.to](https://blyto.com/) - `bly.to/3e04d1`
|
||||
* [1sh](https://www.1sh.pl/) - `1sh.pl/qIPAbZ`
|
||||
* [s.id](https://home.s.id/) - `s.id/EQBsg`
|
||||
* [Linkify](https://creator.linkify.cz/) - `linkify.cz/1a0O`
|
||||
* [Jii.Li](https://jii.li/) - `jii.li/hNFXP`
|
||||
|
|
@ -412,13 +411,12 @@
|
|||
* [Got Your Back](https://github.com/GAM-team/got-your-back) - Backup Gmail Messages
|
||||
* [ExtractMailAddress](https://extractemailaddress.com/) - Extract Emails, URLs, and Numbers from Text
|
||||
* [scr.im](http://scr.im/) - Email Captcha Protection
|
||||
* [BugMeNot](https://bugmenot.com/), [FreeAccount](https://freeaccount.biz/) or [Password Login](https://password-login.com/) - Access & Share Throwaway Accounts
|
||||
|
||||
***
|
||||
|
||||
## ▷ Email Clients
|
||||
|
||||
* ⭐ **[Betterbird](https://www.betterbird.eu/)** or **[Thunderbird](https://www.thunderbird.net/en-US/)** / [Tray Icon](https://github.com/Ximi1970/systray-x) / [Matrix](https://matrix.to/#/#thunderbird:mozilla.org)
|
||||
* ⭐ **[Betterbird](https://www.betterbird.eu/)** or **[Thunderbird](https://www.thunderbird.net/en-US/)** / [Notifications](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#thunderbird) / [Tray Icon](https://github.com/Ximi1970/systray-x) / [Matrix](https://matrix.to/#/#thunderbird:mozilla.org)
|
||||
* ⭐ **[Mailspring](https://getmailspring.com/)** - [Themes](https://github.com/topics/mailspring-theme) / [GitHub](https://github.com/Foundry376/Mailspring)
|
||||
* [Outlook](https://outlook.live.com/owa/)
|
||||
* [ElectronMail](https://github.com/vladimiry/ElectronMail)
|
||||
|
|
@ -445,12 +443,11 @@
|
|||
* ⭐ **[Mail.tm](https://mail.tm/)** - Forever / 7 Days / 1 Domain
|
||||
* ⭐ **[temp-mail.org](https://temp-mail.org/)** - Forever / 2 Hours / N/A / [Telegram Bot](https://t.me/TempMail_org_bot)
|
||||
* ⭐ **[temp-mail.io](https://temp-mail.io/)** - 1 Day / 1 Day / 12 Domains
|
||||
* ⭐ **[burner.kiwi](https://burner.kiwi/)** - 1 Day / 1 Day / 3 Domains
|
||||
* [TotallyLegit](https://totallylegit.edu.pl/), [Tempumail](https://tempumail.com/edu-mail-generator), [etempmail](https://eTempMail.com/) or [SecureTempMail](https://tempmail.edu.kg/en/) - Temp .edu Addresses
|
||||
* [TempMailHub](https://tempmailhub.org/) - Gmail / 15 Mins / 1 Domain / Public Shared Addresses
|
||||
* [TotallyLegit](https://totallylegit.edu.pl/), [EduMail](https://edumail.icu/), [Tempumail](https://tempumail.com/edu-mail-generator), [etempmail](https://eTempMail.com/) or [SecureTempMail](https://tempmail.edu.kg/en/) - .Edu Addresses
|
||||
* [Guerrilla Mail](https://www.guerrillamail.com/) - Forever / 1 Hour / 11 Domains / [SharkLasers](https://www.sharklasers.com/)
|
||||
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
|
||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||
* [DuckSpam](https://duckspam.com/) - Forever / Forever / 1 Domain
|
||||
* [AltAddress](https://altaddress.org/) - Forever / 3 Days / 14 Domains
|
||||
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
||||
* [Vortex Email](https://vortex.skyfall.dev/) - Forever / 9 Domains / [GitHub](https://github.com/SkyfallWasTaken/vortex.email)
|
||||
|
|
@ -466,7 +463,6 @@
|
|||
* [Maildrop](https://maildrop.cc/), [Trashmail](https://trashmail.ws/) - Forever / 1 Day / 1 Domain
|
||||
* [cs.email](https://cs.email/) - Forever / 1 Hour / 12 Domains
|
||||
* [Email Generator](https://generator.email/), [Fake Email](https://email-fake.com/) or [TempM](https://tempm.com/) - 50+ Domains
|
||||
* [EduMail](https://edumail.icu/) - 1 Month / 1 Month / 10 Domains
|
||||
* [10minutesemail](https://10minutesemail.net/) - 10 Minutes / 1 Domain
|
||||
* [DisposableMail](https://www.disposablemail.com/) or [FakeMail](https://www.fakemail.net/) - 14 Days / 14 Days / 1 Domain
|
||||
* [FEX+](https://fex.plus/) - 7 Days / 7 Days / 5 Domains
|
||||
|
|
@ -480,7 +476,7 @@
|
|||
* [Moakt](https://www.moakt.com/) - 1 Hour / 1 Hour / 13 Domains
|
||||
* [MintEmail.com](https://www.mintemail.com/) or [tempail.com](https://tempail.com/) - 1 Hour / 1 Hour / 1 Domain
|
||||
* [Mohmal](https://www.mohmal.com/en) - 45 Mins / 45 Mins / 1 Domain
|
||||
* [MinuteInbox](https://minuteinbox.com/), [TempMailGenerator](https://tempmailgenerator.org/), [10minemail.com](https://10minemail.com/), [10minutemail.com](https://10minutemail.com/) or [Linshi Email](https://www.linshi-email.com/en) - 10 Minute Lifespan Emails
|
||||
* [MinuteInbox](https://minuteinbox.com/), [10minemail.com](https://10minemail.com/), [10minutemail.com](https://10minutemail.com/) or [Linshi Email](https://www.linshi-email.com/en) - 10 Minute Lifespan Emails
|
||||
* [mail-temp.com](https://mail-temp.com/) or [emailfake.com](https://emailfake.com/) - 50+ Domains
|
||||
* [AnonymMail.net](https://anonymmail.net/) or [Mail.td](https://mail.td/) - 5 Domains
|
||||
* [EmailOnDeck](https://www.emailondeck.com/), [EmailTemp](https://emailtemp.org/), [Haribu](https://haribu.net/) or [tempmaili.com](https://tempmaili.com/) - 1 Domain
|
||||
|
|
@ -491,10 +487,10 @@
|
|||
|
||||
## ▷ Email Aliasing
|
||||
|
||||
* 🌐 **[Email Aliasing Comparison](https://email-aliasing-comparison.netlify.app/)** / [GitHub](https://github.com/fynks/email-aliasing-comparison)
|
||||
* ⭐ **[SimpleLogin](https://simplelogin.io/)** - Email Aliasing / [X](https://x.com/SimpleLogin) / [Subreddit](https://www.reddit.com/r/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 / [Send Mail](https://duckduckgo.com/duckduckgo-help-pages/email-protection/duck-addresses/how-do-i-compose-a-new-email)
|
||||
* 🌐 **[Email Aliasing Comparison](https://email-aliasing-comparison.pages.dev/)** / [GitHub](https://github.com/fynks/email-aliasing-comparison)
|
||||
* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing / [Send Mail](https://duckduckgo.com/duckduckgo-help-pages/email-protection/duck-addresses/how-do-i-compose-a-new-email) / [Unlimited Guide](https://bitwarden.com/help/generator/#tab-duckduckgo-3Uj911RtQsJD9OAhUuoKrz)
|
||||
* [addy.io](https://addy.io/) - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
||||
* [SimpleLogin](https://simplelogin.io/) - Email Aliasing / 10 Alias Limit / [X](https://x.com/SimpleLogin) / [Subreddit](https://www.reddit.com/r/Simplelogin/) / [GitHub](https://github.com/simple-login/app)
|
||||
* [Mailgw](https://mailgw.com/) - Email Aliasing
|
||||
* [erine.email](https://erine.email/) - Email Aliasing
|
||||
* [33mail](https://33mail.com/) - Email Aliasing
|
||||
|
|
@ -541,6 +537,51 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Browser Startpages
|
||||
|
||||
* 🌐 **[Awesome Startpage](https://github.com/jnmcfly/awesome-startpage)** - Startpage Resources
|
||||
* 🌐 **[Startpage Emporium](https://startpages.github.io/)** - Startpage Index
|
||||
* ⭐ **[WebOasis](https://behu.io/)**, [2](https://ndsamuelson.github.io/weboas-is/) / [GitHub](https://github.com/ParrotDevelopers/WebOasis/)
|
||||
* ⭐ **[MONKNOW](https://www.monknow.com/)**
|
||||
* [r/startpages](https://www.reddit.com/r/startpages/)
|
||||
* [8bitdash](https://www.8bitdash.com/)
|
||||
* [8 Bit Dashboard](https://8bitdashboard.com/)
|
||||
* [Clippingmini](https://www.clippingmini.com/)
|
||||
* [Draggo](https://draggo.com/)
|
||||
* [Pearltrees](https://www.pearltrees.com/)
|
||||
* [Nextcloud](https://apps.nextcloud.com/apps/bookmarks)
|
||||
* [Cling](https://cling.com/)
|
||||
* [FMHY Startpage](https://fmhy.net/startpage)
|
||||
* [Symbaloo](https://www.symbaloo.com/)
|
||||
* [Tixio](https://tixio.io/)
|
||||
* [Bento](https://github.com/migueravila/Bento)
|
||||
* [nightly](https://github.com/damnitharshit/nightly)
|
||||
* [Protopage](https://www.protopage.com/)
|
||||
* [tilde](https://github.com/xvvvyz/tilde)
|
||||
* [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity)
|
||||
* [AllMyFaves](https://allmyfaves.com/)
|
||||
* [start.me](https://start.me/start/int/startpage)
|
||||
* [Combobox](https://combobox.me)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Custom New Tab Pages
|
||||
|
||||
* ⭐ **[Anori](https://anori.app/)** / [GitHub](https://github.com/OlegWock/anori)
|
||||
* ⭐ **[Mue](https://muetab.com/)** / [GitHub](https://github.com/mue/mue)
|
||||
* ⭐ **[Bonjourr](https://bonjourr.fr/)** / [GitHub](https://github.com/victrme/Bonjourr)
|
||||
* [Renewed Tab](https://renewedtab.com/) / [Discord](https://discord.gg/zYjR54b) / [GitLab](https://gitlab.com/renewedtab/renewedtab/)
|
||||
* [mtab](https://github.com/maxhu08/mtab)
|
||||
* [nightTab](https://github.com/zombieFox/nightTab)
|
||||
* [TablissNG](https://github.com/BookCatKid/TablissNG/)
|
||||
* [hexagonTab](https://github.com/zombieFox/hexagonTab)
|
||||
* [Perfect Home](https://github.com/perfect-things/perfect-home)
|
||||
* [Yet Another Speed Dial](https://github.com/conceptualspace/yet-another-speed-dial)
|
||||
* [Infinity New Tab](https://en.infinitynewtab.com/)
|
||||
* [Momentum](https://momentumdash.com/)
|
||||
|
||||
***
|
||||
|
||||
# ► Browser Tools
|
||||
|
||||
* 🌐 **[Browser Comparisons](https://privacytests.org/)**, [Eylenburg Comparisons](https://eylenburg.github.io/browser_comparison.htm) or [ATH Comparisons](https://browsers.avoidthehack.com/) - Compare Popular Browsers
|
||||
|
|
@ -548,6 +589,7 @@
|
|||
* ↪️ **[Recommended Browsers](https://fmhy.net/beginners-guide#browsers)**, [2](https://rentry.org/Piracy-BG#browsers) / **[Privacy Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)**
|
||||
* ↪️ **[Android Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_browsers)**
|
||||
* ⭐ **[BrowserBench](https://browserbench.org/)** or [WPT](https://wpt.fyi) - Browser Benchmark Tests
|
||||
* [Browser Tamer](https://www.aloneguid.uk/projects/bt/) - Multi-Browser Link Redirector & Profile Switcher / [GitHub](https://github.com/aloneguid/bt)
|
||||
* [VsyncTester](https://vsynctester.com/) - Browser VSYNC Test / Firefox Broken
|
||||
* [Gemini Portal](https://geminiprotocol.net/), [2](https://yesterweb.org/gemini) - Gemini to https Web Proxy Service
|
||||
* [Rambox](https://rambox.app/), [Kera](https://desktop.kerahq.com/) or [Tangram](https://github.com/sonnyp/Tangram) - Web App Browsers
|
||||
|
|
@ -590,13 +632,11 @@
|
|||
* ↪️ **[Productivity / Site Blocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_productivity_tools)**
|
||||
* ↪️ **[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
|
||||
* ⭐ **Stylus Styles** - [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
|
||||
* ⭐ **[Auto Tab Discard](https://add0n.com/tab-discard.html)** or [Tab Wrangler](https://github.com/tabwrangler/tabwrangler) - Discard Inactive Tabs
|
||||
* ⭐ **[Auto Tab Discard](https://webextension.org/listing/tab-discard.html)** or [Tab Wrangler](https://github.com/tabwrangler/tabwrangler) - Discard Inactive Tabs
|
||||
* ⭐ **[Clipboard2File](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#clipboard2file-addons)** - Upload Images from Clipboard
|
||||
* [CRX Viewer](https://robwu.nl/crxviewer/) - View Extension Source Code
|
||||
* [Omni](https://github.com/alyssaxuu/omni) - Browser Quick Launcher
|
||||
|
|
@ -604,7 +644,9 @@
|
|||
* [Vimium](https://vimium.github.io/) / [GitHub](https://github.com/philc/vimium), [Surfingkeys](https://github.com/brookhong/Surfingkeys), [Tridactyl](https://tridactyl.xyz/), [Web Search Navigator](https://github.com/infokiller/web-search-navigator), [Shortkeys](https://www.shortkeys.app/) or [Vimium C](https://github.com/gdh1995/vimium-c) - Keyboard Shortcuts
|
||||
* [Custom Scrollbars](https://addons.wesleybranton.com/addon/custom-scrollbars/) - Custom Browser Scrollbars
|
||||
* [Quick Tabs](https://github.com/babyman/quick-tabs-chrome-extension) - Quickly Switch Between Current & Recently Closed Tabs
|
||||
* [Custom Page Zoom](https://mybrowseraddon.com/custom-page-zoom.html) - Improves Zoom Functionality
|
||||
* [User Agent Switcher](https://webextension.org/listing/useragent-switcher.html) - Switch Your User-Agent
|
||||
* [CRXInstaller](https://addons.mozilla.org/en-US/firefox/addon/crxinstaller/) - Use Chrome Extensions in Firefox Forks, Floorp, Librewolf, etc. / [GitHub](https://github.com/FoxRefire/ChromeXPIPorter)
|
||||
* [Snooze Tabs](https://github.com/bwinton/SnoozeTabs) - Temporarily Snooze Tabs
|
||||
* [AutoRefresh](https://autorefresh.io/) or [Tab Auto Refresh](https://mybrowseraddon.com/tab-auto-refresh.html) - Refresh Tabs
|
||||
* [Dictionaries](https://github.com/pnlpal/dictionariez) or [Definer](https://lumetrium.com/definer/) - Popup Dictionaries
|
||||
|
|
@ -618,7 +660,7 @@
|
|||
* [GlobalSpeed](https://github.com/polywock/globalSpeed) - Set Default Video / Audio Speed
|
||||
* [Indie Wiki Buddy](https://getindie.wiki/) - Redirect Fandom / Fextralife to Indie Wikis / [Redirect List](https://getindie.wiki/listings/)
|
||||
* [Fake Data](https://www.fakedata.pro/) - Fill Forms with Fake Data
|
||||
* [External App Button](https://add0n.com/external-application-button.html) - Connect Browser to External Apps
|
||||
* [External App Button](https://webextension.org/listing/external-application-button.html) - Connect Browser to External Apps
|
||||
* [xBrowserSync](https://www.xbrowsersync.org/) - Browser Syncing
|
||||
* [Stylebot](https://stylebot.dev/) - Modify Webpages
|
||||
* [SocialFocus](https://socialfocus.app/) - Hide Distracting Elements on Social Media Sites
|
||||
|
|
@ -628,7 +670,7 @@
|
|||
* [Clippings](https://aecreations.io/clippings/index.php) or [Quick Copy](https://github.com/ramitmittal/quick-copy) - Clipboard Manager
|
||||
* [Emoji Addon](https://www.emojiaddon.com/) - Quickly Copy / Paste Emojis
|
||||
* [Copycat](https://github.com/BlackGlory/Copycat) - Copy Content in Multiple Formats
|
||||
* [Allow Right Click](https://add0n.com/allow-right-click.html) - Force Enable Right Click / [GitHub](https://github.com/lunu-bounir/allow-right-click)
|
||||
* [Allow Right Click](https://webextension.org/listing/allow-right-click.html) - Force Enable Right Click / [GitHub](https://github.com/lunu-bounir/allow-right-click)
|
||||
* [Copy Selection as Markdown](https://github.com/0x6b/copy-selection-as-markdown) - Copy Text as Markdown
|
||||
* [CopyFish](https://ocr.space/copyfish) - Grab Text from Images
|
||||
* [Max Focus](https://maxfoc.us/) - Preview Links
|
||||
|
|
@ -650,9 +692,9 @@
|
|||
* [Streak](https://www.streak.com/) - Email Engagement Tracker
|
||||
* [Native HLS](https://github.com/Palethorn/native-adaptive-streaming/) - Allows HLS & MPEG-Dash native playback
|
||||
* [Session Alive](https://github.com/arunelias/session-alive/) - Keep Website Sessions Alive
|
||||
* [Caffeine](https://add0n.com/caffeine.html) - Prevent OS from Sleeping
|
||||
* [Broken Link Checker](https://add0n.com/broken-link-checker.html) - Checks Page for Broken Links
|
||||
* [GoFullPage](https://gofullpage.com/), [Easy Screenshot](https://webextension.org/listing/screenshot.html) or [FireShot](https://addons.mozilla.org/en-GB/firefox/addon/fireshot/) - Full Page Screenshots
|
||||
* [Caffeine](https://webextension.org/listing/caffeine.html) - Prevent OS from Sleeping
|
||||
* [Broken Link Checker](https://webextension.org/listing/broken-link-checker.html) - Checks Page for Broken Links
|
||||
* [GoFullPage](https://gofullpage.com/), [Easy Screenshot](https://webextension.org/listing/screenshot.html) or [FireShot](https://addons.mozilla.org/en-GB/firefox/addon/full-page-screen-capture-/) - Full Page Screenshots
|
||||
* [Bulk URL Opener](https://bulkurlopener.com/) or [Open-Multiple-URLs](https://github.com/htrinter/Open-Multiple-URLs/) - Open Multiple URLs in One Click
|
||||
* [PronounDB](https://pronoundb.org/) - Pronoun Addon
|
||||
* [XKit](https://github.com/new-xkit/XKit) - Tumblr Enhancement Extension
|
||||
|
|
@ -667,14 +709,14 @@
|
|||
* 🌐 **[Firefox Addons](https://addons.mozilla.org/en-US/firefox/extensions/)** - Firefox Addon Store
|
||||
* ⭐ **[FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/)** - Tab Tools
|
||||
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Bookmark Manager
|
||||
* ⭐ **[Context Search](https://addons.mozilla.org/en-US/firefox/addon/contextsearch/)** or [Context Search Web](https://addons.mozilla.org/en-US/firefox/addon/contextsearch-web-ext/) - Search Selected Text / Multi Site Search
|
||||
* ⭐ **[Snap Links Plus](https://cpriest.github.io/SnapLinksPlus/)** - Select & Open Multiple Links at Once
|
||||
* [Firefox Containers](https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/), [Container Tab Groups](https://addons.mozilla.org/en-US/firefox/addon/container-tab-groups/) or [Temporary Containers](https://addons.mozilla.org/en-US/firefox/addon/temporary-containers/) - Separate Firefox Sessions / [Guide](https://www.thechiefmeat.com/guides/containers.html)
|
||||
* [ContextSearch web-ext](https://addons.mozilla.org/en-US/firefox/addon/contextsearch-web-ext/) - Search Selected Text / Multi Site Search
|
||||
* [FoxyLink](https://addons.mozilla.org/en-US/firefox/addon/foxylink/) - Link Tools
|
||||
* [Snap Links Plus](https://cpriest.github.io/SnapLinksPlus/) - Select, Copy or Open Multiple Links at Once
|
||||
* [Multithreaded Download Manager](https://addons.mozilla.org/en-US/firefox/addon/multithreaded-download-manager/) - Download Manager
|
||||
* [cliget](https://github.com/zaidka/cliget) - Download Files from Command Line
|
||||
* [FX Cast](https://hensm.github.io/fx_cast/) - Enable Chromecast in Firefox
|
||||
* [Firefox Scripts](https://github.com/xiaoxiaoflood/firefox-scripts) - Chrome Extensions in Firefox
|
||||
* [CRXInstaller](https://addons.mozilla.org/en-US/firefox/addon/crxinstaller/) / [GitHub](https://github.com/FoxRefire/ChromeXPIPorter) (nightly) or [Firefox Scripts](https://github.com/xiaoxiaoflood/firefox-scripts) - Chrome Extensions in Firefox
|
||||
* [Dark Background and Light Text](https://github.com/m-khvoinitsky/dark-background-light-text-extension) - Dark Mode
|
||||
* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer) - Bookmark Cleanup
|
||||
* [Bookmark Batch-Updater](https://addons.mozilla.org/en-US/firefox/addon/bookmark-batch-updater/) - Modify Properties of Multiple Bookmarks
|
||||
|
|
@ -696,18 +738,20 @@
|
|||
## ▷ Chrome Extensions
|
||||
|
||||
* 🌐 **[Chrome Web Store](https://chromewebstore.google.com/)**, [Chrome-Extension](https://github.com/harshita214/Chrome-Extension) or [Crx4Chrome](https://www.crx4chrome.com/) - Chrome Addon Stores
|
||||
* ⭐ **[Extensity](https://chromewebstore.google.com/detail/extensity/jjmflmamggggndanpgfnpelongoepncg)** or [Extension Manager](https://chromewebstore.google.com/detail/extension-manager/gjldcdngmdknpinoemndlidpcabkggco) - Extension Managers
|
||||
* ⭐ **[chromium-web-store](https://github.com/NeverDecaf/chromium-web-store)** - Add Extensions to Ungoogled Chromium
|
||||
* ⭐ **[Foxified](https://foxified.org/)** - Use Firefox Extensions in Chrome
|
||||
* ⭐ **[Clipper](https://clipper.website/)** - Copy Content in Multiple Formats
|
||||
* [Extensity](https://chromewebstore.google.com/detail/extensity/jjmflmamggggndanpgfnpelongoepncg) / [GitHub](https://github.com/sergiokas/Extensity) or [Extension Manager](https://chromewebstore.google.com/detail/extension-manager/gjldcdngmdknpinoemndlidpcabkggco) - Extension Managers
|
||||
* [CRX Downloader](https://crx-downloader.com/) - Chrome Extension Downloader
|
||||
* [WebCRX](https://webcrx.io/) - Easily Install Local CRX Files
|
||||
* [Chrome Stats](https://chrome-stats.com/) - Compare / Analyze Chrome Extensions
|
||||
* [Extension Source Downloader](https://chromewebstore.google.com/detail/extension-source-download/dlbdalfhhfecaekoakmanjflmdhmgpea) - View Extension Source Code / [Guide](https://gist.github.com/paulirish/78d6c1406c901be02c2d)
|
||||
* [Source Downloader](https://mybrowseraddon.com/extension-source-downloader.html) - View Extension Source Code / [Guide](https://gist.github.com/paulirish/78d6c1406c901be02c2d)
|
||||
* [Transpose](https://transpose.video/) - Online Video Pitch Shifter, Speed Changer and Looper
|
||||
* [Smart Mute](https://chromewebstore.google.com/detail/smart-mute/apadglapdamclpaedknbefnbcajfebgh) - Tab Mute Manager
|
||||
* [Volume Master](https://chromewebstore.google.com/detail/volume-master/jghecgabfgfdldnmbfkhmffcabddioke) - Increase Browser Volume
|
||||
* [Text Blaze](https://blaze.today/) - Create Text Snippets
|
||||
* [TabCopy](https://github.com/hansifer/tab-copy) - Copy Tabs to Clipboard
|
||||
* [Linkclump Plus](https://chromewebstore.google.com/detail/linkclump-plus/ainlglbojoodfdbndbfofojhmjbmelmm) - Select, Copy or Open Multiple Links at Once / [GitHub](https://github.com/from-es/linkclump-plus)
|
||||
* [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmark Cleanup
|
||||
* [Simple Mass Downloader](https://chromewebstore.google.com/detail/simple-mass-downloader/abdkkegmcbiomijcbdaodaflgehfffed) - Download Multiple Links at Once
|
||||
* [CrxMouse](https://crxmouse.com/) - Mouse Gestures
|
||||
|
|
@ -724,7 +768,6 @@
|
|||
* [Amino](https://amino.dev/) - Customize Webpage CSS
|
||||
* [Resizing](https://resizing.app/) - Resize Images
|
||||
* [Check My Links](https://chromewebstore.google.com/detail/check-my-links/ojkcdipcgfaekbeaelaapakgnjflfglf) - Check for Broken Links
|
||||
* [Source Downloader](https://mybrowseraddon.com/extension-source-downloader.html) - View Extension Source Code
|
||||
* [Disable All Extensions](https://chromewebstore.google.com/detail/disable-all-extensions/ailfldpmpboolaihojfagmmfbhcgohne) - Disable All Extensions
|
||||
|
||||
***
|
||||
|
|
@ -732,9 +775,9 @@
|
|||
## ▷ Safari Extensions
|
||||
|
||||
* [Userscripts](https://apps.apple.com/us/app/userscripts/id1463298887) - Safari Userscript Manager / [GitHub](https://github.com/quoid/userscripts/)
|
||||
* [Night Eye](https://apps.apple.com/app/dark-mode-for-safari-nighteye/id1450504903) or [Dark Reader Script](https://gist.github.com/kfur/266c456dd69072eb7533f457ee5f18a0) - Dark Mode
|
||||
* [Turn Off the Lights](https://www.turnoffthelights.com/) or [Dark Reader Script](https://gist.github.com/kfur/266c456dd69072eb7533f457ee5f18a0) - Dark Mode
|
||||
* [CSE](https://cizzuk.net/projects/cse/) - Custom Search Engine / [GitHub](https://github.com/Cizzuk/CSE)
|
||||
* [PiPifier](https://apps.apple.com/us/app/pipifier/id1234771095) - Picture in Picture Mode
|
||||
* [Web Inspector](https://apps.apple.com/us/app/web-inspector/id1584825745) - Inspect Element Tools for Safari
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -753,6 +796,7 @@
|
|||
* [Remove Bing CK](https://greasyfork.org/en/scripts/483444) - Remove Bing CK Redirects
|
||||
* [DownloadAllContent](https://greasyfork.org/en/scripts/25068) - Download Content from Pages
|
||||
* [Microsoft Store Direct Download](https://greasyfork.org/en/scripts/394420-microsoft-store-direct-download) - Microsoft Store Direct Downloads
|
||||
* [Fandom Focus](https://greasyfork.org/en/scripts/528895) - Improves Fandom Website UI
|
||||
* [Maximize Video](https://greasyfork.org/en/scripts/4870) - Maximize Playing Videos via Button
|
||||
* [Pagetual](https://pagetual.hoothin.com/) - Merge Sites "Next" Pages
|
||||
* [Mouseover Popup Image Viewer](https://greasyfork.org/en/scripts/394820-mouseover-popup-image-viewer) - Shows Images & Videos Behind Links & Thumbnails
|
||||
|
|
@ -771,6 +815,7 @@
|
|||
* ⭐ **[Web Archives](https://github.com/dessant/web-archives)** or [Resurrect Pages Fork](https://github.com/Albirew/resurrect-pages-isup-edition) - Browser Extensions
|
||||
* ⭐ **[CachedView](https://cachedview.nl/)** or [Quick Cache](https://cybdetective.com/quickcacheandarhivesearch.html) - Aggregate Cache Results
|
||||
* [Ghost Archive](https://ghostarchive.org/) - Archive Web Pages
|
||||
* [WebArchive.io](https://www.webarchive.io/) - Archive Web Pages
|
||||
* [ArchiveTeam](https://wiki.archiveteam.org/index.php/Main_Page) - Archiving Project / Wiki
|
||||
* [Perma.cc](https://perma.cc/) - Create Permalinks
|
||||
|
||||
|
|
@ -823,7 +868,6 @@
|
|||
# ► Open Source Intelligence
|
||||
|
||||
* 🌐 **[Awesome OSINT](https://github.com/jivoi/awesome-osint)** - Awesome OSINT
|
||||
* ↪️ **[Photo Forensics](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_photo_forensics)**
|
||||
* ↪️ **[Domain / DNS Info](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)**
|
||||
* ↪️ **[Search Engine OSINT](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25BA_search_tools)**
|
||||
* ⭐ **[IntelTechniques](https://inteltechniques.com/index.html)** or [OSINT Techniques](https://www.osinttechniques.com/) - OSINT Resources
|
||||
|
|
@ -847,7 +891,7 @@
|
|||
* [OSINT Combine](https://www.osintcombine.com/tools) - OSINT Investigation Tools
|
||||
* [Bellingcat](https://bellingcat.gitbook.io/toolkit) - Online Investigation Toolkit
|
||||
* [Reuser](https://rr.reuser.biz/) - OSINT Resource Discovery Toolkit
|
||||
* [The Pika's OSINT ToolBox](https://github.com/passthesh3ll/The-Pika-s-OSINT-ToolBox) - General Index
|
||||
* [The Pika's OSINT ToolBox](https://pikaosint.pages.dev/) - General Index / [GitHub](https://github.com/passthesh3ll/The-Pika-s-OSINT-ToolBox)
|
||||
* [Cyber Detective's OSINT Collection](https://github.com/cipher387/osint_stuff_tool_collection) - General Index
|
||||
* [Nixintel's OSINT Resource List](https://start.me/p/rx6Qj8/nixintel-s-osint-resource-list) - General Index
|
||||
* [Technisette's OSINT Tools](https://start.me/p/wMdQMQ/tools) - General Index
|
||||
|
|
|
|||
|
|
@ -6,6 +6,10 @@
|
|||
|
||||
# ► Linux Guides
|
||||
|
||||
* **Note** - Keep in mind that install guides can usually be found on each distros doc page. You can find doc pages on each distros site, or through their [DistroWatch](https://distrowatch.com/dwres.php?resource=popularity) pages.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[ArchWiki](https://wiki.archlinux.org/)** - Linux Guides / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
|
||||
* [Gentoo Wiki](https://wiki.gentoo.org/wiki/Main_Page) - Gentoo Wikis / Guides
|
||||
* [Debian Wiki](https://wiki.debian.org/) - Debian Wiki / Guides
|
||||
|
|
@ -21,14 +25,14 @@
|
|||
|
||||
## ▷ CLI Cheat Sheets
|
||||
|
||||
* ⭐ **[Linux Command Library](https://linuxcommandlibrary.com/)** / [GitHub](https://github.com/SimonSchubert/LinuxCommandLibrary)
|
||||
* [Awesome for One Liner](https://github.com/sheepla/awesome-for-oneliner)
|
||||
* [You Don't Need GUI](https://github.com/you-dont-need/You-Dont-Need-GUI)
|
||||
* [CommandlineFU](https://www.commandlinefu.com/)
|
||||
* [Bash Academy](https://guide.bash.academy/)
|
||||
* [ss64 Bash](https://ss64.com/bash/)
|
||||
* [Bash Oneliner](https://onceupon.github.io/Bash-Oneliner/)
|
||||
* [navi](https://github.com/denisidoro/navi)
|
||||
* ⭐ **[Linux Command Library](https://linuxcommandlibrary.com/)** / [GitHub](https://github.com/SimonSchubert/LinuxCommandLibrary) - Searchable Linux Command Index
|
||||
* [Awesome for One Liner](https://github.com/sheepla/awesome-for-oneliner) - Curated One-Liner CLI Tools
|
||||
* [You Don't Need GUI](https://github.com/you-dont-need/You-Dont-Need-GUI) - CLI Alts for GUI Tasks
|
||||
* [CommandlineFU](https://www.commandlinefu.com/) - Community-Driven Command Snippets
|
||||
* [Bash Academy](https://guide.bash.academy/) - Bash Scripting Guide
|
||||
* [ss64 Bash](https://ss64.com/bash/) - Alphabetical Command Reference
|
||||
* [Bash Oneliner](https://onceupon.github.io/Bash-Oneliner/) - Bash One-Liner Collection
|
||||
* [navi](https://github.com/denisidoro/navi) - Interactive Cheatsheet Tool
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -52,20 +56,19 @@
|
|||
|
||||
# ► Linux Distros
|
||||
|
||||
* **Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own.
|
||||
* **Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own. Keep in mind that install guides can usually be found on each distros doc page. You can find doc pages on each distros site, or through their [DistroWatch](https://distrowatch.com/dwres.php?resource=popularity) pages.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)** - Distro Index / [Advanced Search](https://distrowatch.com/search.php#advanced)
|
||||
* ⭐ **[DistroChooser](https://distrochooser.de/)** - Distro Selection Guide / [Discord](https://discord.com/invite/aDkCutfqak) / [GitHub](https://github.com/distrochooser/distrochooser)
|
||||
* [distro.moe](https://distro.moe/) - Find Random Distros
|
||||
* [Linux Live Kit](https://www.linux-live.org/) - Live Distro Creator
|
||||
* [ArchiveOS](https://archiveos.org/) - Linux Distro Archive
|
||||
* [OS.click](https://os.click/en)
|
||||
* [LinuxTracker](https://linuxtracker.org/)
|
||||
* [OpenSourceFeed](https://www.opensourcefeed.org/)
|
||||
* [Pkgs](https://pkgs.org/) - Linux Packages / [Repology](https://repology.org/)
|
||||
* [Linux Comparisons](https://eylenburg.github.io/linux_comparison.htm)
|
||||
* 🌐 **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)** - Distro Index w/ News + Rankings / [Advanced Search](https://distrowatch.com/search.php#advanced)
|
||||
* ⭐ **[DistroChooser](https://distrochooser.de/)** - Quiz-Based Distro Selector / [Discord](https://discord.com/invite/aDkCutfqak) / [GitHub](https://github.com/distrochooser/distrochooser)
|
||||
* [distro.moe](https://distro.moe/) - Random Distro Finder
|
||||
* [Linux Live Kit](https://www.linux-live.org/) - Create Live Distros from Installed Systems
|
||||
* [OpenSourceFeed](https://www.opensourcefeed.org/) - Open-Source Distros
|
||||
* [OS.click](https://os.click/en) - Fast Distro Downloads
|
||||
* [LinuxTracker](https://linuxtracker.org/) - BitTorrent Distro Repo
|
||||
* [Linux Comparisons](https://eylenburg.github.io/linux_comparison.htm) - Detailed Distro Comparison Charts
|
||||
* [ArchiveOS](https://archiveos.org/) - Inactive / Open-Source OS Projects
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -78,8 +81,8 @@
|
|||
* ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI
|
||||
* ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** or [GearLever](https://github.com/mijorus/gearlever) - Integrate AppImages to App Launchers
|
||||
* ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes
|
||||
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Fuzzel](https://codeberg.org/dnkl/fuzzel), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers / Keystroke Launchers
|
||||
* ⭐ **[FreeRDP](https://www.freerdp.com/)** / [GitHub](https://github.com/FreeRDP/FreeRDP) or [Apache Guacamole](https://guacamole.apache.org/) - Remote Desktop Clients
|
||||
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [vicinae](https://github.com/vicinaehq/vicinae), [Fuzzel](https://codeberg.org/dnkl/fuzzel), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers / Keystroke Launchers
|
||||
* ⭐ **[FreeRDP](https://www.freerdp.com/)** / [GitHub](https://github.com/FreeRDP/FreeRDP), [Remmina](https://remmina.org/) or [Apache Guacamole](https://guacamole.apache.org/) - Remote Desktop Clients
|
||||
* ⭐ **[shell_gpt](https://github.com/TheR1D/shell_gpt)** or [shellgpt](https://github.com/jiacai2050/my-works/tree/main/shellgpt) - AI Terminal Chatbot / GPT
|
||||
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux / [Discord](https://discord.com/invite/XRD3mQA) / [GitHub](https://github.com/darlinghq/darling)
|
||||
* [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker / [GitHub](https://github.com/dscharrer/innoextract)
|
||||
|
|
@ -105,7 +108,7 @@
|
|||
* [Linux-PowerToys](https://github.com/domferr/Linux-PowerToys) - PowerToys for Linux
|
||||
* [Railway](https://flathub.org/apps/de.schmidhuberj.DieBahn) - Travel Info Manager
|
||||
* [Wike](https://github.com/hugolabe/Wike) - Wikipedia App
|
||||
* [Komikku](https://valos.gitlab.io/Komikku/), [Suwayomi-VaadinUI](https://github.com/Suwayomi/Suwayomi-VaadinUI) or [Manga Reader](https://flathub.org/apps/com.georgefb.mangareader) - Manga Readers
|
||||
* [Komikku](https://komikku-app.github.io/), [Suwayomi-VaadinUI](https://github.com/Suwayomi/Suwayomi-VaadinUI) or [Manga Reader](https://flathub.org/apps/com.georgefb.mangareader) - Manga Readers
|
||||
* [Mako](https://github.com/emersion/mako) or [dunst](https://dunst-project.org/) / [GitHub](https://github.com/dunst-project/dunst) - Customizable Notification Daemon
|
||||
* [Eloquent](https://flathub.org/apps/re.sonny.Eloquent/) or [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check Apps
|
||||
* [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice
|
||||
|
|
@ -130,7 +133,8 @@
|
|||
* [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories
|
||||
* [SnapCraft](https://snapcraft.io/store) - Snap Repository
|
||||
* [Nix](https://nixos.org/), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://zap.srev.in) / [GitHub](https://github.com/srevinsaju/zap), [pkgx](https://pkgx.sh/) / [GitHub](https://github.com/pkgxdev/pkgx), [AM](https://github.com/ivan-hc/AM) or [Homebrew](https://brew.sh/) - Package Managers
|
||||
* [cheat.sh](http://cheat.sh/) - App Repos / [GitHub](https://github.com/chubin/cheat.sh)
|
||||
* [Pkgs](https://pkgs.org/) - Searchable Linux Package Database / [Repology](https://repology.org/)
|
||||
* [cheat.sh](https://github.com/chubin/cheat.sh) - App Repos
|
||||
* [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages
|
||||
* [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps
|
||||
* [emplace](https://github.com/tversteeg/emplace) - System Package Sync
|
||||
|
|
@ -193,10 +197,9 @@
|
|||
* [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor
|
||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
||||
* [4KTUBE](https://github.com/rishabh3354/4KTUBE) or [Video Downloader](https://github.com/Unrud/video-downloader) - Video Downloaders
|
||||
* [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder
|
||||
* [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background
|
||||
* [AnymeX](https://anymex.vercel.app/) - Anime Streaming App / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Anime Torrent Streaming App
|
||||
* [AnymeX](https://anymex.vercel.app/) - Anime Streaming App / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [Discord](https://discord.com/invite/EjfBuYahsP) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [Hayase](https://hayase.watch/) - Anime Torrent Streaming App / [Extensions](https://rentry.co/FMHYB64#hayase)
|
||||
* [ani-cli](https://github.com/pystardust/ani-cli) - Anime Streaming Terminal
|
||||
* [Trackma](https://github.com/z411/trackma/) - Anime Tracking App
|
||||
* [LiveCaptions](https://github.com/abb128/LiveCaptions) - Real-Time Captions
|
||||
|
|
@ -220,21 +223,22 @@
|
|||
* [Gapless](https://gitlab.gnome.org/neithern/g4music) - Audio Player
|
||||
* [dopamine](https://github.com/digimezzo/dopamine) - Audio Player
|
||||
* [AudioTube](https://invent.kde.org/multimedia/audiotube), [ytermusic](https://github.com/ccgauche/ytermusic/) or [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Audio Clients
|
||||
* [MOC](http://moc.daper.net/) or [Kew](https://github.com/ravachol/kew) - TUI Audio Players
|
||||
* [MOC](https://moc.daper.net/) or [Kew](https://github.com/ravachol/kew) - TUI Audio Players
|
||||
* [Sonosano](https://sonosano.krshh.com/ ) - Self-Hosted P2P Lossless Music Player / [GitHub](https://github.com/KRSHH/Sonosano)
|
||||
* [Deezer Linux](https://github.com/aunetx/deezer-linux) or [DZR](https://github.com/yne/dzr) - Deezer Clients
|
||||
* [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player
|
||||
* [Shortwave](https://flathub.org/apps/de.haeckerfelix.Shortwave) or [QMPlay2](https://github.com/zaps166/QMPlay2) - Radio Players
|
||||
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
|
||||
* [Pipewire Multimedia API](https://pipewire.org/) - Improved Video / Audio Handling
|
||||
* [LibrePods](https://github.com/kavishdevar/librepods) - Use AirPod Features on Linux
|
||||
* [EasyEffects](https://github.com/wwmm/easyeffects) - Pipewire Audio Effects
|
||||
* [Werman](https://github.com/werman/noise-suppression-for-voice) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software
|
||||
* [Qtractor](https://qtractor.org/) - Audio Editor
|
||||
* [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins
|
||||
* [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger
|
||||
* [Viper4Linux](https://github.com/Audio4Linux/Viper4Linux) / [GUI](https://github.com/Audio4Linux/Viper4Linux-GUI) or [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors
|
||||
* [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors
|
||||
* [cava](https://github.com/karlstav/cava) - Console Audio Visualizer
|
||||
* [Blanket](https://github.com/rafaelmardojai/blanket) - Ambient Sound Mixer for Linux
|
||||
* [CasterSoundboard](https://github.com/JupiterBroadcasting/CasterSoundboard) - Soundboard
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -267,36 +271,36 @@
|
|||
* 🌐 **[Are We Anti-Cheat Yet?](https://areweanticheatyet.com/)** - Anti-Cheat Game Database / GNU/Linux & Wine/Proton Compatibility
|
||||
* ⭐ **[Comprehensive Gaming Guide](https://linux-gaming.kwindu.eu/index.php?title=Main_Page)** / [2](https://github.com/rimsiw/linux-gaming-omg) / [3](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [4](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides
|
||||
* ⭐ **[protondb](https://www.protondb.com/)** - Proton Compatibility / [Steam Extension](https://github.com/Trsnaqe/protondb-community-extension) / [Discord](https://discord.com/invite/uuwK9EV)
|
||||
* ⭐ **[Heroic Games Launcher](https://heroicgameslauncher.com/)** - Epic / GOG / Prime Games Launcher / [Discord](https://discord.com/invite/rHJ2uqdquK) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher)
|
||||
* ⭐ **[Lutris](https://lutris.net/)** - Games Manager / [Discord](https://discord.com/invite/Pnt5CuY)
|
||||
* ⭐ **[proton-ge-custom](https://github.com/GloriousEggroll/proton-ge-custom)** - Play Windows Games on Linux / [Guide](https://www.reddit.com/r/LinuxCrackSupport/comments/yqfirv/how_to_install_fitgirl_or_dodi_windows_repacks_in/)
|
||||
* ⭐ **[ProtonPlus](https://github.com/Vysp3r/ProtonPlus)** or [ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/) - Linux Game Launcher Compatibility Managers
|
||||
* ⭐ **[ProtonPlus](https://github.com/Vysp3r/ProtonPlus)**, [ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/) or [Proton Sarek](https://github.com/pythonlover02/Proton-Sarek) (old gpus) - Linux Game Launcher Compatibility Managers
|
||||
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games / Sign-Up Required
|
||||
* ⭐ **[johncena141](https://1337x.to/user/johncena141/)**, [2](https://1337x.to/user/johncena141/) - Linux Games / [Search](https://games.melroy.org/) / [Support](https://gitlab.com/jc141x/portal)
|
||||
* [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) - Game Libraries / Launchers
|
||||
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Wiki](https://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* [Native Linux Games](https://rentry.co/FMHYB64#native-linux-games) - Linux Games
|
||||
* [Faugus Launcher](https://github.com/Faugus/faugus-launcher) - Play Windows Games on Linux
|
||||
* [winesapOS](https://github.com/winesapOS/winesapOS) - Play Games on Storage Devices
|
||||
* [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu)
|
||||
* [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games
|
||||
* [CreamLinux](https://github.com/anticitizn/creamlinux) - Steam DLC Unlocker / [Installer](https://github.com/Novattz/creamlinux-installer)
|
||||
* [SLSsteam](https://cs.rin.ru/forum/search.php?st=0&sk=t&sd=d&sr=topics&keywords=SLSsteam) - Steamclient Mod + DLC Unlocker
|
||||
* [SLSsteam](https://cs.rin.ru/forum/search.php?st=0&sk=t&sd=d&sr=topics&keywords=SLSsteam) - Steamclient Mod w/ DLC Unlocker and Emulated Achievements
|
||||
* [SteamTinkerLaunch](https://github.com/sonic2kk/steamtinkerlaunch) - Steam Wrapper w/ Custom Launcher Options
|
||||
* [AdwSteamGtk](https://github.com/Foldex/AdwSteamGtk) - Steam Frontend
|
||||
* [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam
|
||||
* [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam
|
||||
* [Luxtorpeda](https://github.com/luxtorpeda-dev/luxtorpeda) or [Boxtron](https://github.com/dreamer/boxtron) - Run Steam Games on Linux
|
||||
* [RetroDECK](https://retrodeck.net/) - Emulator for Steam Deck
|
||||
* [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) - Steam Deck Utilities
|
||||
* [SamRewritten](https://github.com/PaulCombal/SamRewritten) - Steam Achievement Manager
|
||||
* [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker
|
||||
* [Heroic Games Launcher](https://heroicgameslauncher.com/) - Epic / GOG / Prime Games Launcher / [Discord](https://discord.com/invite/rHJ2uqdquK) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher)
|
||||
* [Minigalaxy](https://sharkwouter.github.io/minigalaxy/) - GOG Client
|
||||
* [Online-Fix Linux](https://github.com/ZzEdovec/onlinefix-linux) - Launch Games w/ Online-Fix Patches
|
||||
* [Sober](https://sober.vinegarhq.org/) - Roblox Linux Port / [Vinegar (Studio Only)](https://vinegarhq.org/)
|
||||
* [Limo](https://github.com/limo-app/limo) - Nexus Mods Manager for Linux
|
||||
* [ssprea-nvidia-control](https://github.com/ssprea/ssprea-nvidia-control), [NVBurner](https://github.com/iloveichigo/NVBurner) or [CoreCtrl](https://gitlab.com/corectrl/corectrl) - GPU Overclocking Tools
|
||||
* [DXVK](https://github.com/doitsujin/dxvk) - Vulkan-Based Direct3D 9, 10, and 11 for Linux / Wine
|
||||
* [ssprea-nvidia-control](https://github.com/ssprea/ssprea-nvidia-control) or [CoreCtrl](https://gitlab.com/corectrl/corectrl) - GPU Overclocking Tools
|
||||
* [DXVK](https://github.com/doitsujin/dxvk) - Vulkan-Based Direct3D for Linux / Wine
|
||||
* [dxvk-gplasync](https://gitlab.com/Ph42oN/dxvk-gplasync/) - DXVK Fork w/ Async / Vulkan-Based Direct3D / Stutter Reduction
|
||||
* [lsfg-vk](https://github.com/PancakeTAS/lsfg-vk) - Lossless Scaling for Linux
|
||||
* [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer
|
||||
* [Liquorix](https://liquorix.net/), [Xanmod](https://xanmod.org/) or [Frogging](https://github.com/Frogging-Family/linux-tkg) - Linux Gaming Kernels
|
||||
|
|
@ -315,20 +319,14 @@
|
|||
* ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
||||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||
* ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides
|
||||
* ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI Circumvention
|
||||
* ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)**, [gocryptfs](https://nuetzlich.net/gocryptfs) / [GitHub](https://github.com/rfjakob/gocryptfs) or [Tomb](https://dyne.org/software/tomb/) - File Encryption
|
||||
* [Securely Wipe Disk](https://wiki.archlinux.org/title/Securely_wipe_disk) or [SSD Memory Cell Clearing](https://wiki.archlinux.org/title/Solid_state_drive/Memory_cell_clearing) - Linux Disk Wipe Guides
|
||||
* [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers
|
||||
* [YouTubeUnblock](https://github.com/Waujito/youtubeUnblock) - YouTube DPI Circumvention
|
||||
* [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy
|
||||
* [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool
|
||||
* [Lockigest](https://elma.dev/works/lockigest/) - Screen Locker / [GitHub](https://github.com/elmsec/lockigest)
|
||||
* [Mistborn](https://gitlab.com/cyber5k/mistborn) - Manage Cloud Security Apps
|
||||
* [OpenSnitch](https://github.com/evilsocket/opensnitch) or [gufw](https://github.com/costales/gufw) - Linux Firewalls
|
||||
* [Tracee](https://aquasecurity.github.io/tracee/latest) - Runtime Security and Forensics
|
||||
* [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel
|
||||
* [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server
|
||||
* [DSVPN](https://github.com/jedisct1/dsvpn) - Self-Hosted VPN
|
||||
* [vnStat](https://github.com/vergoh/vnstat) - Network Monitors
|
||||
* [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication
|
||||
* [USBGuard](https://github.com/USBGuard/usbguard) - Implement USB Device Authorization Policies
|
||||
|
|
@ -336,7 +334,6 @@
|
|||
* [Collision](https://flathub.org/apps/dev.geopjr.Collision) - Check File Hashes
|
||||
* [WhoAmI Project](https://owerdogan.github.io/whoami-project) - Privacy / Anonymity Tool / [GitHub](https://github.com/owerdogan/whoami-project)
|
||||
* [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS Partition
|
||||
* [DNSWarden](https://dnswarden.com/) - DNS Adblocking / [GitHub](https://github.com/bhanupratapys/dnswarden)
|
||||
* [Firejail](https://firejail.wordpress.com/) or [Bubblewrap](https://github.com/containers/bubblewrap) - Sandboxing Tools
|
||||
* [GoogleTeller](https://github.com/berthubert/googerteller) - Google Tracking Notifications
|
||||
|
||||
|
|
@ -345,10 +342,10 @@
|
|||
## ▷ Linux Internet
|
||||
|
||||
* ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_qbittorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [GitHub](https://github.com/rakshasa/rtorrent), [Fragments](https://apps.gnome.org/Fragments/), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients
|
||||
* ⭐ **[Soulseek](https://www.slsknet.org)** - File Sharing App
|
||||
* ⭐ **[Nicotine+](https://nicotine-plus.org/)** or [Soulseek](https://www.slsknet.org) - File Sharing App
|
||||
* ⭐ **[Linux WiFi Hotspot](https://github.com/lakinduakash/linux-wifi-hotspot)** - Create WiFi Hotspots
|
||||
* [RuTorrent](https://github.com/Novik/ruTorrent) or [Flood](https://flood.js.org/) - RTorrent Web Frontend
|
||||
* rTorrent Tools - [Extended](http://rtorrent-ps.readthedocs.io/) / [Tools](https://pyrocore.readthedocs.org/) / [GitHub](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html)
|
||||
* rTorrent Tools - [Extended](https://rtorrent-ps.readthedocs.io/) / [Tools](https://pyrocore.readthedocs.org/) / [GitHub](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html)
|
||||
* [BTFS](https://github.com/johang/btfs) - Bittorrent Filesystem
|
||||
* [Luakit](https://luakit.github.io/) - Lightweight Linux Browser
|
||||
* [browsh](https://www.brow.sh/) - Text-Based Browser
|
||||
|
|
@ -379,7 +376,6 @@
|
|||
* [ZapZap](https://rtosta.com/zapzap/) - WhatsApp Client / [GitHub](https://github.com/rafatosta/zapzap)
|
||||
* [YouTube-Viewer](https://github.com/trizen/youtube-viewer), [Pipe Viewer](https://github.com/trizen/pipe-viewer) or [Pipeline](https://gitlab.com/schmiddi-on-mobile/pipeline) - YouTube Clients
|
||||
* [GrayJay](https://grayjay.app/desktop/) - Combines YouTube, Twitch, Rumble, etc.
|
||||
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
|
||||
* [Discover](https://github.com/trigg/Discover) - Discord Overlay
|
||||
* [dvm](https://github.com/diced/dvm) - Discord Version Manager
|
||||
|
||||
|
|
@ -387,17 +383,16 @@
|
|||
|
||||
## ▷ Server / Selfhosting
|
||||
|
||||
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)** / [2](https://gist.github.com/kvnxiao/27c14760cbec35b4e312e34c856b51a8), [iHostIt](https://ihostit.app/) or [Awesome Selfhosted UI](https://awesomeselfhosted.netlify.app/) - Self-Hosted Software Index / [GitHub](https://github.com/awesome-selfhosted/awesome-selfhosted)
|
||||
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)** / [2](https://gist.github.com/kvnxiao/27c14760cbec35b4e312e34c856b51a8) or [Awesome Selfhosted UI](https://awesomeselfhosted.netlify.app/) - Self-Hosted Software Index / [GitHub](https://github.com/awesome-selfhosted/awesome-selfhosted)
|
||||
* 🌐 **[Selfh.st](https://selfh.st/apps/)** - Self-Hosted Software Index
|
||||
* 🌐 **[Self-Hosting-Guide](https://github.com/mikeroyal/Self-Hosting-Guide)** - Self-Hosted Software Index
|
||||
* ⭐ **[Homepage](https://gethomepage.dev/)** / [GitHub](https://github.com/gethomepage/homepage), **[Dashy](https://dashy.to/)** / [GitHub](https://github.com/Lissy93/dashy), [Flame](https://github.com/pawelmalak/flame), [Homer](https://github.com/bastienwirtz/homer), [Lab Dash](https://github.com/AnthonyGress/lab-dash), [mafl](https://mafl.hywax.space/), [Glance](https://github.com/glanceapp/glance), [Homarr](https://homarr.dev/) / [GitHub](https://github.com/homarr-labs/homarr) or [Organizr](https://github.com/causefx/Organizr) - Home Server Startpages
|
||||
* [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
|
||||
* [HowtoForge](https://www.howtoforge.com/) / [GitHub](https://github.com/lollipopkit/flutter_server_box) or [Comfy.Guide](https://comfy.guide/) - Linux Server Software Guides
|
||||
* [Flutter Server Box](https://cdn.lpkt.cn/serverbox/), [Webmin](https://webmin.com/) / [GitHub](https://github.com/webmin/webmin), [Cockpit Project](https://cockpit-project.org/), [CasaOS](https://casaos.io/) / [GitHub](https://github.com/IceWhaleTech/CasaOS) or [1Panel](https://1panel.pro/) / [GitHub](https://github.com/1Panel-dev/1Panel) - Linux Server Managers / Status
|
||||
* [Proxmox](https://www.proxmox.com/en/) - Self-Hosted Server Tools
|
||||
* [EasyPanel](https://easypanel.io/) - Server Control Panel
|
||||
* [Free Cloud Linux Server](https://rentry.co/FMHYB64#free-cloud-linux-server) - Free Cloud Server Guide
|
||||
* [serverbox](https://cdn.lpkt.cn/serverbox/), [EasyPanel](https://easypanel.io/), [Webmin](https://webmin.com/) / [GitHub](https://github.com/webmin/webmin), [Cockpit Project](https://cockpit-project.org/), [CasaOS](https://casaos.zimaspace.com/) / [GitHub](https://github.com/IceWhaleTech/CasaOS) or [1Panel](https://1panel.pro/) / [GitHub](https://github.com/1Panel-dev/1Panel) - Linux Server Managers / Status
|
||||
* [LXD UI](https://github.com/canonical/lxd-ui) - Linux Container + Virtual Machine Manager
|
||||
* [Proxmox](https://www.proxmox.com/) - Self-Hosted Server Tools / Virtual Environment
|
||||
* [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script
|
||||
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) or [DockSTARTer](https://github.com/GhostWriters/DockSTARTer) - Automated Docker Media Server Setups
|
||||
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
|
||||
|
|
@ -406,7 +401,6 @@
|
|||
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
|
||||
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
|
||||
* [openmediavault](https://www.openmediavault.org/) / [GitHub](https://github.com/openmediavault/openmediavault/) or [Linux Server](https://github.com/ZizzyDizzyMC/linx-server/) - Self-Hosted Cloud Storage
|
||||
* [ABS FLutter](https://github.com/Vito0912/abs_flutter) - Self-Hosted Audiobook Server
|
||||
* [iRedMail](https://www.iredmail.org/), [Docker Mailserver](https://docker-mailserver.github.io/docker-mailserver/edge/), [UnInbox](https://github.com/un/inbox) or [Mail-in a Box](https://mailinabox.email/) - Self-Hosted Email Servers
|
||||
|
||||
***
|
||||
|
|
@ -415,8 +409,10 @@
|
|||
|
||||
* 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List
|
||||
* ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [rQuickshare](https://github.com/Martichou/rquickshare), [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/) / [Tray Support](https://martchus.github.io/syncthingtray/), [portal](https://github.com/SpatiumPortae/portal), [Zrok](https://zrok.io/), [Celeste](https://flathub.org/apps/com.hunterwittenborn.Celeste) / [2](https://snapcraft.io/celeste) / [GitHub](https://github.com/hwittenborn/celeste), [Cattail](https://github.com/nerdyslacker/cattail) or [Sharing](https://github.com/parvardegr/sharing) - File Sync / Transfer
|
||||
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)**, **[lf](https://github.com/gokcehan/lf)**, [ranger](https://ranger.fm), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [superfile](https://github.com/yorukot/superfile), [Joshuto](https://github.com/kamiyaa/joshuto), [Filelight](https://apps.kde.org/en-gb/filelight/), [dut](https://codeberg.org/201984/dut), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Managers / Disk Usage Analyzers
|
||||
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [gocatcli](https://github.com/deadc0de6/gocatcli/), [xplr](https://xplr.dev/) / [Discord](https://discord.com/invite/JmasSPCcz3) / [GitHub](https://github.com/sayanarijit/xplr), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://ugrep.com) / [GitHub](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers
|
||||
* ⭐ **[lf](https://github.com/gokcehan/lf)**, **[ranger](https://ranger.fm)**, **[nnn](https://github.com/jarun/nnn)**, **[clifm](https://github.com/leo-arch/clifm)**, **[fm](https://github.com/mistakenelf/fm)**, **[superfile](https://github.com/yorukot/superfile)**, **[Joshuto](https://github.com/kamiyaa/joshuto)** - Terminal File Managers
|
||||
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)**, **[Filelight](https://apps.kde.org/en-gb/filelight/)** - Disk Usage Analyzers / GUI
|
||||
* ⭐ **[dut](https://codeberg.org/201984/dut)**, **[gdu](https://github.com/dundee/gdu)**, **[NCDU](https://dev.yorhel.nl/ncdu)** - Disk Usage Analyzers / CLI
|
||||
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [gocatcli](https://github.com/deadc0de6/gocatcli/), [xplr](https://xplr.dev/) / [Discord](https://discord.com/invite/JmasSPCcz3) / [GitHub](https://github.com/sayanarijit/xplr), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://ugrep.com) / [GitHub](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers / Search
|
||||
* [The Filesystem Hierarchy Standard](https://i.imgur.com/0vfM4dm.png) - Linux Filesystem Chart
|
||||
* [Dolphin](https://userbase.kde.org/Dolphin) / [Source Code](https://invent.kde.org/system/dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
|
||||
* [pigz](https://zlib.net/pigz/) / [GitHub](https://github.com/madler/pigz), [p7zip](https://p7zip.sourceforge.net/) or [GNU Gzip](https://www.gnu.org/software/gzip/) - File Archivers / Unzippers
|
||||
|
|
@ -493,7 +489,7 @@
|
|||
# ► Ricing / Customization
|
||||
|
||||
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)**, **[Awesome Linux Ricing](https://github.com/avtzis/awesome-linux-ricing)** or [Pling](https://www.pling.com/s/All-Linux/browse/) - Linux Ricing Resources
|
||||
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems
|
||||
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)**, **[Aylur's GTK Shell](https://github.com/Aylur/ags)** or [Quickshell](https://quickshell.org/) - Widgeting Systems
|
||||
* ⭐ **[unixporn](https://unixporn.github.io/)** - Ricing Community / [Subreddit](https://reddit.com/r/unixporn)
|
||||
|
||||
***
|
||||
|
|
@ -505,7 +501,7 @@
|
|||
* [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension
|
||||
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
|
||||
* [Guillotine](https://gitlab.com/ente76/guillotine/) - Execute Commands from a Customizable Menu / GNOME Extension
|
||||
* [Polonium](https://zeroxoneafour.github.io/polonium/) - KDE6 Tiling Manager Extension / [GitHub](https://github.com/zeroxoneafour/polonium)
|
||||
* [Polonium](https://zeroxoneafour.github.io/polonium/) - KDE6 Tiling Manager Extension
|
||||
* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix
|
||||
|
||||
***
|
||||
|
|
@ -518,7 +514,7 @@
|
|||
* 🌐 **[We Are Wayland Now](https://wearewaylandnow.com/)** - Wayland Ecosystem Components / [GitHub](https://github.com/gianklug/wearewaylandnow)
|
||||
* ⭐ **[i3wm](https://i3wm.org)** - Manual Tiling Window Manager / [Reference Card](https://i3wm.org/docs/refcard.html)
|
||||
* ⭐ **[awesomewm](https://awesomewm.org)** / [GitHub](https://github.com/awesomeWM/awesome), **[xmonad](https://xmonad.org)**, [Qtile](https://qtile.org/) or [dwm](https://dwm.suckless.org) - Dynamic Tiling Window Managers
|
||||
* ⭐ **[Hyprland](https://hyprland.org/)** / [Resources](https://github.com/hyprland-community/awesome-hyprland) / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://github.com/mylinuxforwork/dotfiles), [2](https://end-4.github.io/dots-hyprland-wiki/en/) or **[niri](https://github.com/YaLTeR/niri)** - Dynamic Tiling Wayland Compositors
|
||||
* ⭐ **[Hyprland](https://hyprland.org/)** / [Resources](https://github.com/hyprland-community/awesome-hyprland) / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://github.com/mylinuxforwork/dotfiles), [2](https://ii.clsty.link/en/) or **[niri](https://github.com/YaLTeR/niri)** - Dynamic Tiling Wayland Compositors
|
||||
* ⭐ **[Sway](https://github.com/swaywm/sway)** / [Arch Wiki](https://wiki.archlinux.org/title/Sway) or [SwayFx](https://github.com/WillPower3309/swayfx) - i3-compatible Wayland Compositors
|
||||
* [BSPWM](https://github.com/baskerville/bspwm) or [herbstluftwm](https://herbstluftwm.org) - Hybrid Tiling Window Managers
|
||||
* [river](https://github.com/riverwm/river/) - Wayland Compositor
|
||||
|
|
@ -563,6 +559,8 @@
|
|||
* [Beta Profiles](https://betaprofiles.com/) - Download Pre-Release Versions macOS
|
||||
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
|
||||
* [Boot Camp](https://support.apple.com/boot-camp) - Windows Bootloader / [DL Script](https://github.com/timsutton/brigadier)
|
||||
* [Tart](https://tart.run/) - Virtual Machine Manager / [GitHub](https://github.com/cirruslabs/tart)
|
||||
* [UTM](https://mac.getutm.app/) or [VMware](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html) - Virtual Machines / Run Linux / Windows on macOS
|
||||
* [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
|
||||
|
|
@ -573,7 +571,7 @@
|
|||
* [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs
|
||||
* [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager
|
||||
* [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts
|
||||
* [Adobe Creative Cloud](https://rentry.co/FMHYB64#mac-adobe-cc), [Adobe Downloader](https://github.com/X1a0He/Adobe-Downloader/blob/main/readme-en.md) or [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Product Downloader
|
||||
* [Adobe Downloader](https://github.com/X1a0He/Adobe-Downloader/blob/main/readme-en.md) or [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Product Downloader
|
||||
* [ss64 macOS](https://ss64.com/mac/) - macOS Bash Commands
|
||||
* [Left on Read](https://leftonread.me/) - iMessage Client
|
||||
* [MacBing](https://goodsnooze.gumroad.com/l/macbing), [LlamaChat](https://www.llamachat.app/) or [Mollama](https://apps.apple.com/app/mollama/id6736948278) - AI Chatbots
|
||||
|
|
@ -589,8 +587,6 @@
|
|||
* [MacScripter](https://www.macscripter.net/) - Automation Forum
|
||||
* [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor
|
||||
* [Later](https://getlater.app/) - Restore App Sessions / [GitHub](https://github.com/alyssaxuu/later)
|
||||
* [Tart](https://tart.run/) - Virtual Machine Manager / [GitHub](https://github.com/cirruslabs/tart)
|
||||
* [VMware](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html) - Virtual Machine
|
||||
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors
|
||||
* [GrayJay](https://grayjay.app/desktop/) - Combines YouTube, Twitch, Rumble, etc.
|
||||
* [SD Buddy](https://github.com/breadthe/sd-buddy), [CHARL-E](https://www.charl-e.com/) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps
|
||||
|
|
@ -622,7 +618,7 @@
|
|||
* ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/), [MacApps](https://macapps.link/en/) or [Applite](https://aerolite.dev/applite) - Package Managers
|
||||
* [AppsTorrent](https://appstorrent.ru/)
|
||||
* [nMac](https://nmac.to/)
|
||||
* [Mac App Store](https://macappstre.com/)
|
||||
* [MacBB](https://macbb.org/)
|
||||
* [Antibiotic's](https://t.me/AntibioticsChannel)
|
||||
* [Haxmac](https://haxmac.cc/)
|
||||
* [Mac Torrents](https://www.torrentmac.net/)
|
||||
|
|
@ -639,8 +635,8 @@
|
|||
## ▷ Mac Video
|
||||
|
||||
* [IINA](https://iina.io/) - Video Player
|
||||
* [AnymeX](https://anymex.vercel.app/) - Anime Streaming App / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Anime Torrent Streaming
|
||||
* [Hayase](https://hayase.watch/) - Anime Torrent Streaming App / [Extensions](https://rentry.co/FMHYB64#hayase)
|
||||
* [AnymeX](https://anymex.vercel.app/) - Anime Streaming App / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [Discord](https://discord.com/invite/EjfBuYahsP) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [Yattee](https://github.com/yattee/yattee) - YouTube Player
|
||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
||||
* [Cap](https://cap.so/) / [GitHub](https://github.com/CapSoftware/Cap), [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders
|
||||
|
|
@ -654,6 +650,7 @@
|
|||
* [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
|
||||
* [Sonosano](https://github.com/KRSHH/Sonosano) - Self-Hosted P2P Lossless Music Player
|
||||
* [SoundSeer](https://github.com/jonathangarelick/SoundSeer) - Spotify in Menu Bar
|
||||
* [TheBoringNotch](https://theboring.name/) - Turn Notch into Audio Controller / Calendar / [Discord](https://discord.gg/GvYcYpAKTu) / [GitHub](https://github.com/TheBoredTeam/boring.notch/)
|
||||
* [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client
|
||||
|
|
@ -738,7 +735,7 @@
|
|||
* [KeePassXC](https://keepassxc.org/download/#macos) or [Strongbox](https://strongboxsafe.com/) - Password Managers
|
||||
* [What Route](https://whatroute.net/) - Network Diagnostic Tool
|
||||
* [ElectronMail](https://github.com/vladimiry/ElectronMail) - Email Clients
|
||||
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
|
||||
* [Browserino](https://github.com/AlexStrNik/Browserino) - Browser Prompter
|
||||
* [Orion](https://kagi.com/orion/) - Browser with Chrome + Firefox Extension Support / [Discord](https://discord.gg/Yk8Aj8AxGw)
|
||||
|
||||
***
|
||||
|
|
@ -746,7 +743,7 @@
|
|||
## ▷ System Tools
|
||||
|
||||
* 🌐 **[AppleDB](https://appledb.dev/)** - Apple Device / Software Info Database
|
||||
* ⭐ **[Alfred](https://www.alfredapp.com/)** / [Workflows / Themes](https://www.packal.org/) , [Raycast](https://www.raycast.com/), [Albert](https://albertlauncher.github.io/), [Quicksilver](https://qsapp.com/), [KeyboardCowboy](https://github.com/zenangst/KeyboardCowboy) or [SOL](https://sol.ospfranco.com/) - Keystroke Launchers / Spotlight Replacements
|
||||
* ⭐ **[Alfred](https://www.alfredapp.com/)** / [Workflows / Themes](https://www.packal.org/) , [Raycast](https://www.raycast.com/), [Albert](https://albertlauncher.github.io/) / [GitHub](https://github.com/albertlauncher/albert), [Quicksilver](https://qsapp.com/), [KeyboardCowboy](https://github.com/zenangst/KeyboardCowboy) or [SOL](https://sol.ospfranco.com/) - Keystroke Launchers / Spotlight Replacements
|
||||
* ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts
|
||||
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
|
||||
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
|
||||
|
|
@ -757,8 +754,9 @@
|
|||
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
|
||||
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
|
||||
* [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices
|
||||
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
|
||||
* [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping
|
||||
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
|
||||
* [MiddleClick](https://github.com/artginzburg/MiddleClick) - Middle / Scroll Click via 3 Finger Tap / Trackpad or Magic Mouse
|
||||
* [Scroll Reverser](https://pilotmoon.com/scrollreverser/) - Per-Device Scroll Settings
|
||||
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
|
||||
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
|
||||
|
|
@ -768,7 +766,6 @@
|
|||
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
|
||||
* [AirBattery](https://github.com/lihaoyun6/AirBattery) or [CoconutBattery](https://www.coconut-flavour.com/coconutbattery/) - Device Battery Trackers
|
||||
* [Macs Fan Control](https://github.com/crystalidea/macs-fan-control) - Fan Controller
|
||||
* [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices
|
||||
* [Touché](https://redsweater.com/touche/) - Touch Bar Simulator
|
||||
* [Sentinel](https://github.com/alienator88/Sentinel) - SwiftUI Gatekeeper Config GUI
|
||||
* [USBMap](https://github.com/corpnewt/USBMap) - Map macOS USB Ports
|
||||
|
|
@ -784,7 +781,7 @@
|
|||
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
||||
* [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevent Sleep Mode
|
||||
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Loop](https://github.com/MrKai77/Loop), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
||||
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/), [clipboard-history](https://github.com/SUPERCILEX/clipboard-history) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
||||
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/), [ClipPocket](https://github.com/dhahd/ClipPocket), [clipboard-history](https://github.com/SUPERCILEX/clipboard-history) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
||||
* [Pictogram](https://pictogramapp.com/), [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom App Icons
|
||||
* [Tintd](https://www.tintd.app/) or [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
||||
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
|
||||
|
|
@ -805,7 +802,7 @@
|
|||
* [Bruji](https://www.bruji.com/) - Media Cataloging Software Suite
|
||||
* [superfile](https://superfile.netlify.app/) - Terminal File Manager / [GitHub](https://github.com/yorukot/superfile)
|
||||
* [OSXFuse](https://osxfuse.github.io/) - Mac File Integration
|
||||
* [JDownloader](https://jdownloader.org/jdownloader2) - File Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#jdownloader)
|
||||
* [JDownloader](https://jdownloader.org/jdownloader2) - File Download Manager / [Debloat](https://claraiscute.neocities.org/Guides/jdownloader2/) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#jdownloader)
|
||||
* [Go Speed](https://gopeed.com/) - File Download Manager / [GitHub](https://github.com/GopeedLab/gopeed) / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories)
|
||||
* [Progressive Downloader](https://macpsd.net/) - File Download Manager
|
||||
* [eza](https://eza.rocks/) - Modern `ls` Replacement
|
||||
|
|
|
|||
148
docs/misc.md
148
docs/misc.md
|
|
@ -9,7 +9,7 @@
|
|||
* 🌐 **[Awesome List Index](https://github.com/sindresorhus/awesome), [GitHub Topics](https://github.com/topics/awesome)** / [2](https://github.com/topics/awesome-list) - All Awesome Lists
|
||||
* 🌐 **[Lists](https://github.com/jnv/lists)** - List of Lists Index
|
||||
* ↪️ **[AI Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_ai_indexes)**
|
||||
* ⭐ **[FMHY Search](https://www.reddit.com/r/FREEMEDIAHECKYEAH/comments/105xraz/howto_search_fmhy/)** - Search the Wiki
|
||||
* ⭐ **[FMHY Search](https://fmhy.net/posts/search)** - Search the Wiki
|
||||
* ⭐ **[Awesome Search](https://awesomelists.top/)** - Awesome List Search
|
||||
* ⭐ **[Couleur Tweak Tips](https://ctt.cx/)** - Comprehensive Hub of Resources and Tools / [Discord](https://discord.gg/CTT)
|
||||
* ⭐ **[r/InternetIsBeautiful](https://reddit.com/r/InternetIsBeautiful)** - Helpful / Fun Sites
|
||||
|
|
@ -90,6 +90,7 @@
|
|||
* [FreeToKeep](https://freetokeep.gg/) - Games / [Discord](https://discord.gg/t3Yh5Pfw6Y)
|
||||
* [r/RandomActsOfGaming](https://www.reddit.com/r/RandomActsOfGaming/) - Games
|
||||
* [TemporarilyFreeGames](https://t.me/temporarilyfreegames) - Games
|
||||
* [GG.deals Free](https://gg.deals/news/?availability=1&type=6) - Games
|
||||
* [Free Games Tracker](https://pyoneerc1.itch.io/free-games-tracker) - Games
|
||||
* [GamerPower](https://www.gamerpower.com/) - Games
|
||||
* [GrabFreeGames](https://grabfreegames.com/notifications) - Games / [Steam Group](https://steamcommunity.com/groups/GrabFreeGames) / [Discord](https://discord.gg/CjQSS4z)
|
||||
|
|
@ -119,6 +120,7 @@
|
|||
* [TinyKitten](https://tinykittens.com/) - Kitten Rescue / Donation
|
||||
* [CharityNavigator](https://www.charitynavigator.org/), [Arab.org](https://arab.org/), [CharityWatch](https://www.charitywatch.org/), [ProPublica](https://projects.propublica.org/nonprofits/) or [GiveWell](https://www.givewell.org) - Charity Ratings / Resources
|
||||
* [Free Rice](https://freerice.com/) - Earn Rice for the World Food Programme / Trivia
|
||||
* [e-NABLE](https://enablingthefuture.org/) - Volunteer Own 3D Printer for use in Prosthetic Limb Printing
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -139,7 +141,7 @@
|
|||
* [r/Cooking](https://reddit.com/r/Cooking) - Cooking Discussion / Tips
|
||||
* [r/AskCulinary](https://reddit.com/r/AskCulinary) - Get Cooking Advice
|
||||
* [Cheese.com](https://cheese.com/) - Cheese Resources
|
||||
* [Crispy Creations](https://rentry.co/crispycreations) - Potato Chip Info / Guides
|
||||
* [Crispy Creations](https://claraiscute.neocities.org/Guides/crispycreations/), [2](https://claraiscute.pages.dev/Guides/crispycreations/) - Potato Chip Info / Guides
|
||||
* [FermenThings](https://wiki.fermenthings.be/) - Fermentation Wiki
|
||||
* [SaltYourMeat](https://www.saltyourmeat.com/) - Dry Brining Calculator
|
||||
* [HackTheMenu](https://hackthemenu.com/) - Fast Food Secret Menu Items
|
||||
|
|
@ -150,7 +152,7 @@
|
|||
## ▷ Recipes
|
||||
|
||||
* 🌐 **[TheGreatestCookbooks](https://thegreatestbooks.org/v/grid/the-greatest/cookbooks/books)** - Expert Recommended Cookbooks
|
||||
* ⭐ **[Tandoor Recipes](https://docs.tandoor.dev/)**, [Mealie](https://mealie.io/) / [Discord](https://discord.com/invite/QuStdQGSGK), [Cooked](https://cooked.wiki/) or [ManageMeals](https://managemeals.com/) - Recipe Managers
|
||||
* ⭐ **[Tandoor Recipes](https://docs.tandoor.dev/)**, [Mealie](https://mealie.io/) / [Discord](https://discord.com/invite/QuStdQGSGK), [GrubPick](https://grubpick.com/), [Cooked](https://cooked.wiki/) or [ManageMeals](https://managemeals.com/) - Recipe Managers
|
||||
* ⭐ **[Noods.io](https://noods.io/)**, [Gobsmacked](https://gobsmacked.io/), [Just the Recipe](https://www.justtherecipe.com/), [WheresTheDish](https://www.wheresthedish.com/), [Forkestrate](https://app.forkestrate.com/), [Copy Me That](https://www.copymethat.com/), [drizzlelemons](https://www.drizzlelemons.com/) or [PlainOldRecipe](https://www.plainoldrecipe.com/) - Extract Recipes from Sites / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/recipe-filter/) / [Chrome](https://chromewebstore.google.com/detail/ahlcdjbkdaegmljnnncfnhiioiadakae)
|
||||
* ⭐ **[SuperCook](https://www.supercook.com/)** - Recipe Search
|
||||
* [MyFridgeFood](https://myfridgefood.com/) or [WhiskIt](https://whiskit.ai/) - Find Recipes Based on Ingredients
|
||||
|
|
@ -166,6 +168,7 @@
|
|||
* [RecipeRadar](https://www.reciperadar.com/) - Recipe Search
|
||||
* [KitchenAid](https://www.kitchenaid.com/recipes.html) - Recipe Search
|
||||
* [Recipeeper](https://www.recipeeper.com/) - Dietary-Based Recipes
|
||||
* [DAREBEETS](https://darebeets.com/) - Plant-Based Recipes
|
||||
* [TasteAtlas](https://www.tasteatlas.com/) - Recipe Map
|
||||
* [AmazingRibs](https://amazingribs.com/) - Rib Recipes
|
||||
* [The Bread Code Manifesto](https://github.com/hendricius/the-sourdough-framework) - Bread Baking Recipes
|
||||
|
|
@ -178,15 +181,14 @@
|
|||
## ▷ Drinks
|
||||
|
||||
* ⭐ **[/coffee/](https://dan.valeena.dev/guides/coffee-guide/)**, [2](https://rentry.co/coffeeguide) or [Coffee Time General](https://pastebin.com/UEzwuyLz) - Coffee Brewing Masterlists / Guides
|
||||
* ⭐ **[Beanconqueror](https://beanconqueror.com/)** - Coffee Tracking App / [GitHub](https://github.com/graphefruit/Beanconqueror)
|
||||
* ⭐ **[Beanconqueror](https://beanconqueror.com/)** / [GitHub](https://github.com/graphefruit/Beanconqueror) or [Timer.Coffee](https://www.timer.coffee) / [GitHub](https://github.com/antonkarliner/timer-coffee) - Coffee Tracking Apps / Timers
|
||||
* [Cofi](https://github.com/rozPierog/Cofi) - Coffee Brew Timer / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#cofi-note)
|
||||
* [Notbadcoffee](https://notbadcoffee.com/flavor-wheel-en/) - Interactive Coffee Flavor Wheel
|
||||
* [Nahbucks!](https://nahbucks.com/) - Find Local Non-Starbucks Coffee Shops (US)
|
||||
* [Aeromatic](https://aeromatic.app/) - AeroPress Recipe App
|
||||
* [/tea/](https://rentry.co/teageneral) - Tea Brewing Masterlist / Guide
|
||||
* [/tea/](https://claraiscute.pages.dev/Guides/teageneral/) - Tea Brewing Masterlist / Guide
|
||||
* [Drinkable](https://github.com/MOIMOB/drinkable) - Create Cocktails from Home Ingredients
|
||||
* [Make Me a Cocktail](https://makemeacocktail.com/mybar/) - Cocktail Builders
|
||||
* [Modern Meadmaking](https://meadmaking.wiki/) - Homebrewing Wiki
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -211,12 +213,12 @@
|
|||
# ► Gardening
|
||||
|
||||
* 🌐 **[Awesome Agriculture](https://github.com/brycejohnston/awesome-agriculture)** - Agriculture Resources
|
||||
* 🌐 **[Agriculture / Gardening Subreddits](https://rentry.co/TouchGrasss)**
|
||||
* 🌐 **[Agriculture / Gardening Subreddits](https://claraiscute.pages.dev/Guides/touchgrasss/)**
|
||||
* 🌐 **[Cannabis Growing Subreddits](https://www.reddit.com/r/trees/wiki/entreddits_social#wiki_growing)** or [Marijuana Subs](https://www.reddit.com/r/trees/wiki/entreddits_social) - Marijuana Subreddits
|
||||
* ⭐ **[EarthEasy](https://learn.eartheasy.com/)**, [How To Garden](https://www.bhg.com/gardening/how-to-garden/), [HappySprout](https://www.happysprout.com), [Growing Guide](https://blog.planter.garden/), [GrowStuff](https://www.growstuff.org/) or [GrowVeg](https://www.growveg.com/) - Gardening Guides
|
||||
* ⭐ **[r/Gardening](https://reddit.com/r/gardening)** - Gardening Community
|
||||
* ⭐ **[r/Whatsthisplant](https://www.reddit.com/r/whatsthisplant/)** - Plant Identification Community
|
||||
* [PictureThis](https://www.picturethisai.com/) / [Premium](https://rentry.co/FMHYB64#picture-this) or [Pl@ntNet](https://identify.plantnet.org/) - Plant Identification Tools / [Android](https://play.google.com/store/apps/details?id=cn.danatech.xingseus) / [iOS](https://apps.apple.com/us/app/picturethis-plant-identifier/id1252497129)
|
||||
* [PictureThis](https://www.picturethisai.com/) or [Pl@ntNet](https://identify.plantnet.org/) - Plant Identification Tools / [Android](https://play.google.com/store/apps/details?id=cn.danatech.xingseus) / [iOS](https://apps.apple.com/us/app/picturethis-plant-identifier/id1252497129)
|
||||
* [WildFlowerSearch](https://wildflowersearch.org/) - Flower Identifier
|
||||
* [Permapeople](https://permapeople.org/) - Garden Plant Info
|
||||
* [How Many Plants](https://howmanyplants.com/) - House Plant Information
|
||||
|
|
@ -249,6 +251,7 @@
|
|||
* [PlateRecognizer](https://platerecognizer.com/) - License Plate Recognition
|
||||
* [GasPrices](https://gasprices.aaa.com/) - Gas Price Tracker
|
||||
* [Fuel.io](https://fuel.io/) - Vehicle Fuel Tracking
|
||||
* [LubeLogger](https://lubelogger.com/) - Self-Hosted Maintenance + Fuel Mileage Tracker / [GitHub](https://github.com/hargata/lubelog)
|
||||
* [EV-Map](https://ev-map.app/) - Electronic Vehicle Charging Map
|
||||
* [Alibi](https://github.com/Myzel394/Alibi) or [DroidDashcam](https://play.google.com/store/apps/details?id=com.helge.droiddashcam) - Mobile Dashcams
|
||||
|
||||
|
|
@ -275,13 +278,14 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[ADS-B Exchange](https://globe.adsbexchange.com/)**, [FlightRadar24](https://www.flightradar24.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
|
||||
* ⭐ **[ADS-B Exchange](https://globe.adsbexchange.com/)**, [FlightRadar24](https://www.flightradar24.com/), [PlaneFinder](https://planefinder.net/), [Airplanes.live](https://globe.airplanes.live/), [Radarbox](https://www.airnavradar.com/), [Air Loom](https://objectiveunclear.com/airloom.html) or [FlightAware](https://www.flightaware.com/) - Live Flight Trackers
|
||||
* [VisaIndex](https://visaindex.com/) - Worldwide Travel Visa Guides
|
||||
* [Google Flights](https://www.google.com/travel/flights) or [SkyScanner](https://skyscanner.net/) - Compare / Book Flights
|
||||
* [seats.aero](https://seats.aero/) - Flight Search Engine / [Discord](https://discord.gg/PaHdCqb7eh)
|
||||
* [Matrix](https://matrix.itasoftware.com/) - Airfare Search
|
||||
* [FlightConnections](https://www.flightconnections.com/) - Interactive Flight Routes
|
||||
* [SkyVector](https://skyvector.com/) - Flight Planner
|
||||
* [ADSB.im](https://adsb.im/) - ADSB Tracking for Single Board Computers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -320,14 +324,15 @@
|
|||
|
||||
## ▷ Navigation / Transport
|
||||
|
||||
* ⭐ **[Google Maps](https://www.google.com/maps/)**, [Apple Maps](https://beta.maps.apple.com/), [Bing Maps](https://www.bing.com/maps) or [Mapy](https://en.mapy.cz/) - Online / Offline Maps
|
||||
* ⭐ **[Google Maps](https://www.google.com/maps/)**, [Apple Maps](https://beta.maps.apple.com/), [Bing Maps](https://www.bing.com/maps), [OsmAnd](https://osmand.net/) or [Mapy](https://mapy.com) - Online / Offline Maps
|
||||
* ⭐ **[CoMaps](https://www.comaps.app/)** / [Source Code](https://codeberg.org/comaps/comaps) or [Organic Maps](https://organicmaps.app/) / [Subreddit](https://www.reddit.com/r/organicmaps/) / [Telegram](https://t.me/OrganicMaps) / [GitHub](https://github.com/organicmaps/organicmaps) - Offline Maps
|
||||
* ⭐ **[OpenStreetMap](https://www.openstreetmap.org/)** - Open Community Maps
|
||||
* ⭐ **OpenStreetMap Tools** - [Resources](https://github.com/osmlab/awesome-openstreetmap) / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Advanced Editor](https://level0.osmz.ru/) / [AI Editor](https://rapideditor.org/) / [Overpass API GUI](https://overpass-turbo.eu/)
|
||||
* [OsmAnd](https://osmand.net/) or [Magic Earth](https://www.magicearth.com/) - Mobile Only Maps
|
||||
* ⭐ **OpenStreetMap Tools** - [Resources](https://github.com/osmlab/awesome-openstreetmap) / [Features](https://github.com/deevroman/better-osm-org) / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Advanced Editor](https://level0.osmz.ru/) / [AI Editor](https://rapideditor.org/) / [Overpass API GUI](https://overpass-turbo.eu/)
|
||||
* [Magic Earth](https://www.magicearth.com/) - Mobile Maps
|
||||
* [Waze](https://www.waze.com/) - Driving / Navigation Focused Map / [Editor](https://www.waze.com/en-US/editor)
|
||||
* [GMaps WV](https://f-droid.org/packages/us.spotco.maps/) - Restricted Google Maps WebView Wrapper / [GitHub](https://github.com/woheller69/maps)
|
||||
* [CubeTrek](https://cubetrek.com/) - GPS Track Manager
|
||||
* [DeFlock](https://deflock.me/) - AI Automated License Plate Reader Cameras / ALPR Map / [Discord](https://discord.gg/aV7v4R3sKT) / [GitHub](https://github.com/FoggedLens/deflock)
|
||||
* [Wikiroutes](https://wikiroutes.info/) or [CityMapper](https://citymapper.com/) - Public Transport Maps
|
||||
* [AnyTrip](https://anytrip.com.au/) - Australia & New Zealand Public Transport Maps
|
||||
* [Mini Tokyo 3D](https://minitokyo3d.com/) - Tokyo Public Transport Map
|
||||
|
|
@ -356,13 +361,13 @@
|
|||
|
||||
* ⭐ **[Windy](https://www.windy.com/)**, **[Ventusky](https://www.ventusky.com/)**, [WXCharts](https://wxcharts.com/), [Earth Observatory](https://earthobservatory.nasa.gov/global-maps), [Zoom Earth](https://zoom.earth/), [Weatherwise](https://web.weatherwise.app/), [Earth Now](https://climate.nasa.gov/earth-now/), [Earth](https://earth.nullschool.net/) or [satellite-map.gosur](https://satellite-map.gosur.com/) - General Weather / Climate Maps
|
||||
* [CyclonicWx](https://cyclonicwx.com/) - Tropical Weather Tracking Tools / Plotting
|
||||
* [Netweather](https://www.netweather.tv/charts-and-data/global-jetstream) - Global Jetstream Forcast Map
|
||||
* [Netweather](https://www.netweather.tv/charts-and-data/global-jetstream) - Global Jetstream Forecast Map
|
||||
* [Cyclocane](https://www.cyclocane.com/) - Cyclone and Hurricane Tracker Map
|
||||
* [Supercell Wx](https://supercellwx.net/) - Visualize / Archive NEXRAD Data + Weather Alerts / [GitHub](https://github.com/dpaulat/supercell-wx)
|
||||
* [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
|
||||
* [Snow Forcast](https://www.snow-forecast.com/maps) - Snow Forecast 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
|
||||
|
|
@ -418,7 +423,7 @@
|
|||
## ▷ Historic Maps
|
||||
|
||||
* 🌐 **[Map History](https://www.maphistory.info/)** or [David Rumsey Map Collection](https://www.davidrumsey.com/) - Historical Map Indexes
|
||||
* ⭐ **[Running Reality](https://www.runningreality.org/)**, [World History Maps](https://www.worldhistory.org/mapselect/), [Chronas](https://www.chronas.org/) or [OldMapsOnline](https://www.oldmapsonline.org/) - Interactive Historical Maps
|
||||
* ⭐ **[Running Reality](https://www.runningreality.org/)**, [World History Maps](https://www.worldhistory.org/mapselect/), [Globe of History](https://www.globeofhistory.com/) (desktop), [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
|
||||
* [EuraAtlas](https://euratlas.com/) - Historical Atlas of Europe
|
||||
|
|
@ -432,7 +437,8 @@
|
|||
* [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
|
||||
* [Project’44](https://www.project44.ca/) - World War II Historical Map / [Discord](https://discord.gg/bzWEuc6JJv)
|
||||
* [Project ’44](https://www.project44.ca/) - World War II Historical Map / [X](https://x.com/project4_4) / [Discord](https://discord.gg/bzWEuc6JJv)
|
||||
* [Project Athena](https://www.projectathena.ca/) - War in Afghanistan Historical Map / [X](https://x.com/TFProjectAthena) / [Discord](https://discord.gg/jMmxWZpUKs)
|
||||
* [HK Battle 1941](https://digital.lib.hkbu.edu.hk/1941hkbattle/en/index.php) - The Battle of Hong Kong 1941 Interactive Map
|
||||
* [Medieval Murder Maps](https://medievalmurdermap.co.uk/) - Interactive Medieval Murder / Death Maps
|
||||
|
||||
|
|
@ -484,19 +490,18 @@
|
|||
* [Anime Corner](https://animecorner.me/) - Anime / Manga News
|
||||
* [ArtDaily](https://artdaily.com) - Art News
|
||||
* [Codrops](https://tympanus.net/codrops/) - Design News
|
||||
* [The Athletic](https://www.nytimes.com/athletic/) - Sports News / [Bypass Paywall](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_paywall_bypass) / [Mobile](https://rentry.co/FMHYB64#the-athletic)
|
||||
* [The Athletic](https://www.nytimes.com/athletic/) - Sports News / [Bypass Paywall](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_paywall_bypass) / [Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search)
|
||||
* [EventMap](https://rsoe-edis.org/eventMap) - Emergency and Disaster Maps
|
||||
* [Interactive News Map](https://usa.liveuamap.com/) - Geolocated News Alerts / Headlines U.S.
|
||||
* [MedicineNet](https://www.medicinenet.com/), [MedPageToday](https://www.medpagetoday.com/), [EverydayHealth](https://www.everydayhealth.com/), [Medscape](https://www.medscape.com/), [healthline](https://www.healthline.com/) or [WebMD](https://www.webmd.com/) - Health News
|
||||
* [MathURLs](https://mathurls.com/) - Math News
|
||||
* [Dailynous](https://dailynous.com/) - Philosophy News
|
||||
* [The Base Rate Times](https://www.baseratetimes.com/) - Market Prediction News
|
||||
* [Medievalists](https://www.medievalists.net/category/news/) - Medieval History News
|
||||
* [FinURLs](https://finurls.com/) - 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/), [GovData](https://www.govactionlist.com/) or [WikiPolitica](https://wikipolitica.org/) - Government Executive Orders, Location & more
|
||||
* [PlaneCrashInfo](https://www.planecrashinfo.com/), [FlightSaftey](https://asn.flightsafety.org/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
||||
* [FlightSaftey](https://asn.flightsafety.org/), [PlaneCrashInfo](https://www.planecrashinfo.com/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
||||
* [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/) or [HonestyMeter](https://www.honestymeter.com/) - Media Bias Checkers
|
||||
* [PressMob](https://pressmob.ai/) - Journalist Search
|
||||
|
|
@ -508,11 +513,13 @@
|
|||
|
||||
* ⭐ **[Spike News](https://readspike.com/)**, [2](https://spike.news/)
|
||||
* [QotNews](https://news.t0.vc/) - Hacker News / Reddit / Lobsters / Tildes
|
||||
* [Kite](https://kite.kagi.com/) - Aggregator / Summaries / [GitHub](https://github.com/kagisearch/kite-public)
|
||||
* [Kagi News](https://news.kagi.com/) - Aggregator / Summaries / [GitHub](https://github.com/kagisearch/kite-public)
|
||||
* [NewsMinimalist](https://www.newsminimalist.com/) - Aggregator / Summaries
|
||||
* [Particle](https://particle.news/) - Aggregator / Summaries
|
||||
* [AlDaily](https://www.aldaily.com/) - Art / Philosophy / Literature News
|
||||
* [Ground.news](https://ground.news/) - Sign-Up Required
|
||||
* [Upstract](https://upstract.com/)
|
||||
* [100.news](https://100.news/)
|
||||
* [AllSides](https://www.allsides.com/)
|
||||
* [SPIDR](https://spidr.today/)
|
||||
* [NewsNow](https://www.newsnow.co.uk/)
|
||||
|
|
@ -529,6 +536,7 @@
|
|||
* ⭐ **[GamersNexus](https://gamersnexus.net/)** - PC Gaming News
|
||||
* ⭐ **[Hacker News](https://news.ycombinator.com/)** - Tech News / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_hacker_news_tools)
|
||||
* [AlternativeTo Aggregator](https://alternativeto.net/news/all/) - Tech News Aggregator
|
||||
* [DeadStack](https://deadstack.net/) - Tech / AI News Aggregator
|
||||
* [TechURLs](https://techurls.com/) - Tech News
|
||||
* [Techmeme](https://www.techmeme.com/) - Tech News
|
||||
* [The Brutalist Report](https://brutalist.report/) - Tech News
|
||||
|
|
@ -537,7 +545,7 @@
|
|||
* [Liliputing](https://liliputing.com/) - Hardware / Linux Mobile News
|
||||
* [Geeks3D](https://www.geeks3d.com/), [Toms Hardware](https://www.tomshardware.com/) or [Overclock3D](https://overclock3d.net/) - Hardware News / Reviews
|
||||
* [EmergentMind](https://www.emergentmind.com/), [TestingCatalog](https://www.testingcatalog.com/), [Singularity Hub](https://singularityhub.com/) or [Dupple](https://www.dupple.com/techpresso) - AI News
|
||||
* [GamesRecap](https://gamesrecap.io/) - Game Annoucements / Trailers
|
||||
* [GamesRecap](https://gamesrecap.io/) - Game Announcements / Trailers
|
||||
* [Internet Society](https://pulse.internetsociety.org/blog) - Internet Infrastructure News
|
||||
* [RestorePrivacy](https://cyberinsider.com/news/) or [Privacy International](https://www.privacyinternational.org/) - Privacy / Security News
|
||||
|
||||
|
|
@ -599,7 +607,7 @@
|
|||
* ⭐ **[Standard BMI Calculator](https://www.nhlbi.nih.gov/health/educational/lose_wt/BMI/bmicalc.htm)** - BMI Calculator
|
||||
* [AMMFitness](https://www.ammfitness.co.uk/) - Fitness / Nutrition Info
|
||||
* [The Fitness Wiki](https://thefitness.wiki/) - Fitness Information Wiki
|
||||
* [FitoTrack](https://codeberg.org/jannis/FitoTrack), [HealthMode](https://www.healthmode.app/), [Flexify](https://github.com/brandonp2412/Flexify) or [MyFitnessPal](https://www.myfitnesspal.com/) - Fitness Apps
|
||||
* [FitoTrack](https://codeberg.org/jannis/FitoTrack), [Flexify](https://github.com/brandonp2412/Flexify) or [MyFitnessPal](https://www.myfitnesspal.com/) - Fitness Apps
|
||||
* [openScale](https://f-droid.org/packages/com.health.openscale/) or [trale](https://github.com/QuantumPhysique/trale) - Weight & Body Metrics Trackers
|
||||
* [SailRabbit](https://www.sailrabbit.com/bmr/) - BMR / TDEE Calculator
|
||||
* [Bodyweight Fitness Progressions](https://docs.google.com/spreadsheets/d/1a8tlZ-zbF695HA3Lmm20OIYeYYxo1lmUOczUXKLoL4s/)
|
||||
|
|
@ -611,6 +619,7 @@
|
|||
* [HealthDirect](https://www.healthdirect.gov.au/), [epocrates](https://www.epocrates.com/), [medlineplus](https://medlineplus.gov/), [merckmanuals](https://www.merckmanuals.com/), [mayoclinic](https://www.mayoclinic.org/), [rxlist](https://www.rxlist.com/), [nejm](https://www.nejm.org/), [ncbi](https://www.ncbi.nlm.nih.gov/pmc/), [hhs](https://www.hhs.gov/), [nih](https://www.nih.gov/), [cdc](https://www.cdc.gov/) - Government Health Resources
|
||||
* [oshaction](https://www.oshaction.org/resources/) - Occupational Health and Safety Resources
|
||||
* [CancerFactFinder](https://cancerfactfinder.org/) - Cancer Fact Search
|
||||
* [INCIDecoder](https://incidecoder.com/) - Skincare Ingredients Search / Database
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -619,7 +628,7 @@
|
|||
* 🌐 **[Evidence-Based Training Wiki](https://www.reddit.com/r/EvidenceBasedTraining/wiki/index/)** - Evidence-Based Training Resources
|
||||
* 🌐 **[ExRx.net](https://exrx.net/)** - Exercise Resources
|
||||
* ⭐ **[DAREBEE](https://darebee.com/)** - Workout Plans
|
||||
* ⭐ **[r/BodyweightFitness Wiki](https://www.reddit.com/r/bodyweightfitness/wiki/index/)** - Bodyweight Fitness Routines / [Android](https://play.google.com/store/apps/details?id=com.eightxthree.app) / [iOS](https://apps.apple.com/app/8x3/id1561393713) / [Discord](https://discord.gg/bwf)
|
||||
* ⭐ **[r/BodyweightFitness Wiki](https://www.reddit.com/r/bodyweightfitness/wiki/index/)** - Bodyweight Fitness Routines / [Android](https://play.google.com/store/apps/details?id=com.eightxthree.app)
|
||||
* ⭐ **[/u/KNightNox Diagram](https://imgur.com/bodyweight-training-skill-tree-with-over-200-exercises-high-res-gEfyf0q)** - Zoomable Exercise Diagram
|
||||
* ⭐ **[Boostcamp](https://www.boostcamp.app/)**, [Hevy](https://www.hevyapp.com/), [Tracked](https://www.tracked.gg/), [Kenko](https://github.com/Iamlooker/Kenko), [FitNotes](https://www.fitnotesapp.com/) or [FitHero](https://fithero.app/) - Workout Trackers
|
||||
* [Fitness Blender](https://www.fitnessblender.com/videos?exclusive%5B%5D=0) - Workout Videos
|
||||
|
|
@ -707,9 +716,8 @@
|
|||
* [SelfControlApp](https://selfcontrolapp.com/) - Mac Site Blocker
|
||||
* [CleanBrowsing](https://cleanbrowsing.org/filters/) - Family DNS Filters
|
||||
* [cringeMDb](https://cringemdb.com/), [Age Rating JuJu](https://www.ageratingjuju.com/), [CommonSenseMedia](https://www.commonsensemedia.org/) or [unconsenting media](https://www.unconsentingmedia.org) - Find SFW Movies
|
||||
* [Movie Parser](https://raskie.com/post/practical-ai-autodetecting-nsfw) - Detect NSFW Scenes in Movies / [GitHub](https://github.com/dynamite-ready/movie-parser)
|
||||
* [Wingman](https://github.com/wingman-jr-addon/wingman_jr), [HaramBlur](https://linktr.ee/haramblur) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
|
||||
* [Fortify](https://www.joinfortify.com/) - Porn Quitting Community
|
||||
* [Movie Parser](https://raskie.com/post/practical-ai-autodetecting-nsfw) - Detect NSFW Scenes in Movies
|
||||
* [Wingman](https://github.com/wingman-jr-addon/wingman_jr) or [HaramBlur](https://haramblur.com/) / [2](https://linktr.ee/haramblur) - Block NSFW Images
|
||||
* [SAA Recovery](https://saa-recovery.org/), [Cosa Recovery](https://cosa-recovery.org/) or [Smart Recovery](https://www.smartrecovery.org/) - Find Sex Addiction Meetings
|
||||
|
||||
***
|
||||
|
|
@ -742,7 +750,6 @@
|
|||
* [Systeme](https://systeme.io/) or [SendPulse](https://sendpulse.com/) - Marketing Tools
|
||||
* [Marmof](https://marmof.com/) - Creator / Marketing AI
|
||||
* [MMAGlobal](https://www.mmaglobal.com/) - View Past Marketing Reports
|
||||
* [SplitBee](https://splitbee.io/) - Business Analytics Tool
|
||||
* [Annual Reports](https://www.annualreports.com/) - Annual Company Reports
|
||||
* [LeanTime](https://leantime.io/) - Project / Delivery Manager
|
||||
* [Twain](https://www.twain.ai/), [WriteCream](https://www.writecream.com/) or [Textcortext](https://textcortex.com/) - AI Communication Outreach Assistants
|
||||
|
|
@ -764,7 +771,7 @@
|
|||
* ⭐ **[4-Day Week](https://4dayweek.io/)** - Find Jobs with 4-Day Weeks
|
||||
* [OnSites](https://www.onsites.fyi/) - View / Share Interview Experiences
|
||||
* [50WaysToGetAJob](https://50waystogetajob.com/) - Interactive Job Search Guide
|
||||
* [JobBoardSearch](https://jobboardsearch.com/), [HiringCafe](https://hiring.cafe/), [JobsFromSpace](https://www.jobsfromspace.com/), [CyberCoders](https://www.cybercoders.com/), [whoishiring](https://whoishiring.io/), [Toby Tools](https://rentry.co/qnu6x), [The Muse](https://www.themuse.com/search/) or [EuroJobs](https://eurojobs.com/) - Job Search
|
||||
* [Welcome To The Jungle](https://www.welcometothejungle.com/), [JobBoardSearch](https://jobboardsearch.com/), [HiringCafe](https://hiring.cafe/), [JobsFromSpace](https://www.jobsfromspace.com/), [CyberCoders](https://www.cybercoders.com/), [whoishiring](https://whoishiring.io/), [Toby Tools](https://rentry.co/qnu6x), [The Muse](https://www.themuse.com/search/) or [EuroJobs](https://eurojobs.com/) - Job Search
|
||||
* [Hiring Without Whiteboards](https://github.com/poteto/hiring-without-whiteboards) - Find Straightforward Hiring Processes
|
||||
* [RolePad](https://rolepad.com/) or [JobSync](https://github.com/Gsync/jobsync) - Job Search Managers
|
||||
* [DoorsOpen](https://www.doorsopen.co/) - Music Industry Jobs
|
||||
|
|
@ -776,8 +783,9 @@
|
|||
|
||||
## ▷ Resume / Portfolio
|
||||
|
||||
* 🌐 **[r/Resumes Wiki](https://www.reddit.com/r/resumes/wiki/index/)** - Resume Resources / Guides
|
||||
* ⭐ **[RX Resume](https://rxresu.me/)** / [GitHub](https://github.com/amruthpillai/reactive-resume), [FlowCV](https://flowcv.com/), [HeyCV](https://heycv.app/), [Resuminator](https://www.resuminator.in/) / [GitHub](https://github.com/resuminator/resuminator) or [Sheets](https://sheetsresume.com/builder) - Resume Builders
|
||||
* ⭐ **[KickResume](https://www.kickresume.com/en/help-center/resume-samples/)** - Resume Samples
|
||||
* ⭐ **[KickResume Samples](https://www.kickresume.com/en/help-center/resume-samples/)** - Resume Samples
|
||||
* [ResumGO](https://www.resumgo.com/) - Resume Templates
|
||||
* [YAMLResume](https://yamlresume.dev/) / [GitHub](https://github.com/yamlresume/yamlresume) or [RenderCV](https://rendercv.com/) / [GitHub](https://github.com/rendercv/rendercv) - YAML Based Resume Builders
|
||||
* [IntelligentCV](https://www.intelligentcv.app/) - Resume Builder Mobile App
|
||||
|
|
@ -817,7 +825,7 @@
|
|||
|
||||
## ▷ Tech Jobs
|
||||
|
||||
* 🌐 **[Awesome Interview](https://github.com/DopplerHQ/awesome-interview-questions)** or [30-sec](https://30secondsofinterviews.org/) - Tech Interview Questions Indexes
|
||||
* 🌐 **[30-sec](https://30secondsofinterviews.org/)** - Tech Interview Questions Indexes
|
||||
* 🌐 **[Summer 2025 Internships](https://github.com/SimplifyJobs/Summer2025-Internships)** - Tech Internships List / [Notifications](https://swelist.com/)
|
||||
* 🌐 **[Free-Certifications](https://github.com/cloudcommunity/Free-Certifications)** - Free Certifications / Courses Index
|
||||
* 🌐 **[TheRemoteFreelancer](https://github.com/engineerapart/TheRemoteFreelancer)** - Remote Tech Jobs Index
|
||||
|
|
@ -891,7 +899,7 @@
|
|||
* ⭐ **[Ghostfolio](https://ghostfol.io/en/start)** / [Import](https://github.com/dickwolff/Export-To-Ghostfolio), [Paisa](https://paisa.fyi/) / [GitHub](https://github.com/ananthakumaran/paisa), [HomeBank](https://www.gethomebank.org/en/index.php), [Bagels](https://github.com/EnhancedJax/Bagels), [Firefly III](https://firefly-iii.org/), [Money Manager EX](https://moneymanagerex.org/) or [Actual](https://github.com/actualbudget/actual) - Finance / Expense Managers
|
||||
* [Weekly Market Recap](https://am.jpmorgan.com/content/dam/jpm-am-aem/americas/us/en/insights/market-insights/wmr/weekly_market_recap.pdf) - Weekly Stock Market Recaps
|
||||
* [Free File](https://apps.irs.gov/app/freeFile/), [US Taxes](https://ustaxes.org/) or [FreeTaxUSA](https://www.freetaxusa.com/) - File Taxes for Free / [Get Pin](https://youtu.be/iPw8I-cZ1eY) / [Form Calc](https://opentaxsolver.sourceforge.net/)
|
||||
* [money-manager](https://github.com/moneymanagerex/android-money-manager-ex), [Buckwheat](https://buckwheat.app/), [My Expenses](https://www.myexpenses.mobi/), [Cashew](https://play.google.com/store/apps/details?id=com.budget.tracker_app) or [Sushi](https://github.com/jerameel/sushi) - Android Finance / Expense Managers
|
||||
* [money-manager](https://github.com/moneymanagerex/android-money-manager-ex), [Buckwheat](https://buckwheat.app/), [My Expenses](https://www.myexpenses.mobi/), [Cashew](https://play.google.com/store/apps/details?id=com.budget.tracker_app) / [iOS](https://apps.apple.com/us/app/cashew-expense-budget-tracker/id6463662930) or [Sushi](https://github.com/jerameel/sushi) - Mobile Finance / Expense Managers
|
||||
* [GreenStash](https://github.com/Pool-Of-Tears/GreenStash) - Savings Tracking App
|
||||
* [Denaro](https://github.com/NickvisionApps/Denaro) - Linux Finance Managers
|
||||
* [Ledger](https://ledger-cli.org/) or [hledger](https://hledger.org/index.html) - Accounting Systems
|
||||
|
|
@ -921,14 +929,14 @@
|
|||
***
|
||||
|
||||
* 🌐 **[ChainList](https://chainlist.org/)** - EVM RPC List / [GitHub](https://github.com/DefiLlama/chainlist)
|
||||
* 🌐 **[KYCNOT.ME](https://kycnot.me/)** - Non-KYC Exchanges / Services / [i2p](http://nti3rj4j4disjcm2kvp4eno7otcejbbxv3ggxwr5tpfk4jucah7q.b32.i2p/) / [.onion](http://kycnotmezdiftahfmc34pqbpicxlnx3jbf5p7jypge7gdvduu7i6qjqd.onion/) / [Source Code](https://codeberg.org/pluja/kycnotme)
|
||||
* 🌐 **[KYCNOT.ME](https://kycnot.me/)** / [i2p](http://nti3rj4j4disjcm2kvp4eno7otcejbbxv3ggxwr5tpfk4jucah7q.b32.i2p/) / [.onion](http://kycnotmezdiftahfmc34pqbpicxlnx3jbf5p7jypge7gdvduu7i6qjqd.onion/) / [Source Code](https://codeberg.org/pluja/kycnotme) or **[OrangeFren](https://orangefren.com/)** - Non-KYC Exchanges / Services
|
||||
* ⭐ **[WalletScrutiny](https://walletscrutiny.com/)** - Verify Crypto Wallets are Open-Source / Secure / [Subreddit](https://www.reddit.com/r/WalletScrutiny) / [Discord](https://discord.gg/yCNdcSJw9k) / [GitLab](https://gitlab.com/walletscrutiny/walletScrutinyCom)
|
||||
* ⭐ **[Rotki](https://rotki.com/)** - Portfolio Manager / [Discord](https://discord.rotki.com/) / [GitHub](https://github.com/rotki)
|
||||
* [BitcoinTalk](https://bitcointalk.org/) - Bitcoin Forum
|
||||
* [BTCPay](https://btcpayserver.org/) - FOSS Bitcoin Payment Processor
|
||||
* [BitcoinWhosWho](https://www.bitcoinwhoswho.com/) - Bitcoin Address Scanner
|
||||
* [BlockChain](https://www.blockchain.com/explorer), [CoinWatch](https://github.com/shorthouse/CoinWatch), [Hivexplorer](https://hivexplorer.com/), [BlockChair](https://blockchair.com/), [Mempool](https://mempool.space/), [L2BEAT](https://l2beat.com/), [HiveblockExplorer](https://hiveblockexplorer.com/), [CoinGlass](https://www.coinglass.com/) or [LiveCoinWatch](https://www.livecoinwatch.com/) - Live Crypto Prices / Blockchain Explorers
|
||||
* [Dora](https://www.ondora.xyz/) - Cross-Chain Search Engine
|
||||
* [CoinGlass](http://www.coinglass.com) - Crypto Derivatives Data
|
||||
* [DefiLlama](https://defillama.com/) - TVL Aggregator
|
||||
* [WalletExplorer](https://www.walletexplorer.com/) - Bitcoin Block Explorers
|
||||
* [Cryptopedia](https://www.gemini.com/cryptopedia) or [Crypto Canon](https://a16zcrypto.com/posts/article/crypto-readings-resources/) - Crypto Learning Resources
|
||||
|
|
@ -944,18 +952,18 @@
|
|||
* 🌐 **[Monerica](https://monerica.com/status/verified)** - Monero-Friendly Online Shop Index
|
||||
* ⭐ **[ThisIsWhyImBroke](https://www.thisiswhyimbroke.com/)** - Find Interesting Things to Buy
|
||||
* ⭐ **[Consumer Rights Wiki](https://consumerrights.wiki/)** - Documents Practices That Impact Consumer Rights / [Discord](https://discord.gg/8w5rSNAXRf)
|
||||
* ⭐ **[Dark Patterns Tip Line](https://darkpatternstipline.org/)** - Deceptive Services to Avoid
|
||||
* ⭐ **[Dark Patterns Tip Line](https://darkpatternstipline.org/)** or [Dark Patterns](https://hallofshame.design/collection/) - Deceptive Services to Avoid
|
||||
* [Dark Patterns Detective](https://games.productartistry.com/games/dark-patterns) - Learn to Avoid Deceptive Services
|
||||
* [RedditFavorites](https://redditfavorites.com/) - Reddit Recommended Products
|
||||
* [Kit.co](https://kit.co/), [Looria](https://www.looria.com/) or [ProductHunt](https://producthunt.com/) - Product / Service Reviews
|
||||
* [Pepper](https://www.pepperdeals.com/) or [SlickDeals](https://slickdeals.net/) - Shopping Deal Communities
|
||||
* [BangYourBuck](https://bangyourbuck.com/) - Unit Shopping Calculator / Comparisons for Amazon
|
||||
* [Hagglezon](https://www.hagglezon.com/) - Price Comparisons for Amazon Stores Across Europe
|
||||
* [Remove Amazon Sponsored](https://greasyfork.org/en/scripts/536756) - Remove Amazon Sponsored Listings
|
||||
* [Slant](https://www.slant.co/) - "What are the best..." Product Rankings
|
||||
* [NoBids](https://nobids.net/) or [WatchCount](https://www.watchcount.com/) - eBay Advanced Search
|
||||
* [Typo Hound](https://typohound.com/) or [FatFingers](https://fatfingers.com/) - eBay Typo Search
|
||||
* [PicClick](https://picclick.com/) - eBay Quick Search
|
||||
* [a view from my seat](https://aviewfrommyseat.co.uk/) - See Event Views Before Buying Tickets
|
||||
* [a view from my seat](https://aviewfrommyseat.com/) / [UK](https://aviewfrommyseat.co.uk/) - See Event Views Before Buying Tickets
|
||||
* [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites
|
||||
* [r/MaleFashionAdvice Spreadsheet](https://docs.google.com/spreadsheets/d/1mhOIpjUUibBf3QueJs8iRJy5gBKCILq82ekJkiC5uqQ/) - Male Clothing Brand / Price Spreadsheet
|
||||
* [r/FashionReps](https://www.reddit.com/r/FashionReps/) - Replica Clothing Community
|
||||
|
|
@ -965,21 +973,24 @@
|
|||
* [WornOnTV](https://wornontv.net/) or [ShopYourTV](https://shopyourtv.com/) - Find Outfits from TV Shows
|
||||
* [Kolors](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Virtual-Try-On) - Virtual Outfit Try-On
|
||||
* [GoodOnYou](https://directory.goodonyou.eco/) - Clothing Brand Sustainability Ratings
|
||||
* [INCIDecoder](https://incidecoder.com/) - Skincare Ingredients Search / Database
|
||||
* [Fragrantica](https://www.fragrantica.com/), [Basenotes](https://basenotes.com/) or [Parfumo](https://www.parfumo.com/) - Perfume / Fragrance Databases
|
||||
* [BabyGearLab](https://www.babygearlab.com/) - Baby Product Comparisons / Reviews
|
||||
* [Build List](https://buildlist.org/) - On-Demand Online Manufacturers
|
||||
|
||||
***
|
||||
|
||||
## ▷ Electronics
|
||||
|
||||
* ⭐ **[PCPartPicker](https://pcpartpicker.com/)**, [BuildCores](http://www.buildcores.com/) / [Subreddit](https://reddit.com/r/buildcores) / [Discord](https://discord.gg/gxHtZx3Uxe), [Newegg PC Builder](https://www.newegg.com/tools/custom-pc-builder) or [CGDirector](https://www.cgdirector.com/pc-builder/) - PC Building Sites
|
||||
* ⭐ **[r/PCMasterrace Builds](https://pcmasterrace.org/builds)** / [2](https://www.reddit.com/r/pcmasterrace/wiki/builds/), [r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index) or [PC Tiers](https://pctiers.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)**
|
||||
* ⭐ **[NanoReview](https://nanoreview.net/)**, **[TechPowerup](https://www.techpowerup.com/)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons
|
||||
* ⭐ **[rtings](https://www.rtings.com/)** - Hardware Reviews / Clear Cookies Reset Limit
|
||||
* ⭐ **[r/PCMasterrace Builds](https://pcmasterrace.org/builds)**, [r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index) or [PC Tiers](https://pctiers.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)**
|
||||
* ⭐ **[NanoReview](https://nanoreview.net/)**, **[TechPowerup](https://www.techpowerup.com/)**, [TechGearLab](https://www.techgearlab.com/), [ProductChart](https://www.productchart.com/), [Octoparts](https://octopart.com/), [Technical City](https://technical.city/) or [Techspecs](https://techspecs.io/) - Tech / Hardware Comparisons
|
||||
* ⭐ **[rtings](https://www.rtings.com/)** - Hardware / Tech 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
|
||||
* ⭐ **[GSMArena](https://www.gsmarena.com/)** / [Guide](https://www.gsmarena.com/reviews.php3?sTag=Buyers+guide), [Prepaid Compare](https://prepaidcompare.net/), [PhoneDB](https://phonedb.net/), [GSMChoice](https://www.gsmchoice.com/en/), [Antutu](https://www.antutu.com/en/ranking/rank1.htm) or [Kimovil](https://www.kimovil.com/en/) - Compare Phones / Prices
|
||||
* ⭐ **[CPUBenchmark](https://www.cpubenchmark.net/)**, [Toms GPU Hierarchy](https://www.tomshardware.com/reviews/gpu-hierarchy) or [NoteBenchcheck](https://www.notebookcheck.net/Benchmarks-Tech.123.0.html) - GPU / CPU Benchmarks
|
||||
* ⭐ **[r/MechanicalKeyboards Wiki](https://www.reddit.com/r/MechanicalKeyboards/wiki/index)**, [KeebFinder](https://keeb-finder.com/) or [Alexotos](https://www.alexotos.com/keyboard-vendor-list/) / [Discord](https://discord.com/invite/xMQArAaGRB) - Mechanical Keyboard Recommendations
|
||||
* ⭐ **[Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/)** - Mousepad Comparison Chart
|
||||
* [ProductChart](https://www.productchart.com/) - Electronic Comparisons
|
||||
* [Privacy Not Included](https://foundation.mozilla.org/privacynotincluded/) - Product Privacy Ratings
|
||||
* [r/buildapc](https://reddit.com/r/buildapc) - PC Building Community / [Discord](https://discord.com/invite/buildapc)
|
||||
* [r/BuildAPCForMe](https://reddit.com/r/BuildAPCForMe) - PC Building Community
|
||||
|
|
@ -990,6 +1001,8 @@
|
|||
* [EveryMac](https://everymac.com/) - Mac Info Database
|
||||
* [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||
* [PSU Tier List](https://docs.google.com/spreadsheets/d/1akCHL7Vhzk_EhrpIGkz8zTEvYfLDcaSpZRB6Xt6JWkc/) - PSU Buying Guide
|
||||
* [4K TV Guide](https://www.reddit.com/r/4kTV/comments/1mxcuv7/) - 4K TV Buying Guide
|
||||
* [r/HTBuyingGuides](https://www.reddit.com/r/HTBuyingGuides/) - Home Theater Buying Guides
|
||||
* [DisplaySpecifications](https://www.displayspecifications.com/), [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [Monitor Spreadsheet](https://docs.google.com/spreadsheets/d/1wBV0U3a1XuP1yFLvs_Ald3FE1y45bVxtS2zBXixsGLs/edit) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides
|
||||
* [sven dpi](https://www.sven.de/dpi/) - Screen / Monitor Size Comparisons
|
||||
* [AudioScienceReview](https://www.audiosciencereview.com/forum/index.php) - Audio Equipment Discussion
|
||||
|
|
@ -1002,13 +1015,14 @@
|
|||
* [Don’t kill my app!](https://dontkillmyapp.com/) - Manufacturer Battery Life vs. App Functionality
|
||||
* [PhoneSized](https://phonesized.com/) or [HotSpot3D](https://www.hotspot3d.com/) - Phone Size Comparisons
|
||||
* [Gamepadla](https://gamepadla.com/) - Gamepad / Controller Latency Tests
|
||||
* [EmuReady](https://www.emuready.com/) - Mobile Game Emulation Compatibility / Info / [GitHub](https://github.com/Producdevity/EmuReady)
|
||||
* [EmuReady](https://www.emuready.com/) - Mobile Game Emulation Compatibility / Info / [Discord](https://discord.gg/CYhCzApXav) / [GitHub](https://github.com/Producdevity/EmuReady)
|
||||
* [RetroCatalog](https://retrocatalog.com/) or [Handheld Emulation Compatibility](https://docs.google.com/spreadsheets/d/1irg60f9qsZOkhp0cwOU7Cy4rJQeyusEUzTNQzhoTYTU/) - Handheld Game Emulation Compatibility / Info
|
||||
* [ComparisonTabl.es](https://comparisontabl.es/) - Compare E-Readers
|
||||
* [DrawTab](https://docs.thesevenpens.com/drawtab) - Drawing Tablet Info / Wiki
|
||||
* [Consolevariations](https://consolevariations.com/) - Game Console Rarity / Shopping
|
||||
* [Camera Decision](https://cameradecision.com/) or [Digicamfinder](https://digicamfinder.com/) - Compare Cameras
|
||||
* [3D Printer Recs](https://redd.it/1bh9jud) - Hobbyist 3D Printer Recommendations
|
||||
* [SpoolScout](https://www.spoolscout.com/) - Search / Compare 3D Printing Filament Prices
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1018,7 +1032,7 @@
|
|||
* ⭐ **[GG.deals](https://gg.deals/)** - Multi-Store / Mutli-Platform / [Discord](https://discord.com/invite/NhsTFvdHXG)
|
||||
* ⭐ **[IsThereAnyDeal](https://isthereanydeal.com/)** - Multi-Store / [Discord](https://discord.com/invite/C3K4bBh)
|
||||
* ⭐ **[SteamDB](https://steamdb.info/sales/)** - Steam Sales / [Extension](https://steamdb.info/extension/) / [Discord](https://discord.com/invite/steamdb)
|
||||
* [EGData](https://egdata.app/) - Epic Store Sales / [Discord](https://github.com/nachoaldamav/egdata)
|
||||
* [EGData](https://egdata.app/) - Epic Store Sales / [GitHub](https://github.com/nachoaldamav/egdata)
|
||||
* [SteamBase](https://steambase.io/sales) - Steam Sales / [Discord](https://discord.gg/C7fxdbCf6A)
|
||||
* [r/SteamDeals](https://www.reddit.com/r/steamdeals/) - Steam Sales
|
||||
* [SteamSpy](https://steamspy.com/deal/) - Steam Sales
|
||||
|
|
@ -1052,6 +1066,7 @@
|
|||
|
||||
* [MyFigureCollection](https://myfigurecollection.net/) - Japanese Pop-Culture Merch Database
|
||||
* [Pokechange](https://en.pokechange.net/) or [Misprint](https://www.misprint.com/) - Buy / Sell Pokémon Cards
|
||||
* [ThePriceDex](https://www.thepricedex.com/) - Pokémon Card Price Tracking
|
||||
* [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
|
||||
* [BreyerHorseRef](https://www.breyerhorseref.com/) - Breyer Horse Database
|
||||
|
|
@ -1090,12 +1105,10 @@
|
|||
* [Paper Sizes](https://papersizes.io/) - Common Paper Sizes
|
||||
* [wttr](https://wttr.in/) - Simple / Minimal Weather / [GitHub](https://github.com/chubin/wttr.in)
|
||||
* [WeatherStar 4000+](https://weatherstar.netbymatt.com/) / [2](https://weatherstar.dev/) or [WeatherScan](https://weatherscan.net/) - Retro Style Weather / [80's](https://weatherstar3000.netbymatt.com/) / [GitHub](https://github.com/MistWeatherMedia/)
|
||||
* [A Bra That Fits](https://www.abrathatfits.org/calculator.php) or [BraMetric](https://brametric.com/) - Bra Size Calculators
|
||||
* [Wheel Decide](https://wheeldecide.com/), [PickerWheel](https://pickerwheel.com/), [SWG](https://spinthewheelgenerator.com/), [HeySpinner](https://heyspinner.com/) or [Wheel of Names](https://wheelofnames.com/) - Wheel Randomizers
|
||||
* [SurveyHeart](https://surveyheart.com/) or [Pepperform](https://pepperform.net/) - Survey Creators
|
||||
* [Wheel Decide](https://wheeldecide.com/), [Spinn a Wheel ](https://spinnawheel.com/), [PickerWheel](https://pickerwheel.com/), [SWG](https://spinthewheelgenerator.com/), [HeySpinner](https://heyspinner.com/) or [Wheel of Names](https://wheelofnames.com/) - Wheel Randomizers
|
||||
* [SurveyHeart](https://surveyheart.com/) - Survey Creators
|
||||
* [Label Studio](https://labelstud.io/) or [Cvat](https://www.cvat.ai/) - Data Organizing Tools
|
||||
* [colnect](https://colnect.com/en) - Manage Personal Collections
|
||||
* [AllBadges](https://allbadges.net/en) - Track Badge Collection
|
||||
* [Diffchecker](https://www.diffchecker.com/) - Check Differences in Text, Images, PDFs or Files
|
||||
* [Forebears](https://forebears.io/) or [BehindTheName](https://www.behindthename.com/) - Name Etymologies
|
||||
* [Trans Voice Party](https://transvoice.party/) - Trans Voice Training Resources / [Discord](https://discord.gg/8weEXE7RzU)
|
||||
|
|
@ -1106,8 +1119,10 @@
|
|||
* [FamilyEcho](https://www.familyecho.com/) - Create Custom Family Tree
|
||||
* [Ravelry](https://ravelry.com) - Fiber Artist Tools
|
||||
* [ThistoThat](https://www.thistothat.com/) - How to Glue Anything to Anything
|
||||
* [A Bra That Fits](https://www.abrathatfits.org/calculator.php) or [BraMetric](https://brametric.com/) - Bra Size Calculators
|
||||
* [PEmbroider](https://github.com/CreativeInquiry/PEmbroider) - Embroidery Generator
|
||||
* [Fragrantica](https://www.fragrantica.com/), [Basenotes](https://basenotes.com/) or [Parfumo](https://www.parfumo.com/) - Perfume / Fragrance Databases
|
||||
* [FreeSewing](https://freesewing.eu/) - Free Clothing Sewing Patterns / [Forum](https://forum.freesewing.eu/)
|
||||
* [r/CurlyHair Guide](https://docs.google.com/document/d/e/2PACX-1vSvGm-p4tvrstjT-XEo6pTHZSYeEON7xF5lPSnNv-3Kc2lCrdnkjXhFbdHt4pF3HUetWZ1j9dgfBBkS/pub) - Curly Hair Haircare Guide
|
||||
* [Stolen Drone](https://stolendrone.info/) - Stolen Drone Info
|
||||
* [CacheSleuth](https://www.cachesleuth.com/) - Geocaching Tools
|
||||
* [Parcelsapp](https://parcelsapp.com/en/), [Informed Delivery](https://informeddelivery.usps.com/) or [17Track](https://www.17track.net/en) - Mail Package Tracking
|
||||
|
|
@ -1121,7 +1136,7 @@
|
|||
* 🌐 **[Mr Free Tools](https://mrfreetools.com/)** - Find Free Tools
|
||||
* ⭐ **[TinyWow](https://tinywow.com/)** - Text / Image / PDF / File
|
||||
* ⭐ **[PineTools](https://pinetools.com/)** - Text / Multimedia / Colors / Code
|
||||
* [ZeroKit](https://zerokit-dun.vercel.app/) - Text / Image / Social Media / Code / [Discord](https://discord.gg/XDqV2ucEpP)
|
||||
* [ZeroKit](https://zerokit-dun.vercel.app/) - Text / Image / Social Media / Code
|
||||
* [GoOnlineTools](https://goonlinetools.com/) - Text / Encode-Decode / Code / Random / Image
|
||||
* [Framasoft](https://degooglisons-internet.org/en/) - Text / Collaboration
|
||||
* [10015.io](https://10015.io/) - Text / Image / Code / Colors
|
||||
|
|
@ -1156,7 +1171,7 @@
|
|||
* [r/GetMotivated](https://www.reddit.com/r/GetMotivated/) - Motivational Community
|
||||
* [Freeter](https://freeter.io) - Work Organizer / [GitHub](https://github.com/FreeterApp/Freeter)
|
||||
* [VisualizeHabit](https://visualizehabit.com/) - Habit Tracking
|
||||
* [Cold Turkey](https://getcoldturkey.com/) - Site Blocker / Productivity App / [Premium (use python)](https://rentry.co/FMHYB64#cold-turkey)
|
||||
* [Cold Turkey](https://getcoldturkey.com/) - Site Blocker / Productivity App
|
||||
* [ActivityWatch](https://activitywatch.net/) - Device / App Time Tracker / [Extensions](https://github.com/ActivityWatch/aw-watcher-web)
|
||||
* [ProcrastiTracker](https://strlen.com/procrastitracker/) - Device / App Time Tracker
|
||||
* [Focumon](https://www.focumon.com/) - Pokémon Style Productivity App
|
||||
|
|
@ -1170,13 +1185,14 @@
|
|||
* [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://ublacklist.github.io/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
|
||||
* [Time Tracker](https://www.wfhg.cc/) - Browser Time Tracking Extension / [GitHub](https://github.com/sheepzh/time-tracker-4-browser)
|
||||
* [Comicsflow](https://comicsflow.com/) - Comic / Manga Project Manager
|
||||
|
||||
***
|
||||
|
||||
## ▷ Calendars / Events
|
||||
|
||||
* ⭐ **[Cal.com](https://cal.com/)** / [GitHub](https://github.com/calcom/cal.com)
|
||||
* ⭐ **[Cal.com](https://cal.com/)** - Buisness / Work Schedule Calendar/ [GitHub](https://github.com/calcom/cal.com)
|
||||
* [Event Rally](https://rallly.co/) / [GitHub](https://github.com/lukevella/Rallly), [Cally](https://cally.com/), [LettuceMeet](https://lettucemeet.com), [Mobilizon](https://joinmobilizon.org/) or [Gancio](https://gancio.org/) - Event Date Organizing
|
||||
* [Luma](https://lu.ma/), [Heylo](https://www.heylo.com/), [Eventbrite](https://www.eventbrite.com/) or [Meetup](https://www.meetup.com/) - Search or Post Local Events
|
||||
* [Samay](https://samay.app/) - Meeting Time Polls
|
||||
|
|
@ -1189,6 +1205,7 @@
|
|||
* [Office Holidays](https://www.officeholidays.com/) - World Event Calendars
|
||||
* [Countdowns](https://www.countdowns.live/) - Create Custom Countdowns
|
||||
* [StageTimer](https://stagetimer.io/) - Event Timer
|
||||
* [Table Plan](https://table-plan.com/) - Seating Chart Maker
|
||||
* [WhoBrings](https://whobrings.com/) - Party Item Management Tool
|
||||
* [KittySplit](https://www.kittysplit.com/en/) or [Spliit](https://spliit.app/) - Group Expense Splitting Calculator
|
||||
|
||||
|
|
@ -1205,7 +1222,6 @@
|
|||
* ⭐ **[Knockout](https://knockout.chat/)** / [Discord](https://discord.gg/wjWpapC), [comfy box](https://comfybox.floofey.dog/), [SheepishPatio](https://sheepishpatio.net/) or [Macintosh Cafe](https://forum.agoraroad.com/) - General Forums
|
||||
* ⭐ **[SufficientVelocity](https://forums.sufficientvelocity.com/)**, [Myth Weavers](https://www.myth-weavers.com/), [AltHistory](https://althistory.com/), [RolePlayer](https://www.roleplayer.me/) or [SpaceBattles](https://forums.spacebattles.com/) - Fanfiction / Roleplaying Communities
|
||||
* [Frantic Fanfic](https://franticfanfic.com/) - Fanfiction Chat Game
|
||||
* [Pithee](https://pithee.com/) - Rank Shitposting / Login Required
|
||||
* [Posting.Cool](https://posting.cool/) - Random Topic Forum
|
||||
* [Earth Reviews](https://neal.fun/earth-reviews/) - Help Improve the Simulation
|
||||
* [Virtual World List](https://virtualworldslist.neocities.org/) - Virtual World List
|
||||
|
|
@ -1213,8 +1229,8 @@
|
|||
* [Wireclub](https://www.wireclub.com/) - Topic Chat Rooms
|
||||
* [MyCast](https://www.mycast.io/) - Dream Casting Discussions
|
||||
* [AnimeSuki](https://forums.animesuki.com/), [AnimeUKNews](https://forums.animeuknews.net/) or [Fanverse](https://www.fanverse.org/) - Anime Discussion
|
||||
* [Fora](https://fora.com/communities/) or [Discourse](https://discover.discourse.org/) - Specialty Forums
|
||||
* [Resetera](https://www.resetera.com/) or [RacketBoy](https://racketboy.com/forum/) - Game Forums
|
||||
* [Fora](https://fora.com/communities/) or [Discourse](https://discover.discourse.com/) - Specialty Forums
|
||||
* [Resetera](https://www.resetera.com/), [RetroGameTalk](https://retrogametalk.com/) / [Subreddit](https://www.reddit.com/r/RetroGameTalk/) or [RacketBoy](https://racketboy.com/forum/) - Gmaing Forums
|
||||
* [TheRPF](https://www.therpf.com/forums/) - Movie Costume / Prop Forum
|
||||
* [Websleuths](https://www.websleuths.com/) - Crime Solving Forum
|
||||
* [Airsoft International](https://discord.gg/airsoft) - Airsoft Guides / Community
|
||||
|
|
@ -1234,7 +1250,7 @@
|
|||
|
||||
* ↪️ **[Image Creation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_image_creation)**
|
||||
* ↪️ **[ASCII Art](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_ascii_art)**
|
||||
* ↪️ **[Art / Illustations](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_art_.2F_illustrations)**
|
||||
* ↪️ **[Art / Illustrations](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_art_.2F_illustrations)**
|
||||
* ↪️ **[GIF Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_gif_tools)**
|
||||
* ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_meme_tools)**
|
||||
* ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)**
|
||||
|
|
@ -1251,7 +1267,7 @@
|
|||
* [Sudomemo](https://www.sudomemo.net/) or [Kaeru Gallery](https://gallery.kaeru.world/) - DS Flipnote Studio Galleries
|
||||
* [Toonami Remastered](https://www.toonamiremastered.com/) - Remastered Toonami Content
|
||||
* [ThisXDoesNotExist](https://thisxdoesnotexist.com/) - Realistic-Looking Fake Versions of Things
|
||||
* [ThisPersonNotExist](https://thispersonnotexist.org/), [ThisPersonDoesNotExist](https://www.thispersondoesnotexist.com/), [Who the Fook is That Guy](https://whothefookisthatguy.com/) or [this-person-does-not-exist](https://this-person-does-not-exist.com/) - People That Don't Exist
|
||||
* [ThisPersonNotExist](https://thispersonnotexist.org/), [ThisPersonDoesNotExist](https://www.thispersondoesnotexist.com/) or [this-person-does-not-exist](https://this-person-does-not-exist.com/) - People That Don't Exist
|
||||
* [The Slideshow](https://theslideshow.net/) - Google Image Slideshow
|
||||
* [Different Strokes](https://scottts.itch.io/different-strokes) - Online User-Made Art Gallery
|
||||
* [Creative Uncut](https://www.creativeuncut.com/) - Video Game Art
|
||||
|
|
@ -1280,7 +1296,6 @@
|
|||
* [JacksonPollock](https://www.jacksonpollock.org/) - Splatter Painting / Click to Change Color
|
||||
* [Paint with Music](https://artsandculture.google.com/experiment/paint-with-music/YAGuJyDB-XbbWg) - Paint with Sound
|
||||
* [No Paint](https://nopaint.art/) - Press "Paint" if you like what you see, "No" if you don't
|
||||
* [TenThousandPixels](https://tenthousandpixels.com/) - Online Pixel Canvas
|
||||
* [paint.wtf](https://paint.wtf/) - Have an AI Judge Your Art
|
||||
* [MakeCoatOfArms](https://www.allfamilycrests.com/makecoatofarms.htm) - Coat of Arms Generator
|
||||
* [Where Is The Google Car](https://www.whereisthegooglecar.com/) - Google Car Images / Locations
|
||||
|
|
@ -1308,7 +1323,6 @@
|
|||
* [Floor796](https://floor796.com/) - Ever-Expanding Animated Scene
|
||||
* [Zoomquilt](https://www.zoomquilt.org/) / [2](https://zoomquilt2.com/), [Infinite Zoom](https://infinitezoom.net/) or [Arkadia](https://arkadia.xyz/) - Infinite Zooming Paintings
|
||||
* [Blue Ball Machine 2](https://blueballmachine2.ytmnd.com/) - Full Page Chain Reaction Image
|
||||
* [Magnet Poetry](https://goblin-heart.net/sadgrl/magnet-poetry/) - Magnet Poetry
|
||||
* [YourNameInLandsat](https://science.nasa.gov/specials/your-name-in-landsat/) - Spell Anything via Satellite Images
|
||||
* [Useless Certifications](https://uselesscertifications.com/) - Useless Certifications
|
||||
* [Anime Girls Holding Programming Books](https://cat-milk.github.io/Anime-Girls-Holding-Programming-Books/)
|
||||
|
|
@ -1381,7 +1395,7 @@
|
|||
* [Elastic Man](https://www.adultswim.com/etcetera/elastic-man/) - Elastic Morty
|
||||
* [Screentoys](https://www.screentoys.com/) - Photo Morphing Toy
|
||||
* [Smash The Walls](https://smashthewalls.com/) - Smash Walls
|
||||
* [Odyssey](https://experience.odyssey.world/) - Interactive 3D AI Generated Video
|
||||
* [Odyssey](https://experience.odyssey.ml/) - Interactive 3D AI Generated Video
|
||||
* [Koalas to the Max](https://www.koalastothemax.com/) - Make Smaller & Smaller Dots
|
||||
* [Popcat](https://popcat.click/) - Worldwide Popcat Clicking Competition
|
||||
* [EveryoneDraw](https://everyonedraw.com/), [pixels.land](https://pixel.land/) or [World of Pixels](https://ourworldofpixels.com/) - Infinite Online Pixel Art
|
||||
|
|
@ -1410,6 +1424,7 @@
|
|||
* [Viola the Bird](https://artsandculture.google.com/experiment/viola-the-bird/nAEJVwNkp-FnrQ?cp) - Browser Cello
|
||||
* [bongo.cat](https://bongo.cat/) - Become Bongo Cat
|
||||
* [ambient.garden](https://ambient.garden/) - 3D Audio Landscape
|
||||
* [audio visual generator](https://fredericbriolet.com/avg/) - Visual Audio Generator
|
||||
* [Short Trip](https://alexanderperrin.com.au/paper/shorttrip/) - Relaxing Cat Game
|
||||
* [Draw a Stickman](https://drawastickman.com/) - Stickman Adventure / [Discord](https://discord.com/invite/DFvejdC)
|
||||
* [Wonder of Wonder Art](https://aidn.jp/wowa/) - Create a Dancing Character
|
||||
|
|
@ -1422,14 +1437,15 @@
|
|||
|
||||
* 🌐 **[Awesome Lego](https://github.com/ad-si/awesome-lego)** - Lego Resources
|
||||
* ↪️ **[Online Virtual Tours](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25BA_virtual_tours)**
|
||||
* ⭐ **[Iceberg Charts](https://icebergcharts.com/)** - Explore Obscure Topics / [r/IcebergCharts](https://www.reddit.com/r/IcebergCharts/)
|
||||
* ⭐ **[InfiniteConversation](https://infiniteconversation.com/)** or [InfiniteConvo](https://infiniteconvo.ai/) - Never-Ending AI Conversations
|
||||
* ⭐ **[TVTropes](https://tvtropes.org/)** - Tropes & Media Encyclopedia
|
||||
* ⭐ **[Ranker](https://www.ranker.com/)**, [Listography](https://listography.com/), [hero](https://hero.page/), [TheTopsTens](https://www.thetoptens.com/), [CopyPasteList](https://copypastelist.co/) or [ListVerse](https://listverse.com/) - Create / Explore Lists
|
||||
* ⭐ **[Topsters](https://topsters.org/)** or [TierMaker](https://tiermaker.com/) - Create / Explore Tier Lists
|
||||
* ⭐ **[Ranker](https://www.ranker.com/)**, [Listography](https://listography.com/), [TheTopsTens](https://www.thetoptens.com/), [CopyPasteList](https://copypastelist.co/) or [ListVerse](https://listverse.com/) - Create / Explore Lists
|
||||
Emailed me to say they are shutting down
|
||||
* ⭐ **[Topsters](https://topsters.org/)**, [TierMaker](https://tiermaker.com/) or [OpenTierBoy](https://www.opentierboy.com/) / [GitHub](https://github.com/infinia-yzl/opentierboy) - Create / Explore Tier Lists
|
||||
* ⭐ **[The Lost Media Wiki](https://lostmediawiki.com/)** / [Forum](https://forums.lostmediawiki.com/) / [Subreddit](https://www.reddit.com/r/lostmedia/) / [Discord](https://discord.gg/NFsM8YbBYH)
|
||||
* ⭐ **[Goody2](https://www.goody2.ai/chat)** - World's Most Ethical AI
|
||||
* [The Pudding](https://pudding.cool/) - Explains Ideas w/ Visual Essays
|
||||
* [Iceberg Charts](https://www.reddit.com/r/IcebergCharts/) - Explore Obscure Topics
|
||||
* [Google Earth](https://www.google.com/earth/about/versions) - Explore Earth
|
||||
* [Land Lines](https://lines.chromeexperiments.com/) - Explore Google Earth via Gestures
|
||||
* [elgooG](https://elgoog.im/) - Google Easter Eggs
|
||||
|
|
@ -1454,7 +1470,7 @@
|
|||
* [VGA Museum](https://www.vgamuseum.info/) - Graphic Cards History
|
||||
* [Virus Encyclopedia](http://virus.wikidot.com/) - Computer Virus History
|
||||
* [MobilePhoneMuseum](https://www.mobilephonemuseum.com/) - Mobile Phone History / Info
|
||||
* [KilledByGoogle](https://killedbygoogle.com/) - Dead Projects
|
||||
* [KilledByGoogle](https://killedbygoogle.com/), [Microsoft Graveyard](https://microsoftgraveyard.com/) or [SuedByNintendo](https://www.suedbynintendo.com/) - Dead Projects Archives
|
||||
* [Projectrho](https://www.projectrho.com/public_html/rocket/) - Fantasy Rocket Encyclopedia
|
||||
* [EnigmaLabs](https://enigmalabs.io/) or [UFO Casebook](https://www.ufocasebook.com/) - UFO Sighting Lists / Tracking
|
||||
* [BFRO](https://bfro.net/) - Bigfoot Research Site
|
||||
|
|
@ -1462,6 +1478,7 @@
|
|||
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend / [Mirrors](https://docs.breezewiki.com/Links.html#(part._.Mirrors))
|
||||
* [BlackDrago](https://www.blackdrago.com/) - Dragon Encyclopedia
|
||||
* [FutureTimeline](https://www.futuretimeline.net/) - Timeline of Future Predictions
|
||||
* [Doomsday Scoreboard](https://doomsday.march1studios.com/) - Past & Predicted Apocalypse Events / Failed Prediction Scoreboard
|
||||
* [CommSpeeches](https://commspeeches.softr.app/) - Famous Graduation Speeches
|
||||
* [Roadside America](https://www.roadsideamerica.com/) - Roadside Attractions
|
||||
* [Roller Coaster Database](https://rcdb.com/) - World Roller Coasters
|
||||
|
|
@ -1472,7 +1489,7 @@
|
|||
* [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
|
||||
* [Mecabricks Workshop](https://www.mecabricks.com/en/workshop) or [BrickLink Studio](https://www.bricklink.com/v3/studio/download.page) - Virtual Lego Building
|
||||
* [Instructables](https://www.instructables.com/) or [CreativePark](https://creativepark.canon/en/index.html) - Free Projects / Crafts
|
||||
* [cholyknight](https://cholyknight.com/) - Free Sewing Patterns for Plushies / Wearables
|
||||
* [Toys from Trash](https://www.arvindguptatoys.com/toys.html) - Use Everyday Items to Make Toys
|
||||
|
|
@ -1490,7 +1507,6 @@
|
|||
* [Politiscales](https://politiscales.party/), [8dreams](https://8dreams.github.io/) or [8values](https://8values.github.io/) - Political Alignment Test
|
||||
* [HowNormalAmI?](https://www.hownormalami.eu/) - Face Judge AI
|
||||
* [Face Shape AI](https://www.detect-face-shape.com) or [Face Shape Detectors](https://www.faceshapedetectors.org/) - Face Shape Detectors
|
||||
* [Face Age AI](https://www.howolddoilook.io) - AI Age Guessing
|
||||
* [You're Getting Old](https://you.regettingold.com/) - Age Perspective
|
||||
* [HeyFromTheFuture](https://heyfromthefuture.com/) - What People Wish They Knew at Your Age
|
||||
* [MyGrandmothersLingo](https://www.sbs.com.au/mygrandmotherslingo/) - Interactive Story
|
||||
|
|
@ -1529,7 +1545,7 @@
|
|||
* [Insecam](http://www.insecam.org/en/) or [WorldEye](https://worldeye.cam) - Unprotected Webcams
|
||||
* [r/controllablewebcams](https://reddit.com/r/controllablewebcams) / [Discord](https://discord.gg/wdjtevG)
|
||||
* [snoweye](https://www.snoweye.com/) - Ski Resorts
|
||||
* [Airport Webcams](https://airportwebcams.net/) / [X](https://twitter.com/AirportWebcams)
|
||||
* [Airport Webcams](https://airportwebcams.net/) / [X](https://x.com/AirportWebcams)
|
||||
* [FogCam](https://www.fogcam.org/) - The World's Oldest Webcam
|
||||
|
||||
***
|
||||
|
|
|
|||
284
docs/mobile.md
284
docs/mobile.md
|
|
@ -9,7 +9,7 @@
|
|||
## ▷ Modded APKs
|
||||
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)**, [2](https://forum.mobilism.me/) - Free Books / Sign-Up Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda) / [Telegram](https://t.me/real4pda)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda) / [Telegram](https://t.me/real4pda)
|
||||
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods)
|
||||
* ⭐ **[PlatinMods](https://platinmods.com/)** / Sign-Up Required
|
||||
* ⭐ **[PDALife](https://pdalife.com/)** / [App](https://pdalife.com/pdalife-app-android-a40597.html) / [Telegram](https://t.me/pdalife_official) / [Discord](https://discord.gg/erVkAkzGHZ)
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
* [LiteAPKs](https://liteapks.com/) / [App](https://liteapks.com/app.html) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/liteapks)
|
||||
* [Modyolo](https://modyolo.com/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/modyolo_official)
|
||||
* [Nsane Forums](https://nsaneforums.com/)
|
||||
* [Sbenny](https://sbenny.com/) / [Telegram](https://www.reddit.com/r/SbennyOfficial/)
|
||||
* [Sbenny](https://sbenny.com/) / [Subreddit](https://www.reddit.com/r/SbennyOfficial/)
|
||||
* [farsroid](https://www.farsroid.com/) / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Telegram](https://t.me/farsroid_official)
|
||||
* [APKSum](https://www.apksum.com/)
|
||||
* [Android Zone](https://android-zone.ws/)
|
||||
|
|
@ -57,10 +57,11 @@
|
|||
## ▷ FOSS APKs
|
||||
|
||||
* 🌐 **[Android FOSS](https://github.com/offa/android-foss)**, [Cool FOSS](https://albertomosconi.github.io/foss-apps/) or [AAA](https://github.com/Psyhackological/AAA) - FOSS App Indexes
|
||||
* 🌐 **[Awesome F-Droid](https://fdroid.tabler.dev/)** / [GitHub](https://github.com/moneytoo/awesome-fdroid)
|
||||
* 🌐 **[Awesome Shizuku](https://github.com/timschneeb/awesome-shizuku)** - Shizuku App Index
|
||||
* ⭐ **[FossifyOrg](https://github.com/FossifyOrg)** or [Goodwy](https://github.com/Goodwy?tab=repositories) - Simple FOSS Apps
|
||||
* ⭐ **[Droid-ify](https://droidify.eu.org/)** - FOSS App Installer / [GitHub](https://github.com/Droid-ify/client)
|
||||
* [F-Droid](https://f-droid.org/) / [GitLab](https://gitlab.com/fdroid) or [Awesome F-Droid](https://fdroid.tabler.dev/) / [GitHub](https://github.com/moneytoo/awesome-fdroid) - FOSS App Installer / [Basic](https://f-droid.org/en/packages/org.fdroid.basic/)
|
||||
* [F-Droid](https://f-droid.org/) / [GitLab](https://gitlab.com/fdroid) - FOSS App Installer / [Basic](https://f-droid.org/en/packages/org.fdroid.basic/)
|
||||
* F-Droid Tools - [Repositories](https://forum.f-droid.org/t/known-repositories/) / [Desktop](https://github.com/mvdan/fdroidcl) / [Build Status](https://codeberg.org/pstorch/F-Droid_Build_Status) / [Advanced Search](https://github.com/dbeley/fdroid-insights)
|
||||
* [Neo Store](https://github.com/NeoApplications/Neo-Store) - FOSS App Installer / [Telegram](https://t.me/neo_android_store)
|
||||
* [IzzyOnDroid](https://android.izzysoft.de/applists.php) - FOSS Apps / [F-Droid](https://apt.izzysoft.de/fdroid/index.php)
|
||||
|
|
@ -79,7 +80,7 @@
|
|||
* ↪️ **[Free App Giveaways](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)** - App Giveaway Sites
|
||||
* ⭐ **[APKMirror](https://www.apkmirror.com/)** / [Extension Links](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#apkmirror-extensions)
|
||||
* ⭐ **[UpToDown](https://en.uptodown.com/android)**
|
||||
* ⭐ **[APKCombo](https://apkcombo.app/)**
|
||||
* ⭐ **[APKCombo](https://apkcombo.com/)**
|
||||
* ⭐ **[Aurora Store](https://auroraoss.com/)** - Google Play Store Alt / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#aurora-note) / [GitLab](https://gitlab.com/AuroraOSS/AuroraStore)
|
||||
* [APKPure](https://apkpure.net/), [2](https://apkpure.com/) / [Telegram](https://t.me/APKPure_Official_2)
|
||||
* [Android Ultimate Collection](https://xdaforums.com/t/android-ultimate-collection-guides.4513231/)
|
||||
|
|
@ -96,13 +97,13 @@
|
|||
* 🌐 **[Launcher Comparison Table](https://grabster.notion.site/6671f3b62d8043c4aaaae22a241e3f05?v=91d9b664887643298f85fe18044d3560)**
|
||||
* ⭐ **[Lawnchair](https://lawnchair.app/)** - Pixel-Based Launcher / [Feed](https://github.com/LawnchairLauncher/lawnfeed) / [Icons](https://github.com/LawnchairLauncher/lawnicons) / [Telegram](https://t.me/lawnchairci) / [Discord](https://discord.gg/3x8qNWxgGZ) / [GitHub](https://github.com/LawnchairLauncher/lawnchair)
|
||||
* ⭐ **[Niagara Launcher](https://niagaralauncher.app/)** - Single-Hand Launcher / [Telegram](https://t.me/niagara_news) / [Discord](https://discord.com/invite/niagara-launcher-728630549278883950)
|
||||
* ⭐ **[SmartLauncher](https://rentry.co/FMHYB64#smartlauncher)**, [2](https://www.smartlauncher.net/) - Customizable Launcher / [Telegram](https://t.me/smartlauncher)
|
||||
* ⭐ **[SmartLauncher](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search), [2](https://www.smartlauncher.net/) - Customizable Launcher / [Telegram](https://t.me/smartlauncher)
|
||||
* ⭐ **[Kvaesitso](https://kvaesitso.mm20.de/)** - Search-Focused Launcher / [Telegram](https://t.me/Kvaesitso) / [GitHub](https://github.com/MM2-0/Kvaesitso)
|
||||
* [Smart Dock](https://f-droid.org/packages/cu.axel.smartdock/) - Desktop App Launcher / [GitHub](https://github.com/axel358/smartdock)
|
||||
* [KISS](https://kisslauncher.com/) / [GitHub](https://github.com/Neamar/KISS) or [TBLauncher](https://tbog.github.io/TBLauncher/) / [GitHub](https://github.com/TBog/TBLauncher) - Low-Memory Usage Launcher
|
||||
* [Discreet Launcher](https://vincent-falzon.com/) - Minimalist / Clean Launcher / [GitHub](https://github.com/falzonv/discreet-launcher)
|
||||
* [Lunar Launcher](https://github.com/iamrasel/lunar-launcher) - Minimalist / Clean Launcher / [Telegram](https://t.me/LunarLauncher_chats)
|
||||
* [OlauncherCF](https://github.com/OlauncherCF/OlauncherCF) or [mLauncher](https://github.com/DroidWorksStudio/mLauncher) - Minimalist / Clean Launcher
|
||||
* [mLauncher](https://github.com/DroidWorksStudio/mLauncher) - Minimalist / Clean Launcher
|
||||
* [Focus Launcher](https://github.com/mslalith/focus_launcher) - Minimalist / Clean Launcher
|
||||
* [NeoLauncher](https://github.com/NeoApplications/Neo-Launcher) - Customizable Launcher / [Telegram](https://t.me/neo_launcher)
|
||||
* [Unlauncher](https://jkuester.github.io/unlauncher/) - Distraction-Free Launcher / [GitHub](https://github.com/jkuester/unlauncher)
|
||||
|
|
@ -115,8 +116,8 @@
|
|||
|
||||
## ▷ APK Tools
|
||||
|
||||
* ⭐ **[AppManager](https://muntashirakon.github.io/AppManager/)** / [GitHub](https://github.com/MuntashirAkon/AppManager), [UpdateMe](https://github.com/anfreire/updateMe-Mobile) (modded), [Inure](https://rentry.co/FMHYB64#inure) or [PackageManager](https://smartpack.github.io/PackageManager/) / [GitHub](https://github.com/SmartPack/PackageManager) - Package Managers
|
||||
* ⭐ **[Lucky Patcher](https://rentry.co/FMHYB64#lucky-patcher)** - App Patcher
|
||||
* ⭐ **[AppManager](https://muntashirakon.github.io/AppManager/)** / [GitHub](https://github.com/MuntashirAkon/AppManager), [Inure](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) or [PackageManager](https://smartpack.github.io/PackageManager/) / [GitHub](https://github.com/SmartPack/PackageManager) - Package Managers
|
||||
* ⭐ **[Lucky Patcher](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) - App Patcher
|
||||
* ⭐ **Lucky Patcher Tools** - [Guide](https://flixbox.github.io/lp-compat/docs/intro) / [Compatibility](https://flixbox.github.io/lp-compat/) / [Subreddit](https://www.reddit.com/r/luckypatcher/) / [Discord](https://discord.com/invite/RS5ddYf7mw)
|
||||
* ⭐ **[Obtainium](https://obtainium.imranr.dev/)** / [Configs](https://apps.obtainium.imranr.dev/) / [GitHub](https://github.com/ImranR98/Obtainium), [UpgradeAll](https://github.com/DUpdateSystem/UpgradeAll), [APKUpdater](https://github.com/rumboalla/apkupdater) or [InstallerX](https://t.me/InstallerX) (root) - APK Installers / Updaters
|
||||
* ⭐ **[AntiSplit-M](https://github.com/AbdurazaaqMohammed/AntiSplit-M)** - Merge Split APKs
|
||||
|
|
@ -158,23 +159,21 @@
|
|||
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
||||
* ⭐ **[Revenge](https://github.com/revenge-mod/revenge-bundle)** / [Plugins](https://plugins-list.pages.dev/) / [Fonts](https://github.com/Rairof/Theme-Fonts), [2](https://github.com/Purple-EyeZ/Bunny-Fonts) / [Discord](https://discord.com/invite/ddcQf3s2Uq) or [Aliucord](https://github.com/Aliucord/Manager) / [Discord](https://discord.gg/EsNDvBaHVU) - Modded Discord Clients
|
||||
* ⭐ **[Xtra](https://github.com/crackededed/Xtra)**, [BTTV](https://github.com/bttv-android/bttv), [Twire](https://github.com/twireapp/Twire) or [Frosty](https://www.frostyapp.io/) / [GitHub](https://github.com/tommyxchow/frosty) - Twitch Clients
|
||||
* ⭐ **[Reddit Client Patch](https://github.com/KobeW50/ReVanced-Documentation/blob/main/Reddit-Client-ID-Guide.md)**, [Stealth](https://gitlab.com/cosmosapps/stealth), [Continuum](https://github.com/cygnusx-1-org/continuum) or [RedReader](https://github.com/QuantumBadger/RedReader) - Reddit Clients / Patch Guide
|
||||
* ⭐ **[Voyager](https://vger.app) / [GitHub](https://github.com/aeharding/voyager)**, [Jerboa](https://github.com/LemmyNet/jerboa), [Eternity](https://codeberg.org/Bazsalanszky/Eternity), [summit](https://play.google.com/store/apps/details?id=com.idunnololz.summit), [Raccoon](https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy) or [Thunder](https://github.com/thunder-app/thunder) - Lemmy Clients / [Index](https://join-lemmy.org/apps)
|
||||
* ⭐ **[Tusky](https://tusky.app/)**, [Dhaaga](https://github.com/suvam0451/dhaaga), [SubwayTooter](https://github.com/tateisu/SubwayTooter), [Moshidon](https://github.com/LucasGGamerM/moshidon) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients
|
||||
* ⭐ **[piko](https://github.com/crimera/twitter-apk)** / [Telegram](https://t.me/pikopatches) / [GitHub](https://github.com/crimera/piko), [Quacker](https://github.com/TheHCJ/Quacker) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter/X Apps
|
||||
* ⭐ **[piko](https://github.com/crimera/twitter-apk)** / [Telegram](https://t.me/pikopatches) / [GitHub](https://github.com/crimera/piko), [QuaX](https://github.com/Teskann/QuaX) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter / X Apps
|
||||
* [Stealth](https://gitlab.com/cosmosapps/stealth), [Continuum](https://github.com/cygnusx-1-org/continuum) or [RedReader](https://github.com/QuantumBadger/RedReader) - Reddit Clients / Patch Guide
|
||||
* [Watomatic](https://watomatic.app/) / [Subreddit](https://www.reddit.com/r/watomatic/) / [GitHub](https://github.com/adeekshith/watomatic) or [AutoResponder](https://www.autoresponder.ai/) - Chat App Auto-Responders
|
||||
* [MessengerEx](https://github.com/C10udburst/MessengerEx/) - Facebook Messenger Adblocker
|
||||
* [Beeper](https://www.beeper.com/) / [GitHub](https://github.com/beeper) or [Openvibe](https://openvibe.social/) / [Discord](https://discord.gg/GduN6fB6NN) - Combine Chat / Social Media Apps
|
||||
* [Graysky](https://graysky.app/) - Bluesky Client / [GitHub](https://github.com/mozzius/graysky)
|
||||
* [Mumla](https://gitlab.com/quite/mumla) or [Meshenger](https://github.com/meshenger-app/meshenger-android) - Voice Chat
|
||||
* [Kizzy](https://kizzy.dead8309.xyz/) - Discord Rich Presence / [GitHub](https://github.com/dead8309/Kizzy)
|
||||
* [Kizzy](https://github.com/dead8309/Kizzy) - Discord Rich Presence
|
||||
* [Dumpus](https://github.com/dumpus-app/dumpus-app) - View Discord Data / Self host for Privacy / [Discord](https://androz2091.fr/discord)
|
||||
* [DankChat](https://github.com/flex3r/DankChat) - Talk in Multiple Twitch Chats at Once
|
||||
* [OldLander](https://github.com/OctoNezd/oldlander) - Improve Old Reddit
|
||||
* [Kuroba](https://github.com/Adamantcheese/Kuroba) or [Chan](https://github.com/moffatman/chan) - 4chan Apps
|
||||
* [Instafel](https://instafel.app/) / [GitHub](https://github.com/mamiiblt/instafel/) or [InstaEclipse](https://github.com/ReSo7200/InstaEclipse) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#instaeclipse-note) - Modded Instagram Clients / [Tools](https://play.google.com/store/apps/details?id=com.dageek.socialtoolbox_android)
|
||||
* [TikTokModCloud](https://t.me/TikTokModCloud) - Modded TikTok Client
|
||||
* [MessengerPro](https://rentry.co/FMHYB64#messengerpro) - Modded Facebook Messenger
|
||||
* [Nobook](https://github.com/ycngmn/Nobook) - Ad-Free Facebook Lite
|
||||
* [Telegram-Themer](https://github.com/therxmv/Telegram-Themer) or [Telegram Monet](https://github.com/mi-g-alex/Telegram-Monet) / [Telegram](https://t.me/tgmonet) - Telegram Theme Creators
|
||||
* [Launch Chat](https://github.com/vinaygopinath/launch-chat), [WhatsAppNoContact](https://github.com/theolm/WhatsAppNoContact) or [Tellurium](https://play.google.com/store/apps/details?id=com.quadren.tellurium) - Number-Free WhatsApp Chat
|
||||
|
|
@ -204,15 +203,15 @@
|
|||
* 🌐 **[Manufacturer Specific](https://rentry.org/ekrw4)** - Manufacturer-Specific Mobile Tools
|
||||
* ↪️ **[Device Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
||||
* ⭐ **[XDA](https://xdaforums.com/)** - Android Discussion Forum / [Discord](https://discord.com/invite/e4v8qtkcBw)
|
||||
* ⭐ **[ADB AppControl](https://adbappcontrol.com/en/)** / [GUI](https://aya.liriliri.io/) / [Telegram](https://t.me/AdbAppControl_En), **[scrcpy](https://github.com/Genymobile/scrcpy)** / [Mobile App](https://github.com/zwc456baby/ScrcpyForAndroid) / [Subreddit](https://www.reddit.com/r/scrcpy), **[PlainApp](https://docs.plain.icu/)** / [GitHub](https://github.com/ismartcoding/plain-docs), [anl](https://anl.ink/), [WebADB](https://app.webadb.com/), [QtScrcpy](https://github.com/barry-ran/QtScrcpy) or [Octi](https://github.com/d4rken-org/octi) - Android Device Managers / Controllers
|
||||
* ⭐ **[ADB AppControl](https://adbappcontrol.com/en/)** / [GUI](https://aya.liriliri.io/) / [Telegram](https://t.me/AdbAppControl_En), **[scrcpy](https://github.com/Genymobile/scrcpy)** / [Mobile App](https://github.com/zwc456baby/ScrcpyForAndroid) / [Subreddit](https://www.reddit.com/r/scrcpy), **[PlainApp](https://docs.plain.icu/)** / [GitHub](https://github.com/ismartcoding/plain-docs), [WebADB](https://app.webadb.com/), [QtScrcpy](https://github.com/barry-ran/QtScrcpy) or [Octi](https://github.com/d4rken-org/octi) - Android Device Managers / Controllers
|
||||
* ⭐ **[Shizuku](https://shizuku.rikka.app/)** / [Tools](https://github.com/legendsayantan/ShizuTools) / [GitHub](https://github.com/RikkaApps/Shizuku), [Shizuku Fork](https://github.com/thedjchi/Shizuku) or [Dhizuku](https://github.com/iamr0s/Dhizuku) - Let Apps Use System API (Android)
|
||||
* [Plexus](https://plexus.techlore.tech/) - De-Googled Device Compatibility / [GitHub](https://github.com/techlore/Plexus-app)
|
||||
* [GSMHosting](https://forum.gsmhosting.com/vbb/) - GSM Discussion Forum
|
||||
* [AVNC](https://github.com/gujjwal00/avnc) or [DroidVNC-NG](https://github.com/bk138/droidVNC-NG) - Remote Desktop Clients / VNC
|
||||
* [EtchDroid](https://etchdroid.app/) - Write OS Images to USB Drive / [GitHub](https://github.com/etchdroid/etchdroid)
|
||||
* [Techbone](https://www.techbone.net/) or [LunarEclipseCode](https://lunareclipsecode.github.io/engrc-3500-team2/content/intro.html) / [GitHub](https://github.com/LunarEclipseCode/engrc-3500-team2) - Android Usage Guides
|
||||
* [ADB101](https://rentry.co/adb101) - Android Debug Bridge Setup Guide
|
||||
* [G-CPU](https://play.google.com/store/apps/details?id=com.insideinc.gcpu) - Hardware Monitor
|
||||
* [Castro](https://play.google.com/store/apps/details?id=com.itemstudio.castro), [Device Info HW](https://play.google.com/store/apps/details?id=ru.andr7e.deviceinfohw), [Athena](https://github.com/SebaUbuntu/Athena), [DevCheck](https://devcheck.app/) or [SysLog](https://github.com/Tortel/SysLog) - Device Info
|
||||
* [Device Info](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search), [Castro](https://play.google.com/store/apps/details?id=com.itemstudio.castro), [G-CPU](https://play.google.com/store/apps/details?id=com.insideinc.gcpu), [Device Info HW](https://play.google.com/store/apps/details?id=ru.andr7e.deviceinfohw), [Athena](https://github.com/SebaUbuntu/Athena), [DevCheck](https://devcheck.app/) or [SysLog](https://github.com/Tortel/SysLog) - Device Info / Monitors
|
||||
* [Swappa](https://swappa.com/imei) / [Subreddit](https://reddit.com/r/swappa) or [SickW](https://www.sickw.com/) - IMEI, MEID, ESN Checker
|
||||
* [Fix My Speakers](https://fixmyspeakers.com/) - Eject Water from Phone Speakers
|
||||
* [FlashDim](https://github.com/cyb3rko/flashdim) - Adjust Flashlight Brightness
|
||||
|
|
@ -237,7 +236,7 @@
|
|||
|
||||
* ⭐ **[r/AndroidThemes](https://www.reddit.com/r/androidthemes/)** - Android Themes Subreddit
|
||||
* ⭐ **[Mobile Abyss](https://mobile.alphacoders.com/)** - Wallpapers
|
||||
* [RBoard](https://xdaforums.com/t/app-rboard-theme-manager.4331445/) (root) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3), [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) (requires shizuku) or [Substratum](https://www.xda-developers.com/substratum-hub/) - Theme Managers
|
||||
* [RBoard](https://xdaforums.com/t/app-rboard-theme-manager.4331445/) (root) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3) or [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) (requires shizuku)- Theme Managers
|
||||
* [PixelXpert](https://github.com/siavash79/PixelXpert) (root) 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
|
||||
* [Wallpaper Engine](https://www.wallpaperengine.io/android/en) - Wallpapers / Live Wallpapers
|
||||
|
|
@ -249,7 +248,6 @@
|
|||
* [Paperize](https://github.com/Anthonyy232/Paperize) - Wallpapers
|
||||
* [Diffuse](https://diffuse.app/) - Live Audio Wallpapers
|
||||
* [Candybar](https://github.com/zixpo/candybar), [Arcticons](https://arcticons.com/) or [Alembicons](https://f-droid.org/packages/com.kaanelloed.iconeration/) - Custom Icon Packs
|
||||
* [PhoneTones](https://rentry.co/FMHYB64#oldschool-ringtones) - Oldschool Ringtones
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -257,7 +255,7 @@
|
|||
|
||||
* ⭐ **[SaverTuner](https://codeberg.org/s1m/savertuner)** - Battery Monitor / Manager / Root / Enable w/ Shizutools + Shizuku
|
||||
* [Charge Meter](https://play.google.com/store/apps/details?id=dev.km.android.chargemeter) - Battery Monitor / Manager
|
||||
* [BatteryGuru](https://rentry.co/FMHYB64#battery-guru) - Battery Monitor / Manager
|
||||
* [BatteryGuru](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Battery Monitor / Manager
|
||||
* [Batt](https://gitlab.com/narektor/batt) - Battery Monitor / Manager
|
||||
* [aBattery](https://play.google.com/store/apps/details?id=me.linshen.abattery) - Battery Monitor / Manager
|
||||
* [AccuBattery](https://play.google.com/store/apps/details?id=com.digibites.accubattery) - Battery Monitor / Manager
|
||||
|
|
@ -303,7 +301,6 @@
|
|||
* [OpenContacts](https://gitlab.com/sultanahamer/OpenContacts) - Save Contacts to Separate Database
|
||||
* [android-call-recorder](https://gitlab.com/axet/android-call-recorder) or [BCR](https://github.com/chenxiaolong/BCR) / [GUI](https://github.com/nicorac/bcr-gui) - Call Recorders
|
||||
* [Logger](https://github.com/Sanmeet007/logger) - View / Export Call Logs
|
||||
* [The National Do Not Call Registry](https://www.donotcall.gov/) - Opt Out of Telemarketing Calls
|
||||
* [Scammer.Info](https://scammer.info/) - Scam Numbers Database
|
||||
* [Prepaid SIM Cards](https://prepaid-data-sim-card.fandom.com/wiki/Prepaid_SIM_with_data) - Prepaid Data SIM Card Wiki
|
||||
* [Walkie-Talkie](https://walkie-talkie.io/) or [Codec2 Talkie](https://github.com/sh123/codec2_talkie) - Walkie-Talkie Apps
|
||||
|
|
@ -314,7 +311,7 @@
|
|||
## ▷ Root / Flash
|
||||
|
||||
* 🌐 **[Awesome Android Root](https://awesome-android-root.org/)** - Rooted App Index / [GitHub](https://github.com/awesome-android-root/awesome-android-root)
|
||||
* 🌐 **[Bootloader Unlock: Wall of Shame](https://github.com/melontini/bootloader-unlock-wall-of-shame)** - Bootlocker Limit Index
|
||||
* 🌐 **[Bootloader Unlock: Wall of Shame](https://github.com/melontini/bootloader-unlock-wall-of-shame)** or [BL List](https://a.zli.li/) - Bootlocker Limit Indexes / Policies / [GitHub](https://github.com/xuemian168/android-locker)
|
||||
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [Magisk Alpha](https://t.me/magiskalpha), [KernelSU](https://kernelsu.org/), [KernelSU-Next](https://github.com/KernelSU-Next/KernelSU-Next), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [APatch](https://github.com/bmax121/APatch), [MTKClient](https://github.com/bkerler/mtkclient) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
||||
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo)
|
||||
* ⭐ **[Android Docker](https://gist.github.com/FreddieOliveira/efe850df7ff3951cb62d74bd770dce27)** - Run Docker on Android
|
||||
|
|
@ -325,7 +322,6 @@
|
|||
* [TWRP Root](https://twrp.me/) - TWRP Root / [Telegram](https://t.me/samsung_twrp_root)
|
||||
* [Orangefox](https://orangefox.download/) or [SkyHawk](https://skyhawkrecovery.github.io/) - Custom Recovery Firmware
|
||||
* [Smali Patcher](https://xdaforums.com/t/module-smali-patcher-7-4.3680053/) - Android System Patcher
|
||||
* [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs
|
||||
* [LSPosed](https://github.com/JingMatrix/LSPosed) - LSPosed Framework
|
||||
* [PixelFlasher](https://github.com/badabing2005/PixelFlasher) - Pixel Phone Flashing GUI
|
||||
|
||||
|
|
@ -334,6 +330,7 @@
|
|||
## ▷ Operating Systems
|
||||
|
||||
* 🌐 **[Android ROM Comparisons](https://eylenburg.github.io/android_comparison.htm)** or [Android ROM List](https://github.com/musabcel/android_rom_list)
|
||||
* 🌐 **[GSI List](https://github.com/TrebleDroid/treble_experimentations/wiki/Generic-System-Image-(GSI)-list)** - Generic System Image Index
|
||||
* ⭐ **[GrapheneOS](https://grapheneos.org/)** - Security & Privacy Hardened Android / Google Pixel Only / [Discord](https://discord.com/invite/grapheneos) / [Telegram](https://t.me/GrapheneOS)
|
||||
* [LineageOS](https://www.lineageos.org/) - Privacy-Focused OS / [Discord](https://discord.gg/gD6DMtf)
|
||||
|
||||
|
|
@ -342,7 +339,7 @@
|
|||
# ► Android Camera
|
||||
|
||||
* ⭐ **[Google Lens](https://lens.google.com/)** - Multiple Camera Tools
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)** / [IP Webcam](https://play.google.com/store/apps/details?id=com.pas.webcam) / [Windows Driver](https://ip-webcam.appspot.com/), [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam / Live Cam
|
||||
* [Libre Camera](https://github.com/iakdis/librecamera) - Camera App
|
||||
* [GrapheneOS Camera](https://github.com/GrapheneOS/Camera) - Camera App
|
||||
* [Blackmagic Camera](https://play.google.com/store/apps/details?id=com.blackmagicdesign.android.blackmagiccam) - Camera App
|
||||
|
|
@ -359,19 +356,18 @@
|
|||
## ▷ Image Tools
|
||||
|
||||
* ⭐ **[Image Toolbox](https://github.com/T8RIN/ImageToolbox)** - Image Editor
|
||||
* [PicsArt](https://rentry.co/FMHYB64#picsart) - Image Editor
|
||||
* [PicsArt](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Image Editor
|
||||
* [Hypic](https://play.google.com/store/apps/details?id=com.xt.retouchoversea) - Image Editor
|
||||
* [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed) - Image Editor
|
||||
* [PhotoLayers](https://play.google.com/store/apps/details?id=com.handycloset.android.photolayers) - Image Editor
|
||||
* [Photo Editor](https://www.iudesk.com/) - Image Editor
|
||||
* [Pixomatic](https://pixomatic.us/) - Image Editor
|
||||
* [Material Photo Widget](https://github.com/fibelatti/photo-widget) - Homescreen Photo Widget
|
||||
* [Memetastic](https://github.com/gsantner/memetastic) - Meme Creators
|
||||
* [PhotoScan](https://play.google.com/store/apps/details?id=com.google.android.apps.photos.scanner) - Easily Scan & Digitize Photos
|
||||
* [Color Camera](https://play.google.com/store/apps/details?id=theindusdeveloper.com.colorcamera) - Change Image Colors
|
||||
* [Imagepipe](https://codeberg.org/Starfish/Imagepipe) - Image Size Reducer
|
||||
* [FFShare](https://github.com/caydey/ffshare) - Compress Videos / Images
|
||||
* [RealSR](https://github.com/tumuyan/RealSR-NCNN-Android), [Galaxy Enhance-X](https://rentry.co/FMHYB64#galaxy-enhance-x) or [Superimage](https://superimage.io/) - Image Upscalers
|
||||
* [RealSR](https://github.com/tumuyan/RealSR-NCNN-Android), [Galaxy Enhance-X](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_untouched_apks) (search) or [Superimage](https://superimage.io/) - Image Upscalers
|
||||
* [AndroidOCR](https://github.com/SubhamTyagi/android-ocr) - Extract Text from Images
|
||||
* [SauceNAO](https://github.com/LuK1337/SauceNAO) - Reverse Image Search / Some NSFW
|
||||
* [AppMockUp](https://app-mockup.com/) - Screenshot Builder
|
||||
|
|
@ -384,7 +380,7 @@
|
|||
|
||||
* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)** - Photo / Video Gallery
|
||||
* ⭐ **[Aves](https://github.com/deckerst/aves)** - Photo / Video Gallery
|
||||
* [Google Photos](https://rentry.co/FMHYB64#revanced-google-photos) - Photo / Video Gallery / Unlimited
|
||||
* [Google Photos Revanced](https://revanced.app/) - Photo / Video Gallery / Unlimited / [Easy Install](https://wispydocs.pages.dev/revanced-obtainium/)
|
||||
* [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo) - Photo / Video Gallery
|
||||
* [Ente](https://ente.io/) - Photo / Video Gallery / [GitHub](https://github.com/ente-io/ente)
|
||||
* [Photok](https://github.com/leonlatsch/Photok) - Photo / Video Gallery
|
||||
|
|
@ -399,12 +395,13 @@
|
|||
## ▷ Android Utilities
|
||||
|
||||
* ↪️ **[Android Calculators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_calculators)**
|
||||
* ⭐ **[MacroDroid](https://rentry.co/FMHYB64#macrodroid)** / [Subreddit](https://www.reddit.com/r/macrodroid/), [Tasker](https://rentry.co/FMHYB64#tasker) or [Automate](https://llamalab.com/automate/) / [Subreddit](https://www.reddit.com/r/AutomateUser/) - Android Automation
|
||||
* ⭐ **[Unified Remote](https://rentry.co/FMHYB64#unified-remote)**, [2](https://www.unifiedremote.com/) - Control PC with App
|
||||
* [Toolbox](https://github.com/Koizeay/Toolbox), [Tooly](https://play.google.com/store/apps/details?id=com.yousx.thetoolsapp) or [fooView](https://play.google.com/store/apps/details?id=com.fooview.android.fooview) - Multi-Tool Apps
|
||||
* [LightCut](https://play.google.com/store/apps/details?id=com.lightcut.videoeditor), [open-video-editor](https://github.com/devhyper/open-video-editor) or [Vaux](https://play.google.com/store/apps/details?id=com.vaux.vaux_editor) - Video Editors
|
||||
* ⭐ **[MacroDroid](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) / [Subreddit](https://www.reddit.com/r/macrodroid/), [Tasker](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) or [Automate](https://llamalab.com/automate/) / [Subreddit](https://www.reddit.com/r/AutomateUser/) - Android Automation
|
||||
* ⭐ **[Unified Remote](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search), [2](https://www.unifiedremote.com/) - Control PC with App
|
||||
* [Tooly](https://play.google.com/store/apps/details?id=com.yousx.thetoolsapp) or [fooView](https://play.google.com/store/apps/details?id=com.fooview.android.fooview) - Multi-Tool Apps
|
||||
* [LightCut](https://play.google.com/store/apps/details?id=com.lightcut.videoeditor), [Lossless Video Cutter](https://play.google.com/store/apps/details?id=com.losslessvideocutter), [open-video-editor](https://github.com/devhyper/open-video-editor) or [Vaux](https://play.google.com/store/apps/details?id=com.vaux.vaux_editor) - Video Editors
|
||||
* [Inverse AI](https://play.google.com/store/apps/details?id=com.inverseai.video_converter) - Video Converter / Compressor
|
||||
* [auto-auto-rotate](https://gitlab.com/juanitobananas/auto-auto-rotate) - Per App Rotation Settings
|
||||
* [Hermit](https://rentry.co/FMHYB64#hermit) / [2](https://play.google.com/store/apps/details?id=com.chimbori.hermitcrab), [Shelter](https://github.com/PeterCxy/Shelter), [Island](https://github.com/oasisfeng/island) or [Insular](https://secure-system.gitlab.io/Insular/) / [GitLab](https://gitlab.com/secure-system/Insular) - Isolate / Clone Apps
|
||||
* [Shelter](https://gitea.angry.im/PeterCxy/Shelter) / [2](https://github.com/PeterCxy/Shelter), [Island](https://github.com/oasisfeng/island) or [Insular](https://secure-system.gitlab.io/Insular/) / [GitLab](https://gitlab.com/secure-system/Insular) - Isolate / Clone Apps via Work Profiles
|
||||
* [Geto](https://github.com/JackEblan/Geto) - Custom App Settings / Requires Shizuku
|
||||
* [Catima](https://catima.app/) - Loyalty Card Managers
|
||||
* [Shortcut Maker](https://play.google.com/store/apps/details?id=rk.android.app.shortcutmaker) or [Quikshort](https://play.google.com/store/apps/details?id=com.atolphadev.quikshort) - Create App Shortcuts
|
||||
|
|
@ -413,6 +410,7 @@
|
|||
* [Circle to Search](https://play.google.com/store/apps/details?id=com.circletosearch.android) or [MiCTS](https://github.com/parallelcc/MiCTS/blob/main/README_en.md) - Circle to Search
|
||||
* [notesGPT](https://usenotesgpt.com/) - AI Voice Notes
|
||||
* [AudioNote](https://certified84.github.io/AudioNote/) or [Fossify Voice Recorder](https://github.com/FossifyOrg/Voice-Recorder) - Video / Voice Recorders
|
||||
* [AndroidMic](https://github.com/teamclouday/AndroidMic) - Use Android as PC Mic
|
||||
* [ChatBox](https://github.com/Bin-Huang/chatbox), [Rikka AI](https://rikka-ai.com/) / [Discord](https://discord.gg/9weBqxe5c4) / [GitHub](https://github.com/rikkahub/rikkahub), [Maid](https://github.com/Mobile-Artificial-Intelligence/maid), [ChatterUI](https://github.com/Vali-98/ChatterUI), [Google AI Edge Gallery](https://github.com/google-ai-edge/gallery) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - Local AI Chatbots
|
||||
* [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)
|
||||
|
|
@ -422,7 +420,6 @@
|
|||
* [Listy](https://listy.is/) or [HypeList](https://hypelist.com/) - Create Lists of Anything
|
||||
* [Gameye](https://www.gameye.app/) - Track Game Collection / Prices
|
||||
* [VoiceGPT](https://github.com/WSTxda/Plugin-VoiceGPT) or [Dicio](https://github.com/Stypox/dicio-android) - Voice Assistants
|
||||
* [Novelist](https://www.novelist.app/) - Writing App
|
||||
* [Tunity](https://tunity.com/) - Hear Muted TVs
|
||||
* [Trail Sense](https://kylecorry.com/Trail-Sense/) - Wilderness Survival App / [GitHub](https://github.com/kylecorry31/Trail-Sense)
|
||||
* [SensorServer](https://github.com/umer0586/SensorServer) - Use Phone as Accelerometer
|
||||
|
|
@ -441,15 +438,15 @@
|
|||
## ▷ Android Adblocking
|
||||
|
||||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||
* ⭐ **[Rethink DNS](https://rethinkdns.com/app)** / [Blocklists](https://rethinkdns.com/app#blocklists), [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/), [DNSWarden](https://dnswarden.com/) / [GitHub](https://github.com/bhanupratapys/dnswarden) - DNS Adblockers
|
||||
* ⭐ **[AdGuard Premium](https://rentry.co/FMHYB64#adguard)** - Adblocking App
|
||||
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock)** - Adblocker / Works Best on [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/) / [Brave](https://brave.com/)
|
||||
* ⭐ **[Rethink DNS](https://rethinkdns.com/app)** / [Blocklists](https://rethinkdns.com/app#blocklists), [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) - DNS Adblockers
|
||||
* ⭐ **[AdGuard Premium](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) - Adblocking App
|
||||
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock)** - Adblocker / Works Best on [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/)
|
||||
* [AdAway](https://adaway.org/) - Adblocking App / [GitHub](https://github.com/AdAway/AdAway)
|
||||
* [PrivateDNSAndroid](https://github.com/karasevm/PrivateDNSAndroid) - DNS Switchers
|
||||
|
||||
***
|
||||
|
||||
## ▷ Privacy
|
||||
## ▷ Android Privacy
|
||||
|
||||
* 🌐 **[Awesome Android Security](https://github.com/ashishb/android-security-awesome)** - Security Resources
|
||||
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)**
|
||||
|
|
@ -465,7 +462,7 @@
|
|||
* [Intra](https://getintra.org) - Encrypted DNS App
|
||||
* [PermissionManagerX](https://github.com/mirfatif/PermissionManagerX) - App Permission Manager
|
||||
* [AppLock](https://github.com/PranavPurwar/AppLock) - App Locker / No Root Required / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#app-lock)
|
||||
* [Orbot](https://orbot.app/en/) - Tor Proxy Apps
|
||||
* [Orbot](https://orbot.app/en/), [2](https://guardianproject.info/apps/org.torproject.android/) - Tor Proxy Apps
|
||||
* [Privacy Guides](https://www.privacyguides.org/en/android/) - Android Privacy Guides
|
||||
* [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS) - Encrypted File Manager
|
||||
* [TrackerControl](https://trackercontrol.org/) - Tracker Monitor / Controller / [GitHub](https://github.com/TrackerControl/tracker-control-android)
|
||||
|
|
@ -484,11 +481,11 @@
|
|||
|
||||
* ↪️ **[QR Code Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_qr_code_tools)**
|
||||
* ⭐ **[KeePassDX](https://www.keepassdx.com/)**, **[Bitwarden](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden)** / [Alt Client](https://github.com/AChep/keyguard-app) / [X](https://twitter.com/bitwarden) / [Subreddit](https://reddit.com/r/bitwarden) / [GitHub](https://github.com/bitwarden), [Proton Pass](https://proton.me/pass), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass) or [Keepass2Android](https://play.google.com/store/apps/details?id=keepass2android.keepass2android) / [GitHub](https://github.com/PhilippC/keepass2android) - Password Managers
|
||||
* ⭐ **[Thunderbird](https://github.com/thunderbird/thunderbird-android)**, [K-9 Mail](https://k9mail.app/), [Tuta](https://tuta.com/), [SimpleMail](https://framagit.org/dystopia-project/simple-email), [Monocles](https://f-droid.org/packages/de.monocles.mail/) or [FairEmail](https://email.faircode.eu/) - Email Clients
|
||||
* ⭐ **[Thunderbird](https://github.com/thunderbird/thunderbird-android)** / [Notifications](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#thunderbird), [K-9 Mail](https://k9mail.app/), [Tuta](https://tuta.com/), [SimpleMail](https://framagit.org/dystopia-project/simple-email), [Monocles](https://f-droid.org/packages/de.monocles.mail/) or [FairEmail](https://email.faircode.eu/) - Email Clients
|
||||
* ⭐ **[Network Survey](https://www.networksurvey.app/)**, [PCAPdroid](https://emanuele-f.github.io/PCAPdroid/) or [keepitup](https://github.com/ibbaa/keepitup/) - Network Monitors
|
||||
* [Tetherfi](https://github.com/pyamsoft/tetherfi) or [NetShare](https://netshare.app/) - Create Wi-Fi Hotspots
|
||||
* [Wolfram Alpha](https://rentry.co/FMHYB64#wolfram-mobile) - Searchable Knowledge Base
|
||||
* [Feeder](https://github.com/spacecowboy/Feeder), [Pluma RSS](https://rentry.co/FMHYB64#pluma-rss), [Twine](https://github.com/msasikanth/twine), [FeedMe](https://github.com/seazon/FeedMe), [news](https://github.com/bubelov/news), [nunti](https://gitlab.com/ondrejfoltyn/nunti), [Aggregator News](https://play.google.com/store/apps/details?id=com.and96.aggregator_news), [CapyReader](https://github.com/jocmp/capyreader) or [ReadYou](https://github.com/Ashinch/ReadYou) - RSS Readers
|
||||
* [PairVPN Hotspot](https://pairvpn.com/hotspot), [Tetherfi](https://github.com/pyamsoft/tetherfi) or [NetShare](https://netshare.app/) - Create Wi-Fi Hotspots
|
||||
* [Wolfram Alpha](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Searchable Knowledge Base
|
||||
* [Feeder](https://github.com/spacecowboy/Feeder), [Pluma RSS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search), [Twine](https://github.com/msasikanth/twine), [FeedMe](https://github.com/seazon/FeedMe), [news](https://github.com/bubelov/news), [nunti](https://gitlab.com/ondrejfoltyn/nunti), [Aggregator News](https://play.google.com/store/apps/dev?id=5578181639208826441), [CapyReader](https://github.com/jocmp/capyreader) or [ReadYou](https://github.com/Ashinch/ReadYou) - RSS Readers
|
||||
* [NewsBang](https://www.newsbang.com/) - News App / US Only
|
||||
* [Hacki](https://github.com/Livinglist/Hacki), [Harmoni](https://play.google.com/store/apps/details?id=com.simon.harmonichackernews) or [Glider](https://github.com/Mosc/Glider) - Tech News / HN Apps
|
||||
* [DataMonitor](https://github.com/itsdrnoob/DataMonitor) - Data Usage Monitor
|
||||
|
|
@ -497,11 +494,10 @@
|
|||
* [NativeAlpha](https://play.google.com/store/apps/details?id=com.cylonid.nativealpha) - Run Websites in Borderless Window
|
||||
* [EasyOpenLink](https://codeberg.org/marc.nause/easyopenlink) - Easily Open Links in Text via Share Function
|
||||
* [PassAndroid](https://github.com/ligi/PassAndroid) - Manage Virtual Tickets / Passes
|
||||
* [Blabber.im](https://blabber.im/) or [Conversations](https://f-droid.org/en/packages/eu.siacs.conversations/) - XMPP Apps
|
||||
* [Conversations](https://f-droid.org/en/packages/eu.siacs.conversations/) - XMPP App
|
||||
* [IRCCloud](https://github.com/irccloud/android), [Goguma](https://codeberg.org/emersion/goguma) or [Revolution IRC](https://github.com/MCMrARM/revolution-irc) - IRC Clients
|
||||
* [NFC Tools](https://play.google.com/store/apps/details?id=com.wakdev.wdnfc) - Read / Write NFC Tags
|
||||
* [Ruffle Android](https://github.com/ruffle-rs/ruffle-android) - Android Flash Emulator
|
||||
* [GMS-Flags](https://github.com/polodarb/GMS-Flags) - Turn Google Flags On/Off / Root
|
||||
* [SubX](https://play.google.com/store/apps/details?id=com.alkapps.subx) or [SubscriptionManager](https://play.google.com/store/apps/details?id=de.simolation.subscriptionmanager) - Track Subscription Services
|
||||
* [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) / [GitHub](https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners
|
||||
* [Fing](https://www.fing.com/fing-app/) - Network Toolkit
|
||||
|
|
@ -514,30 +510,30 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[Firefox](https://www.firefox.com/browsers/mobile/android/)** - Customizable Browser / [Focus](https://www.firefox.com/browsers/mobile/focus/) / [Nightly](https://www.firefox.com/channel/android/#nightly)
|
||||
* ⭐ **[Cromite](https://github.com/uazo/cromite)** - Chromium-Based Browser w/ Built-in Adblock / [Filter](https://github.com/xarantolus/filtrite) / [Adblock Scripts](https://userscripts.010.one/)
|
||||
* ⭐ **[Brave](https://brave.com/)** - Chromium-Based Browser w/ Built-in Adblock / Privacy-Focused / [GitHub](https://github.com/brave/brave-browser)
|
||||
* ⭐ **[IronFox](https://gitlab.com/ironfox-oss/IronFox)** - Mull Browser Fork / Privacy-Focused / [Discord](https://discord.gg/zbdzfRVyVh)
|
||||
* ⭐ **[Firefox](https://www.firefox.com/browsers/mobile/android/)** - Customizable Browser / Extensions / [Focus](https://www.firefox.com/browsers/mobile/focus/) / [Nightly](https://www.firefox.com/channel/android/#nightly)
|
||||
* ⭐ **[Cromite](https://github.com/uazo/cromite)** - Chromium-Based / Extensions / Built-in Adblock / [Filter](https://github.com/xarantolus/filtrite) / [Adblock Scripts](https://userscripts.010.one/)
|
||||
* ⭐ **[Brave](https://brave.com/)** - Chromium-Based / Built-in Adblock / Privacy-Focused / [GitHub](https://github.com/brave/brave-browser)
|
||||
* ⭐ **[IronFox](https://gitlab.com/ironfox-oss/IronFox)** - Mull Browser Fork / Extensions / Privacy-Focused / [Discord](https://discord.gg/zbdzfRVyVh)
|
||||
* ⭐ **[Tor](https://tb-manual.torproject.org/mobile-tor/)** - Onion-Routed Browser / Privacy-Focused
|
||||
* [Iceraven Browser](https://github.com/fork-maintainers/iceraven-browser) - Customizable Browsers Based on Firefox
|
||||
* [Iceraven Browser](https://github.com/fork-maintainers/iceraven-browser) - Firefox-Based / Extensions
|
||||
* [Fennec](https://f-droid.org/en/packages/org.mozilla.fennec_fdroid/) - Firefox-Based / Extensions / [GitLab](https://gitlab.com/relan/fennecbuild)
|
||||
* [FFUpdater](https://github.com/Tobi823/ffupdater) - Multi-Browser Updater
|
||||
* [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)
|
||||
* [Hermit](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) / [2](https://play.google.com/store/apps/details?id=com.chimbori.hermitcrab) - Lite Apps Browser
|
||||
|
||||
***
|
||||
|
||||
## ▷ Android File Tools
|
||||
|
||||
* ↪️ **[Mobile / Desktop Transfer](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25BA_file_transfer)**
|
||||
* ⭐ **[1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager)** / [Extra Features](https://rentry.co/FMHYB64#link-1dm), [ADM](https://rentry.co/FMHYB64#adm) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
||||
* ⭐ **[MiXplorer](https://mixplorer.com/beta/)**, [2](https://mixplorer.com/), [3](https://xdaforums.com/t/app-2-2-mixplorer-v6-x-released-fully-featured-file-manager.1523691/) - Advanced Root File Explorer / Manager / [Themes](https://play.google.com/store/apps/details?id=de.dertyp7214.mixplorerthemecreator)
|
||||
* ⭐ **[1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager)** / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search), [Go Speed](https://gopeed.com/) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) / [GitHub](https://github.com/GopeedLab/gopeed), [ADM](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
||||
* ⭐ **[MiXplorer](https://mixplorer.com/beta/)**, [2](https://mixplorer.com/), [3](https://xdaforums.com/t/app-2-2-mixplorer-v6-x-released-fully-featured-file-manager.1523691/), [MT Manager](https://mt2.cn/) - Advanced Root File Explorer / Manager / [Themes](https://play.google.com/store/apps/details?id=de.dertyp7214.mixplorerthemecreator) / [Note](https://pastebin.com/fM9XzMkd)
|
||||
* ⭐ **[SD Maid SE](https://github.com/d4rken-org/sdmaid-se)** - File Manager / Cleaner / [Unlock Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sd-maid) / [Discord](https://discord.com/invite/8Fjy6PTfXu)
|
||||
* ⭐ **[MaterialFiles](https://github.com/zhanghai/MaterialFiles)** - File Manager
|
||||
* ⭐ **[Material Files](https://github.com/zhanghai/MaterialFiles)** - File Manager
|
||||
* ⭐ **[Fossify File Manager](https://github.com/FossifyOrg/File-Manager)** - File Manager
|
||||
* ⭐ **[ZArchiver](https://play.google.com/store/apps/details?id=ru.zdevs.zarchiver)** or [ZipXtract](https://github.com/WirelessAlien/ZipXtract) - File Archivers
|
||||
* ⭐ **[SyncThing Fork](https://github.com/Catfriend1/syncthing-android)** - File Sync
|
||||
* ⭐ **[Pairdrop](https://pairdrop.net/)** - File Sharing / [GitHub](https://github.com/fm-sys/snapdrop-android)
|
||||
* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [Prism File Explorer Compose](https://github.com/Raival-e/Prism-File-Explorer), [MT Manager](https://rentry.co/FMHYB64#mt-manager) or [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) - File Managers / Explorers
|
||||
* [ConvertIt](https://github.com/TheByteArray/Convertit) - File Converter
|
||||
* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [File Navigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator) or [Prism File Explorer](https://github.com/Raival-e/Prism-File-Explorer) - 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
|
||||
|
|
@ -557,22 +553,22 @@
|
|||
|
||||
* ↪️ **[Android Code Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_android_code_editors)**
|
||||
* ⭐ **[Obsidian](https://obsidian.md/mobile)** - Highly Customizable Note-Taking App
|
||||
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)** - Minimalistic Note-Taking App
|
||||
* ⭐ **[Notesnook](https://github.com/streetwriters/notesnook/tree/master/apps/mobile)** - E2E Encrypted Note-Taking App
|
||||
* ⭐ **[Acode](https://acode.app)** / [GitHub](https://github.com/Acode-Foundation/Acode) or **[QuickEdit](https://rentry.co/FMHYB64#quickedit)** - Text / Code Editors
|
||||
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)**, [Notally](https://github.com/OmGodse/Notally), [NotallyX](https://github.com/PhilKes/NotallyX), [Google Keep](https://keep.google.com/) or [ColorNote](https://www.colornote.com/) - Minimalistic Note-Taking Apps
|
||||
* ⭐ **[Notesnook](https://github.com/streetwriters/notesnook/tree/master/apps/mobile)** - E2E Encrypted Note-Taking App / [Discord](https://discord.com/invite/notesnook-796015620436787241)
|
||||
* ⭐ **[Acode](https://acode.app)** / [GitHub](https://github.com/Acode-Foundation/Acode), **[QuickEdit](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) or [Xed-Editor](https://github.com/Xed-Editor/Xed-Editor) - Text / Code Editors
|
||||
* ⭐ **[FUTO Voice](https://voiceinput.futo.org/)** or [Transcribro](https://github.com/soupslurpr/Transcribro) - Voice-Input Keyboards
|
||||
* ⭐ **[Look Up](https://rentry.co/FMHYB64#look-up)**, [Livio](https://play.google.com/store/apps/dev?id=7909003501452794484) or [AARD2](https://github.com/itkach/aard2-android), [NotificationDictionary](https://github.com/tirkarthi/NotificationDictionary) or [Ciyue](https://f-droid.org/packages/org.eu.mumulhl.ciyue/) - Dictionary Apps
|
||||
* [Xed-Editor](https://github.com/Xed-Editor/Xed-Editor) - Text / Code Editor
|
||||
* ⭐ **[Look Up](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search), [Livio](https://play.google.com/store/apps/dev?id=7909003501452794484) or [AARD2](https://github.com/itkach/aard2-android), [NotificationDictionary](https://github.com/tirkarthi/NotificationDictionary) or [Ciyue](https://f-droid.org/packages/org.eu.mumulhl.ciyue/) - Dictionary Apps
|
||||
* [Markor](https://fossdroid.com/a/markor.html) - Text Editor with Markdown Support
|
||||
* [OpenNote](https://github.com/YangDai2003/OpenNote-Compose), [neutriNote](https://github.com/appml/neutrinote) or [OneNote](https://play.google.com/store/apps/details?id=com.microsoft.office.onenote&hl=en-us) - Note-Taking Apps with Markdown / Math Support
|
||||
* [neutriNote](https://github.com/appml/neutrinote) or [OneNote](https://play.google.com/store/apps/details?id=com.microsoft.office.onenote&hl=en-us) - Note-Taking Apps with Markdown / Math Support
|
||||
* [Quillpad](https://quillpad.github.io/) / [GitHub](https://github.com/quillpad/quillpad) - Note-Taking App with Markdown Support
|
||||
* [Safe Notes](https://safenotes.dev/) / [GitHub](https://github.com/keshav-space/safenotes) - AES-256 Encrypted Note-Taking App
|
||||
* [Notebook](https://www.zoho.com/notebook/mobile-app.html), [NotePad](https://github.com/mshdabiola/NotePad), [Notally](https://github.com/OmGodse/Notally) or [Google Keep](https://keep.google.com/) - Multi-media Note-Taking Apps
|
||||
* [ColorNote](https://www.colornote.com/) - Simple / Minimalistic Note-Taking App
|
||||
* [Safe Notes](https://safenote.co/) / [GitHub](https://github.com/keshav-space/safenotes) - AES-256 Encrypted Note-Taking App
|
||||
* [Notebook](https://www.zoho.com/notebook/mobile-app.html) or [NotePad](https://github.com/mshdabiola/NotePad) - Note-Taking Apps with Drawing
|
||||
* [Walling](https://walling.app/) or [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android) - Note-Taking Apps for Projects
|
||||
* [Moe Memos](https://memos.moe/) - Self-Hosted Note-Taking App
|
||||
* [Writer Plus](https://play.google.com/store/apps/details?id=co.easy4u.writer) - Note-Taking App for Writers
|
||||
* [Saber](https://github.com/saber-notes/saber) or [Notein](https://www.notein.ai/) - Note-Taking Apps for Handwritten Notes
|
||||
* [Novelist](https://www.novelist.app/) - Writing App
|
||||
* [Logseq](https://logseq.com/) - Outlining / [GitHub](https://github.com/logseq/logseq)
|
||||
* [OSS Document Scanner](https://github.com/Akylas/OSS-DocumentScanner), [Adobe Scanner](https://www.adobe.com/acrobat/mobile/scanner-app.html), [vFLat Scan](https://play.google.com/store/apps/details?id=com.voyagerx.scanner) or [OpenScan](https://github.com/ethereal-developers/OpenScan) - Document Scanners
|
||||
* [OpenDocument](https://opendocument.app/) or [LibreOffice Viewer](https://f-droid.org/packages/org.documentfoundation.libreoffice/) - Document Readers
|
||||
* [Paperless](https://github.com/astubenbord/paperless-mobile) - Document Manager
|
||||
|
|
@ -599,7 +595,7 @@
|
|||
|
||||
* ⭐ **[ntfy](https://ntfy.sh/)** / [Discord](https://discord.gg/cT7ECsZj9w) / [GitHub](https://github.com/binwiederhier/ntfy), [AppRise](https://github.com/caronc/apprise) or [PingMe](https://pingme.lmno.pk/) - Custom Push Notifications
|
||||
* [Compass QS Tile](https://github.com/WSTxda/Compass-QS-Tile) or [QuickTiles](https://gitlab.com/flxholle/quick-tiles) - Quick Setting Tiles
|
||||
* [KWGT Widgets](https://rentry.co/FMHYB64#kwgt) - Custom Android Widgets
|
||||
* [KWGT Widgets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - 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
|
||||
|
|
@ -608,7 +604,7 @@
|
|||
|
||||
## ▷ Date & Time
|
||||
|
||||
* ⭐ **[Sleep as Android](https://rentry.co/FMHYB64#sleep-as-android)** - Clock / Alarm
|
||||
* ⭐ **[Sleep as Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) - 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 with QR Code Control
|
||||
* [Calendar Notifications](https://play.google.com/store/apps/details?id=com.tuogol.calendar.notification) - Calendar in Notifications
|
||||
|
|
@ -616,7 +612,7 @@
|
|||
* [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
|
||||
* [Daily You](https://github.com/Demizo/Daily_You) - Daily Journal / Picture / Mood tracker
|
||||
* [FamilyWall](https://www.familywall.com/) - Family Organization Planner
|
||||
* [Sleep Cycle](https://rentry.co/FMHYB64#sleep-cycle) - Clock / Alarm
|
||||
* [Sleep Cycle](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Clock / Alarm
|
||||
* [Clock](https://github.com/BlackyHawky/Clock) - Clock / Alarm
|
||||
* [Chrono](https://github.com/vicolo-dev/chrono) - Clock / Alarm
|
||||
* [Plees Tracker](https://vmiklos.hu/plees-tracker/) - Sleep Tracker
|
||||
|
|
@ -626,10 +622,10 @@
|
|||
## ▷ Productivity Trackers
|
||||
|
||||
* ↪️ **[Text Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_text_tools) / [To-Do Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_to-do_apps)**
|
||||
* ⭐ **[Loop Habit Tracker](https://github.com/iSoron/uhabits)** - Habit Tracker
|
||||
* ⭐ **[Table Habit](https://github.com/FriesI23/mhabit)** - Habit Tracker
|
||||
* [StayFree](https://stayfreeapps.com/) - Digital Productivity Tracker / App Blocker
|
||||
* [Folksable](https://folksable.com/) - Social Habit Tracker
|
||||
* [Loop Habit Tracker](https://github.com/iSoron/uhabits) - Habit Tracker
|
||||
* [HabitBuilder](https://github.com/ofalvai/HabitBuilder) - Habit Tracker
|
||||
* [Grit](https://github.com/shub39/Grit) - Habit Tracker
|
||||
* [moreDays](https://gitlab.com/wuapps/moredays) - Habit Tracker
|
||||
|
|
@ -654,7 +650,7 @@
|
|||
* [Android-Mock-Location](https://github.com/warren-bank/Android-Mock-Location) or [GPS JoyStick Guide](http://gpsjoystick.theappninjas.com/faq/) (root) - Fake GPS Location
|
||||
* [MetaRadar](https://github.com/Semper-Viventem/MetaRadar) - Track Devices Following You
|
||||
* [WTMP](https://play.google.com/store/apps/details?id=com.wtmp.svdsoftware) - Detect When Phone is Touched
|
||||
* [LockWatch](https://bloketech.com/lockwatch) or [CrookCatcher](https://www.crookcatcher.app/) - Locate / Recover Stolen Phone
|
||||
* [LockWatch](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) or [CrookCatcher](https://www.crookcatcher.app/) - Locate / Recover Stolen Phone
|
||||
* [Alpi Maps](https://github.com/Akylas/alpimaps) - Offline Maps
|
||||
* [LavSeeker](https://github.com/woheller69/lavatories) - Public Toilet Map
|
||||
* [Transportr](https://transportr.app/) - Public Transport Assistant
|
||||
|
|
@ -670,11 +666,11 @@
|
|||
* ⭐ **[Breezy Weather](https://github.com/breezy-weather/breezy-weather)**
|
||||
* ⭐ **[OpenWeather](https://play.google.com/store/apps/details?id=uk.co.openweather)**
|
||||
* [OSS Weather](https://github.com/Akylas/oss-weather)
|
||||
* [AccuWeather](https://app.accuweather.com/app-download) / [Extra Features](https://rentry.co/FMHYB64#accuweather)
|
||||
* [AccuWeather](https://app.accuweather.com/app-download) / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search)
|
||||
* [Rain](https://github.com/DarkMooNight/Rain)
|
||||
* [Weawow](https://play.google.com/store/apps/details?id=com.weawow)
|
||||
* [KWeather](https://invent.kde.org/utilities/kweather)
|
||||
* [Meteored](https://rentry.co/FMHYB64#meteored)
|
||||
* [Meteored](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search)
|
||||
* [Overmorrow](https://play.google.com/store/apps/details?id=com.marotidev.Overmorrow)
|
||||
* [Bura](https://github.com/davidtakac/bura)
|
||||
* [omWeather](https://github.com/woheller69/omweather)
|
||||
|
|
@ -682,23 +678,22 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Android Emulators
|
||||
# ► Emulators
|
||||
|
||||
***
|
||||
|
||||
## ▷ Emulators on Android
|
||||
|
||||
* 🌐 **[Emulators on Android](https://emulation.gametechwiki.com/index.php/Emulators_on_Android)** / [Frontends](https://emulation.gametechwiki.com/index.php/Emulators_on_Android#Launcher_Frontends)
|
||||
* 🌐 **[GSI List](https://github.com/TrebleDroid/treble_experimentations/wiki/Generic-System-Image-(GSI)-list)** - Generic System Image Index / [GSI Updates](https://t.me/GsiUpdate)
|
||||
* 🌐 **[EmuReady](https://www.emuready.com/)** - Mobile Game Emulation Compatibility / Info / [GitHub](https://github.com/Producdevity/EmuReady)
|
||||
* 🌐 **[EmuReady](https://www.emuready.com/)** - Mobile Game Emulation Compatibility / Info / [Discord](https://discord.gg/CYhCzApXav) / [GitHub](https://github.com/Producdevity/EmuReady)
|
||||
* ⭐ **[Termux](https://termux.dev/)** - Terminal Emulator / [Matrix](https://matrix.to/#/#Termux:matrix.org) / [Subreddit](https://www.reddit.com/r/termux) / [Telegram](https://telegram.me/termux24x7) / [Discord](https://discord.gg/HXpF69X) / [GitHub](https://github.com/termux/)
|
||||
* ⭐ **Termux Tools** - [YT-DL](https://github.com/khansaad1275/Termux-YTD) / [GUI](https://github.com/termux/termux-gui) / [Beautify](https://github.com/mayTermux/myTermux)
|
||||
* [Box64Droid](https://github.com/Ilya114/Box64Droid) - Windows Emulator on Android
|
||||
* [JoiPlay](https://joiplay.net/) - RPG Maker Game Interpreter & more
|
||||
* [Limbo](https://github.com/limboemu/limbo) or [TermOne Plus](https://termoneplus.com/) - Windows Emulator on Android / Terminal Emulators / OS Environments
|
||||
* [Ubuntu on Android](https://docs.udroid.org/) - Ubuntu Emulator / [GitHub](https://github.com/RandomCoderOrg/ubuntu-on-android)
|
||||
* [r/EmulationOnAndroid](https://www.reddit.com/r/emulationonandroid) - Android Game Emulation Subreddit
|
||||
* [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
|
||||
* [AdrenoToolsDrivers](https://github.com/K11MCH1/AdrenoToolsDrivers) - Adreno Drivers for Android Emulators / [Systemwide](https://github.com/SEGAINDEED/Adreno-ToolsDriversMagisk)
|
||||
* [AdrenoToolsDrivers](https://github.com/K11MCH1/AdrenoToolsDrivers) - Adreno Drivers for Android Emulators
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -708,11 +703,12 @@
|
|||
|
||||
***
|
||||
|
||||
* 🌐 **[Android Emulators](https://emulation.gametechwiki.com/index.php/Android_emulators)** - Android Emulator Index
|
||||
* 🌐 **[Android Emulators](https://emulation.gametechwiki.com/index.php/Android_emulators)** or **[Emulator List](https://platinmods.com/threads/list-of-x86-android-emulators-for-pc.40529/)** - Android Emulator Lists
|
||||
* ↪️ **[Android on Linux](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_android_on_linux)**
|
||||
* ⭐ **[WSABuilds](https://github.com/MustardChef/WSABuilds)** - Windows Subsystem / Pre-built Binaries
|
||||
* ⭐ **[Google Play Games](https://play.google.com/googleplaygames)** - Android Mobile Games on Windows
|
||||
* [MuMuPlayer](https://www.mumuplayer.com/) - Android Emulator
|
||||
* [MSI App Player](https://www.msi.com/Landing/appplayer) - Android Emulator / Debloated Bluestacks
|
||||
* [Docker Android](https://github.com/budtmo/docker-android) - Android on Docker
|
||||
* [Genymotion](https://www.genymotion.com/download/) - Android Emulator
|
||||
* [NoxPlayer](https://www.bignox.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48)
|
||||
|
|
@ -743,7 +739,7 @@
|
|||
* [tTorrent](https://ttorrent.org/) - Torrent Client
|
||||
* [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - 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/FMHYB64#link-1dm)
|
||||
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) - Torrent Client / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) *Search
|
||||
* [Trireme](https://github.com/teal77/trireme) - Deluge Client
|
||||
* [Transdroid](https://www.transdroid.org) - Manage BitTorrent Clients / [F-Droid](https://f-droid.org/packages/org.transdroid.full/) / [GitHub](https://github.com/erickok/transdroid)
|
||||
* [nzb360](https://play.google.com/store/apps/details?id=com.kevinforeman.nzb360) - NZB / Torrent Manager
|
||||
|
|
@ -754,29 +750,29 @@
|
|||
|
||||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)**
|
||||
* ⭐ **[Librera](https://librera.mobi/)** - Ebook Reader
|
||||
* ⭐ **[Moon+ Reader](https://www.moondownload.com/)** - Ebook Reader / [Themes](https://rentry.co/moontheme)
|
||||
* ⭐ **[Legado](https://github.com/gedoor/legado/blob/master/English.md)** - Ebook Reader
|
||||
* ⭐ **[Moon+ Reader](https://www.moondownload.com/)** - Ebook Reader / [Theme Guide](https://claraiscute.neocities.org/Guides/moontheme/), [2](https://claraiscute.pages.dev/Guides/moontheme)
|
||||
* ⭐ **[Legado](https://github.com/gedoor/legado/blob/master/English.md)** or [Legado MD3](https://github.com/HapeLee/legado-with-MD3/releases) - Ebook Reader
|
||||
* ⭐ **[Readera](https://readera.org/)** - Ebook Reader
|
||||
* ⭐ **[Voice](https://voice.woitaschek.de/)** - Audiobook Player / [GitHub](https://github.com/PaulWoitaschek/Voice/)
|
||||
* ⭐ **[Smart Audiobook Player](https://play.google.com/store/apps/details?id=ak.alizandro.smartaudiobookplayer)** - Audiobook Player
|
||||
* [ElevenReader](https://elevenreader.io/) or [ReadWise](https://readwise.io/read) (reset trial) - Book to Audiobook Converters
|
||||
* [Voice](https://github.com/PaulWoitaschek/Voice) - Audiobook Player
|
||||
* [Sirin](https://play.google.com/store/apps/details?id=com.sirin.android) - Audiobook Player
|
||||
* [AudioAnchor](https://github.com/flackbash/AudioAnchor) - Audiobook Player
|
||||
* [PlayBook](https://github.com/Goodwy/PlayBook) - Audiobook Player
|
||||
* [eStories](https://play.google.com/store/apps/details?id=com.estories) - Audiobook Player
|
||||
* [ABS FLutter](https://github.com/Vito0912/abs_flutter) or [Lissen](https://github.com/GrakovNe/lissen-android/) - Self-Hosted Audiobook Server
|
||||
* [Prestigio](https://play.google.com/store/apps/details?id=com.prestigio.ereader) - Ebook Reader
|
||||
* [JellyBook](https://github.com/JellyBookOrg/JellyBook) - Ebook Reader
|
||||
* [Readwise](https://play.google.com/store/apps/details?id=com.readwise) - Ebook Reader
|
||||
* [Chaka](https://github.com/elementdavv/chaka) - Ebook Reader
|
||||
* [Anx Reader](https://anx.anxcye.com/) - Ebook Reader / [GitHub](https://github.com/anxcye/anx-reader)
|
||||
* [eBoox](https://eboox.app/) - Ebook Reader
|
||||
* [Sav PDF Viewer Pro](https://www.savpdfviewer.com) - PDF Reader / [GitHub](https://github.com/Sav22999/sav-pdf-viewer-pro)
|
||||
* [MJ PDF](https://github.com/mudlej/mj_pdf) - PDF Reader
|
||||
* [Fable](https://fable.co/) - Join / Create Bookclubs
|
||||
* [Project Gutenberg](https://github.com/Pool-Of-Tears/Myne) - Free Books
|
||||
* [Myne](https://github.com/Pool-Of-Tears/Myne) - Read Ebooks from Project Gutenberg
|
||||
* [Openreads](https://github.com/mateusz-bak/openreads), [NeverTooManyBooks](https://github.com/tfonteyn/NeverTooManyBooks) or [Basmo](https://basmo.app/) - Book Managers / Trackers
|
||||
* [Wikipedia](https://play.google.com/store/apps/details?id=org.wikipedia) - Wikipedia App / [Beta](https://play.google.com/store/apps/details?id=org.wikipedia.beta)
|
||||
* [WikWok](https://f-droid.org/es/packages/com.github.terrakok.wikwok.androidApp/) - Random Wiki Article Viewer / [Web App](https://terrakok.github.io/WikWok) / [GitHub](https://github.com/terrakok/Wikwok)
|
||||
* [ComicScreen](https://play.google.com/store/apps/details?id=com.viewer.comicscreen) or [Bubble2](https://github.com/edeso/bubble2) - Comic Readers
|
||||
* [LNReader](https://github.com/LNReader/lnreader), [Ranobe](https://github.com/ranobe-org/ranobe) or [IReader](https://ireaderorg.netlify.app/) - Light Novels
|
||||
* [LNReader](https://github.com/LNReader/lnreader) / [Discord](https://discord.com/invite/QdcWN4MD63), [Ranobe](https://github.com/ranobe-org/ranobe) or [IReader](https://ireaderorg.netlify.app/) - Light Novels
|
||||
* [SoftGoods](https://softgoods.app/) - Fanfiction
|
||||
* [Bionic Reading](https://play.google.com/store/apps/details?id=com.bionic_reading_app) - Reading Fixation Points
|
||||
|
||||
|
|
@ -784,12 +780,11 @@
|
|||
|
||||
## ▷ Android Manga
|
||||
|
||||
* ⭐ **[Mihon](https://mihon.app/)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/ext/mihon) / [Endorsed Forks](https://mihon.app/forks/), [2](https://github.com/nekomangaorg/Neko), [3](https://komikku-app.github.io/) / [Discord](https://discord.gg/mihon)
|
||||
* ⭐ **[Kotatsu](https://kotatsu.app/)** - Manga Reader / [Nightly](https://github.com/KotatsuApp/Kotatsu-nightly) / [Telegram](https://t.me/kotatsuapp) / [Discord](https://discord.gg/NNJ5RgVBC5)
|
||||
* ⭐ **[Mihon](https://mihon.app/)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/ext/mihon) / [Endorsed Forks](https://mihon.app/forks/), [2](https://github.com/nekomangaorg/Neko), [3](https://komikku-app.github.io/) / [Avoid Fakes](https://mihon.app/news/2025-11-05-potential-threat) / [Discord](https://discord.gg/mihon)
|
||||
* ⭐ **[Dantotsu](https://discord.com/invite/4HPZ5nAWwM)** - Manga Reader / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Source Code](https://git.rebelonion.dev/rebelonion/Dantotsu/) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh)
|
||||
* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader
|
||||
* [LNReader](https://github.com/LNReader/lnreader) - Manga Reader
|
||||
* [Perfect Viewer](https://rentry.co/FMHYB64#perfect-viewer) - Manga File Viewer
|
||||
* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader / [Discord](https://discord.com/invite/EjfBuYahsP)
|
||||
* [Kotatsu-Redo](https://github.com/Kotatsu-Redo/Kotatsu-Redo) - Manga Reader
|
||||
* [Perfect Viewer](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Manga File Viewer
|
||||
* [Manga Tag](https://www.mangatag.com/) - Manga File Viewer
|
||||
* [Kinoko](https://github.com/gsioteam/kinoko) - Manga File Viewer
|
||||
* [Kitsune](https://github.com/Drumber/Kitsune) - Manga Tracker
|
||||
|
|
@ -801,25 +796,28 @@
|
|||
* ↪️ **[Song Identification Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_song_identification)**
|
||||
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)** - Multi-Site Audio Downloader
|
||||
* ⭐ **[Seeker](https://github.com/jackBonadies/SeekerAndroid)** - Audio Downloader / Soulseek Frontend
|
||||
* ⭐ **[Poweramp Equalizer](https://rentry.co/FMHYB64#poweramp-equalizer)** / [Forum](https://forum.powerampapp.com/), **[RootlessJamesDSP](https://github.com/timschneeb/RootlessJamesDSP)** / [Guide](https://rentry.co/rootlessjamesdsp-guide), [FlowEQ](https://play.google.com/store/apps/details?id=com.floweq.equalizer) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers
|
||||
* ⭐ **[Poweramp Equalizer](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) / [Forum](https://forum.powerampapp.com/), **[RootlessJamesDSP](https://github.com/timschneeb/RootlessJamesDSP)** / [Guide](https://rentry.co/rootlessjamesdsp-guide), [FlowEQ](https://play.google.com/store/apps/details?id=com.floweq.equalizer), [Echo Equalizer](https://play.google.com/store/apps/details?id=com.hapibits.soundlift), [Wavelet](https://play.google.com/store/apps/details?id=com.pittvandewitt.wavelet) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers
|
||||
* ⭐ **[AutomaTag](http://automatag.com/)** - Metadata Organizer
|
||||
* ⭐ **[AudioRelay](https://rentry.co/FMHYB64#audio-relay)** or [Audio Share](https://github.com/mkckr0/audio-share) - Stream Audio Between Devices
|
||||
* ⭐ **[AudioRelay](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) 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
|
||||
* [Modded Spotify](https://rentry.co/FMHYB64#modded-spotify-apk) - Ad-Free Spotify Patchers / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#android-spotify-note)
|
||||
* [Modded Spotify](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Ad-Free Spotify Patchers / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#android-spotify-note)
|
||||
* 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/)
|
||||
* [LibrePods](https://github.com/kavishdevar/librepods) - Add AirPod Features to Android / Root Required
|
||||
* [SongSync](https://github.com/Lambada10/SongSync), [Lyricify](https://github.com/WXRIW/Lyricify-App), [FastLyrics](https://github.com/TecCheck/FastLyrics) or [Rush](https://github.com/shub39/Rush) - Lyrics Apps
|
||||
* [ListenBrainz](https://github.com/metabrainz/listenbrainz-android) or [MusicSearch](https://github.com/lydavid/MusicSearch) - Music Tracking / Rating
|
||||
* [Murglar](https://murglar.app/) - Multi-Site Audio Downloader
|
||||
* [ytdlnis](https://ytdlnis.org/) - Multi-Site Audio Downloader / [GitHub](https://github.com/deniscerri/ytdlnis)
|
||||
* [QobuzDownloaderX-Mobile](https://github.com/JemPH/QobuzDownloaderX-Mobile) - Qobuz Audio Downloader
|
||||
* [Redomi](https://github.com/acszo/Redomi/) - Multi-Platform Streaming
|
||||
* [SoundCloud](https://play.google.com/store/apps/details?id=com.soundcloud.android) - Streaming
|
||||
* [BloomeeTunes](https://github.com/HemantKArya/BloomeeTunes) - Streaming
|
||||
* [Soundbound App](https://soundbound.app/) - Streaming / Download / [Telegram](https://t.me/soundboundofficial)
|
||||
* [SaturnMusic](https://github.com/SaturnMusic/) or [Refreezer](https://github.com/DJDoubleD/refreezer) - Deezer / FLAC / Requires Premium (Firehawk52)
|
||||
* [Saturn](https://github.com/Sheathed/Saturn) or [Refreezer](https://github.com/DJDoubleD/refreezer) - Deezer / FLAC / Requires Premium (Firehawk52)
|
||||
* [Trebel](https://home.trebel.io/) - Streaming
|
||||
* [Deezer](https://play.google.com/store/apps/details?id=deezer.android.app) - Streaming / [Availability](https://support.deezer.com/hc/en-gb/articles/115003749449-List-Of-Countries-Deezer-Is-Available-In)
|
||||
* [Music Time Travel](https://play.google.com/store/apps/details?id=com.zh.musictimetravel) - Music Discovery
|
||||
* [Airbuds](https://play.google.com/store/apps/details?id=com.capp.poplive) - Friends Listening Activity
|
||||
* [Music Speed Changer](https://play.google.com/store/apps/details?id=com.smp.musicspeed) - Audio Multi-Tool / Equalizer
|
||||
* [Super Sound](https://play.google.com/store/apps/details?id=com.tianxingjian.supersound) - Audio Editor
|
||||
* [ViPER4Android](https://github.com/programminghoch10/ViPER4AndroidRepackaged) - Audio Modifier / Equalizer
|
||||
* [audio-analyzer](https://github.com/woheller69/audio-analyzer-for-android) or [Spectroid](https://play.google.com/store/apps/details?id=org.intoorbit.spectrum) - Audio Spectrum Analyzers / Spectrograms
|
||||
|
|
@ -829,12 +827,12 @@
|
|||
|
||||
## ▷ Android Audio Players
|
||||
|
||||
* ⭐ **[Poweramp](https://rentry.co/FMHYB64#poweramp)**
|
||||
* ⭐ **[Poweramp](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search)
|
||||
* ⭐ **[Musicolet Music Player](https://krosbits.in/musicolet/)**
|
||||
* ⭐ **[Namida](https://github.com/namidaco/namida)**
|
||||
* ⭐ **[VLC for Android](https://www.videolan.org/vlc/download-android.html)**
|
||||
* ⭐ **[Foobar2000](https://www.foobar2000.org/android)**
|
||||
* ⭐ **[tempo](https://github.com/eddyizm/tempo)**, [Ultrasonic](https://gitlab.com/ultrasonic/ultrasonic), [SubstreamerApp](https://substreamerapp.com/) - Subsonic Clients / [Audio Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_audio_servers)
|
||||
* ⭐ **[tempus](https://github.com/eddyizm/tempus)**, [Ultrasonic](https://gitlab.com/ultrasonic/ultrasonic), [SubstreamerApp](https://substreamerapp.com/) - Subsonic Clients / [Audio Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_audio_servers)
|
||||
* [AIMP](https://www.aimp.ru/?do=download&os=android)
|
||||
* [Gramophone](https://github.com/AkaneTan/Gramophone)
|
||||
* [Oto Music](https://play.google.com/store/apps/details?id=com.piyush.music)
|
||||
|
|
@ -858,10 +856,11 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[Metrolist](https://github.com/mostafaalagamy/metrolist)**, [OuterTune](https://github.com/OuterTune/OuterTune) or [InnerTune](https://github.com/Malopieds/InnerTune), [2](https://github.com/z-huang/InnerTune) - YouTube Music Players / Innertune Forks / Audio Players
|
||||
* ⭐ **[ReVanced YouTube](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* ⭐ **[Metrolist](https://github.com/mostafaalagamy/metrolist)** or [OuterTune](https://github.com/OuterTune/OuterTune) - YouTube Music Players / Innertune Forks / Audio Players
|
||||
* ⭐ **[ReVanced YouTube](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://bigbudone.com/posts/youtube-revanced-manager-the-best-guide-for-dummies/), [2](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* [Musify](https://gokadzev.github.io/Musify/) - YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify)
|
||||
* [Harmony Music](https://github.com/anandnet/Harmony-Music) - YouTube Music Player
|
||||
* [BloomeeTunes](https://github.com/HemantKArya/BloomeeTunes) - YouTube Music Player
|
||||
* [SimpMusic](https://simpmusic.org/) - YouTube Music Player / [GitHub](https://github.com/maxrave-dev/SimpMusic)
|
||||
* [Namida](https://github.com/namidaco/namida) - YouTube Music Player
|
||||
* [Gyawun](https://github.com/jhelumcorp/gyawun) - YouTube Music Player
|
||||
|
|
@ -882,18 +881,16 @@
|
|||
* [Podbean](https://play.google.com/store/apps/details?id=com.podbean.app.podcast) - Podcast Player
|
||||
* [Podcini](https://github.com/XilinJia/Podcini) - Podcast Player
|
||||
* [Transistor](https://codeberg.org/y20k/transistor) - Radio App
|
||||
* [SiriusXM](https://rentry.co/FMHYB64#siriusxm) - Radio App
|
||||
* [Radio Garden](https://play.google.com/store/apps/details?id=com.jonathanpuckey.radiogarden) - Radio App
|
||||
* [DI.FM](https://play.google.com/store/apps/details?id=com.audioaddict.di) - Electronic Radio
|
||||
* [Nightwave Plaza](https://play.google.com/store/apps/details?id=one.plaza.nightwaveplaza) - Nightwave Radio
|
||||
* [Pool Suite](https://play.google.com/store/apps/details?id=net.poolsuite.mobile) - Summer Radio
|
||||
* [LISTEN.moe](https://github.com/LISTEN-moe/android-app) - J-Pop / K-Pop Radio
|
||||
|
||||
***
|
||||
|
||||
## ▷ Android Relaxation
|
||||
|
||||
* ⭐ **[Calm](https://rentry.co/FMHYB64#calm)** - Relaxation / Sleep App
|
||||
* ⭐ **[Calm](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) - Relaxation / Sleep App
|
||||
* ⭐ **[Medito](https://meditofoundation.org/medito-app)** - Meditation / Sleep Sounds
|
||||
* [Waking Up](https://app.wakingup.com/scholarship) - Sam Harris' Mindfulness Platform
|
||||
* [Rain Sounds](https://sleeprelaxapps.github.io/rainsounds/) - Ambient Rain
|
||||
|
|
@ -916,29 +913,29 @@
|
|||
* ⭐ **[CloudStream](https://github.com/recloudstream/cloudstream)** - Movies / TV / Anime
|
||||
* ⭐ **CloudStream Resources** - [Docs](https://cloudstream.miraheze.org/wiki/Main_Page) / [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](https://rentry.org/cs3-repos), [3](https://cloudstream.miraheze.org/wiki/List_of_extensions) / [Discord](https://discord.com/invite/5Hus6fM)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[HDO Box](https://rentry.co/FMHYB64#hdo-box)** - Movies / TV / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hdo-box-note) / [Telegram](https://t.me/+Ywz5HnhvFHA3Zjk1) / [Discord](https://discord.gg/VPRJVExUVD)
|
||||
* ⭐ **[HDO Box](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) - Movies / TV / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hdo-box-note) / [Telegram](https://t.me/+Ywz5HnhvFHA3Zjk1) / [Discord](https://discord.gg/VPRJVExUVD)
|
||||
* ⭐ **[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
|
||||
* ⭐ **[BubblesUPNP](https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp)** or [Macast](https://xfangfang.github.io/Macast/) - Media Servers
|
||||
* [CineHD](https://cinehd.xyz/) - Movies / TV
|
||||
* [Cinema HD](https://rentry.co/FMHYB64#cinema-hd) - Movies / TV
|
||||
* [Movie HD](https://rentry.co/FMHYB64#movie-hd) - Movies / TV / Requires AMPlayer
|
||||
* [VivaTV](https://rentry.co/FMHYB64#vivatv) - Movies / TV / Requires TPlayer
|
||||
* [OnStream](https://rentry.co/FMHYB64#onstream) - Movies / TV / Requires SPlayer
|
||||
* [Cinema HD](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV
|
||||
* [Movie HD](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires AMPlayer
|
||||
* [VivaTV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires TPlayer
|
||||
* [OnStream](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires SPlayer
|
||||
* [PopcornTime](https://popcorn-time.site) - Torrent Streaming / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn)
|
||||
* [FilmPlus](https://rentry.co/FMHYB64#filmplus) - Movies / TV / Requires BPlayer
|
||||
* [FilmPlus](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires BPlayer
|
||||
* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Plugins](https://discord.com/invite/7yPSPveReu)
|
||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
||||
* [MovieBox](https://rentry.co/FMHYB64#moviebox) - Movies / TV
|
||||
* [MovieBox](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV
|
||||
* [Flixoid](https://rentry.co/FMHYB64#flixoid) - Movies / TV
|
||||
* [BeeTV](https://rentry.co/FMHYB64#beetv) - Movies / TV
|
||||
* [TeaTV](https://rentry.co/FMHYB64#teatv) - Movies / TV / Requires TPlayer
|
||||
* [BeeTV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV
|
||||
* [TeaTV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires TPlayer
|
||||
* [Flixeon](https://flixeon.me/) - Movies / TV
|
||||
* [LokLok](https://loklok.com/download) - Movies / TV
|
||||
* [DigilogTV](https://github.com/aldrinzigmundv/digilogtv) - News TV Channels
|
||||
* [aDrama](https://adrama.app/) - Asian Drama
|
||||
* [Amnis](https://play.google.com/store/apps/details?id=com.amnis) - Stream Videos from Torrents
|
||||
* [MovieDB](https://github.com/WirelessAlien/MovieDB) - TMDB App
|
||||
* [Great Courses Plus Premium](https://rentry.co/FMHYB64#great-courses) - Courses
|
||||
* [Great Courses Plus Premium](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Courses
|
||||
* [Showly](https://github.com/michaldrabik/showly) - TV Trackers
|
||||
|
||||
***
|
||||
|
|
@ -950,10 +947,12 @@
|
|||
* ⭐ **[mpvKt](https://github.com/abdallahmehiz/mpvKt/)** / [Nightly Builds](https://nightly.link/abdallahmehiz/mpvKt/workflows/nightlies/main)
|
||||
* ⭐ **[SyncPlay](https://github.com/yuroyami/syncplay-mobile)** - Video Stream Sync
|
||||
* [Just Player](https://github.com/moneytoo/Player)
|
||||
* [MX Player](https://rentry.co/FMHYB64#mx-player) / [Codec](https://github.com/USBhost/MX_FFmpeg)
|
||||
* [mpvEx](https://mpvex.vercel.app/) / [GitHub](https://github.com/marlboro-advance/mpvEx)
|
||||
* [Night Video Player](https://play.google.com/store/apps/details?id=com.rz.night.player)
|
||||
* [MX Player](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) / [Codec](https://github.com/USBhost/MX_FFmpeg)
|
||||
* [Nova Video Player](https://github.com/nova-video-player/aos-AVP)
|
||||
* [Fermata Media Player](https://github.com/AndreyPavlenko/Fermata)
|
||||
* [Next Player](https://github.com/anilbeesetti/nextplayer)
|
||||
* [Arc Video Player](https://www.arctechstudio.com/)
|
||||
* [Audiofy](https://play.google.com/store/apps/details?id=com.prime.player)
|
||||
* [ScreenStream](https://github.com/dkrivoruchko/ScreenStream) - Cast Device to Screen
|
||||
* [M3UAndroid](https://github.com/oxyroid/M3UAndroid) - Media Player / [Telegram](https://t.me/m3u_android)
|
||||
|
|
@ -966,38 +965,39 @@
|
|||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-mobileapp)**, [2](https://everythingmoe.org/#section-mobileapp) - Anime App Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ⭐ **[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) or [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) - Anime Trackers
|
||||
* ⭐ **[Aniyomi](https://aniyomi.org/)** or [Anikku](https://github.com/komikku-app/anikku) / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Discord](https://discord.gg/F32UjdJZrR)
|
||||
* [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [Discord](https://discord.com/invite/EjfBuYahsP) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [Dantotsu](https://discord.com/invite/4HPZ5nAWwM) / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Source Code](https://git.rebelonion.dev/rebelonion/Dantotsu/) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh)
|
||||
* [AniLab](https://anilab.to/) - Use [DNS Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_dns_adblocking)
|
||||
* [Animiru](https://github.com/Quickdesh/Animiru)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents
|
||||
* [AnimeTV](https://discord.com/invite/zD6URsM4ms)
|
||||
* [Hayase](https://hayase.watch/) - Torrent Streaming App / [Extensions](https://rentry.co/FMHYB64#hayase)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Android Live TV
|
||||
|
||||
* ⭐ **[TiviMate](https://play.google.com/store/apps/details?id=ar.tvplayer.tv)** - IPTV Player
|
||||
* [Perfect IPTV Player](https://rentry.co/FMHYB64#perfect-iptv-player) - IPTV Player
|
||||
* [Perfect IPTV Player](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - IPTV Player
|
||||
* [OTTRun](https://www.ottrun.com/) - IPTV Player
|
||||
* [OTT Navigator](https://rentry.co/FMHYB64#ott-nav) - IPTV Player
|
||||
* [OTT Navigator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_untouched_apks) (search) - IPTV Player
|
||||
* [Tiwee](https://github.com/neffex97/Tiwee) - IPTV Player
|
||||
* [iMPlayer](https://implayer.tv/) - IPTV Player
|
||||
* [IPTV Smarters Pro](https://www.iptvsmarters.com/) - IPTV Player
|
||||
* [M3U8 Downloader](https://play.google.com/store/apps/details?id=com.leavjenn.m3u8downloader) - M3U8 Download App
|
||||
* [Live Sports HD](https://rentry.co/FMHYB64#live-sports-hd) - Sports
|
||||
* [RBTV77](https://rentry.co/FMHYB64#rbtv77) - Sports
|
||||
* [CRICFy](https://rentry.co/FMHYB64#cricfy) - Sports
|
||||
* [Live Sports HD](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Sports
|
||||
* [RBTV77](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Sports
|
||||
* [CRICFy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Sports
|
||||
* [FreeTV](https://github.com/phstudio2/FreeTV) - Live TV App / [GitHub](https://github.com/phstudio2/FreeTV)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Android YouTube Apps
|
||||
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://bigbudone.com/posts/youtube-revanced-manager-the-best-guide-for-dummies/), [2](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) / [Plugins](https://gitlab.futo.org/videostreaming/plugins) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay)
|
||||
* ⭐ **[LibreTube](https://libretube.dev/)** - Ad-Free YouTube
|
||||
* ⭐ **[PipePipe](https://github.com/InfinityLoop1308/PipePipe)** - Ad-Free YouTube / SponsorBlock / ReturnYTDislikes
|
||||
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)**, **[ytdlnis](https://ytdlnis.org/)** / [GitHub](https://github.com/deniscerri/ytdlnis), [YouTubeDL Android](https://github.com/yausername/youtubedl-android), [SnapTube](https://rentry.co/FMHYB64#snaptube) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#snaptube-note) or [SongTube](https://github.com/SongTube/SongTube-App) - Audio / Video Downloaders
|
||||
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)**, **[ytdlnis](https://ytdlnis.org/)** / [GitHub](https://github.com/deniscerri/ytdlnis), [YouTubeDL Android](https://github.com/yausername/youtubedl-android), [SnapTube](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) or [SongTube](https://github.com/SongTube/SongTube-App) - Audio / Video Downloaders
|
||||
* [NewPipe](https://newpipe.net/) - Ad-Free YouTube / [GitHub](https://github.com/TeamNewPipe/NewPipe/)
|
||||
* [FluxTube](https://github.com/mu-fazil-vk/FluxTube) - Ad-Free YouTube
|
||||
* [Litube](https://github.com/HydeYYHH/litube) - Ad-Free YouTube
|
||||
|
|
@ -1045,7 +1045,7 @@
|
|||
* [YT-DLP](https://mcgaritydotme.notion.site/Using-yt-dlp-to-download-YouTube-content-on-an-iPad-16d0f4bcaf524d41a92a0d714d4bd100) or [YouDown](https://apps.apple.com/app/id1487658334) - YouTube Downloaders
|
||||
* [Keynote](https://apps.apple.com/app/id361285480) - Make Presentations
|
||||
* [WiFi Map](https://apps.apple.com/app/wifi-map-esim-internet-finder/id548925969) - Public WiFi Maps
|
||||
* [Quill News Digest](https://quillnewsdigest.com/) - News Aggregation App
|
||||
* [Particle](https://particle.news/) or [Quill News Digest](https://quillnewsdigest.com/) - News Aggregation Apps
|
||||
* [ZCombinator](https://github.com/Livinglist/ZCombinator), [HACK](https://apps.apple.com/app/id1464477788), [Octal](https://apps.apple.com/app/id1308885491), [Hackers](https://apps.apple.com/app/id603503901) or [Hacki](https://apps.apple.com/app/id1602043763) - Tech News / HN Apps
|
||||
* [Fiery Feeds](https://apps.apple.com/app/id1158763303), [Feeeed](https://apps.apple.com/app/id1600187490), [Reeder](https://reederapp.com/) or [NetNewsWire](https://apps.apple.com/app/id1480640210) - RSS Reader
|
||||
* [Read Aloud AI](https://readaloudai.com/ios) - Text to Speech
|
||||
|
|
@ -1081,16 +1081,16 @@
|
|||
* 🌐 **[IPA Apps](https://ipa-apps.me/)**, **[Jailbreaks.app](https://jailbreaks.app/)** or **[Jailbreak Chart](https://docs.google.com/spreadsheets/d/e/2PACX-1vRXcZDsbk2j_AL5YCPnwAp6Ovf5xmLRwNK2wXrwGN__FCbkGWz6Be4l5JyHxEOyogjPnVl51nrDVOcC/pubhtml)** - Jailbreaking Tool Indexes
|
||||
* 🌐 **[Types of Jailbreak](https://ios.cfw.guide/types-of-jailbreak/)** - List of Jailbreak Types
|
||||
* 🌐 **[AppleDB](https://appledb.dev/)** - Apple Device / Software Info Database
|
||||
* 🌐 **[ReJail](https://rejail.ru/)** - Cracked Tweaks Repository
|
||||
* 🌐 **[ReJail](https://rejail.ru/)** or [CyPwn Repo](https://repo.cypwn.xyz/) - Cracked Tweaks Repository
|
||||
* ⭐ **[r/jailbreak Discord](https://discord.com/invite/jb)** - Jailbreaking Community / [Subreddit](https://reddit.com/r/jailbreak)
|
||||
* ⭐ **[r/LegacyJailbreak](https://www.reddit.com/r/LegacyJailbreak/)** - Jailbreak Old Devices (iOS 12 and Below) / [Discord](https://discord.gg/bhDpTAu)
|
||||
* ⭐ **[Legacy-iOS-Kit](https://github.com/LukeZGD/Legacy-iOS-Kit)** - Legacy iOS Devices / Downgrade / Save Blobs / Jailbreak / Bypass
|
||||
* [CFW iOS Guide](https://ios.cfw.guide/) - Jailbreaking Guide
|
||||
* ⭐ **[iOS Jailbreaking Guide](https://ios.cfw.guide/)** - Jailbreaking Guide
|
||||
* [Blackb0x](https://github.com/NSSpiral/Blackb0x) - Apple TV Jailbreak
|
||||
* [Dopamine](https://ellekit.space/dopamine/) - 15.0-16.6.1 Semi-Untethered Jailbreak (A8-A16 & M1-M2) / [Guide](https://ios.cfw.guide/installing-dopamine/) / [GitHub](https://github.com/opa334/Dopamine)
|
||||
* [palera1n](https://palera.in) - 15.0-18.x Semi-Tethered Jailbreak (A8-A11 & T2) / [Guide](https://ios.cfw.guide/installing-palera1n/) / [GitHub](https://github.com/palera1n/palera1n)
|
||||
* [nathanlr](https://ios.cfw.guide/installing-nathanlr/) - 16.5.1-16.6.1 Semi-Untethered Semi-Jailbreak (A12) / [Guide](https://ios.cfw.guide/installing-nathanlr/)
|
||||
* [checkra1n](https://checkra.in/) - 12.0-14.8.1 Semi-Tethered Jailbreak (5s-X) / [Discord](https://discord.gg/NAxRYvysuc)
|
||||
* [checkra1n](https://checkra.in/) - 12.0-14.8.1 Semi-Tethered Jailbreak (5s-X)
|
||||
* [Taurine](https://taurine.app/) - 14-14.8.1 Semi-Untethered Jailbreak
|
||||
* [Odyssey](https://theodyssey.dev/) - 13.0-13.7 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-odyssey/)
|
||||
* [Chimera](https://chimera.coolstar.org/) - 12.0-12.5.7 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-chimera/)
|
||||
|
|
@ -1100,13 +1100,11 @@
|
|||
* [Meridian](https://github.com/PsychoTea/MeridianJB/) - 10.0-10.3.3 Semi-Untethered Jailbreak (A7-A10(X)) / [Guide](https://ios.cfw.guide/installing-meridian-ipa/)
|
||||
* [sockH3lix](https://github.com/SongXiaoXi/sockH3lix) - 10.0-10.3.3 Semi-Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-sockh3lix/)
|
||||
* [doubleH3lix](https://doubleh3lix.tihmstar.net/) - 10.0-10.3.3 Semi-Untethered Jailbreak (A7-A9(X)) / [Guide](https://ios.cfw.guide/installing-doubleh3lix-ipa/) / [GitHub](https://github.com/tihmstar/doubleH3lix)
|
||||
* [kok3shi9](https://dora2ios.web.app/kokeshiJB.html) - 9.2-9.3.6 Semi-Tethered Jailbreak / [Guide](https://ios.cfw.guide/installing-kok3shi9/)
|
||||
* [Phoenix](https://phoenixpwn.com/) - 9.3.5-9.3.6 Semi-Untethered Jailbreak (32-bit Only) / [Guide](https://ios.cfw.guide/installing-phoenix/)
|
||||
* [p0laris](https://p0laris.dev/) - 9.3.5-9.3.6 Untethered Jailbreak (A5-A5X) / [Guide](https://ios.cfw.guide/installing-phoenix/) / [GitHub](https://github.com/p0larisdev/app)
|
||||
* [Pangu933](https://web.archive.org/web/20170214021020/http://dl.pangu.25pp.com/jb/NvwaStone_1.1.ipa) - 9.2-9.3.3 Semi-Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-pangu933/)
|
||||
* [HomeDepot](https://web.archive.org/web/20240121141909/http://wall.supplies/) - 9.1-9.3.4 Semi-Untethered Jailbreak (32-bit Only) / [Guide](https://ios.cfw.guide/installing-homedepot/)
|
||||
* [Pangu9](https://web.archive.org/web/20170702115349/http://en.9.pangu.io/) - 9.0GM-9.1 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-pangu9/)
|
||||
* [Daibutsu](https://dora2ios.web.app/daibutsu.html) - 8.4.1 Untethered Jailbreak (A5-A5X) / [Guide](https://ios.cfw.guide/installing-daibutsu/)
|
||||
* [wtfis](https://github.com/TheRealClarity/wtfis) - 8.0-8.4.1 Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-wtfis/)
|
||||
* [HomeDepot OLD](https://web.archive.org/web/20240121141903/https://wall.supplies/OLD%20iPhone%20HACKED.html) - 8.0-8.4.1 Semi-Untethered Jailbreak (A5-A5X) / [Guide](https://ios.cfw.guide/installing-homedepot/)
|
||||
* [Pangu7](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/41UlRSyS) - 7.1-7.1.2 Untethered Jailbreak / **[Warning](https://rentry.co/77idzr4v)** / [Guide](https://ios.cfw.guide/installing-pangu7/) / [Mac](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/Fo8ihCJa)
|
||||
|
|
@ -1136,13 +1134,13 @@
|
|||
## ▷ iOS Sideloading
|
||||
|
||||
* ⭐ **[Sideloading Guide](https://rentry.co/sideloadingguide)**, [ios.cfw.guide](https://ios.cfw.guide/sideloading-apps/) or [Avieshek's Guide](https://avieshek.wordpress.com/2024/06/11/how-to-sideload-on-ios/) - Sideloading Guides
|
||||
* ⭐ **[TrollStore](https://github.com/opa334/TrollStore)** - Non-Appstore Apps / No-Jailbreak / 14.0-17.0 / [External Repos](https://github.com/TheResonanceTeam/TrollApps/) / [Decrypt](https://github.com/donato-fiore/TrollDecrypt) / [Guide](https://ios.cfw.guide/installing-trollstore/) / [Web App](https://theresonanceteam.github.io/trollapps-web/) / [Discord](https://discord.gg/PrF6XqpGgX)
|
||||
* ⭐ **[TrollStore](https://github.com/opa334/TrollStore)** - Non-Appstore Apps / No-Jailbreak / 14.0-17.0 / [External Repos](https://github.com/TheResonanceTeam/TrollApps/) / [Decrypt](https://github.com/donato-fiore/TrollDecrypt) / [Guide](https://ios.cfw.guide/installing-trollstore/) / [Web App](https://theresonanceteam.github.io/trollapps-web/)
|
||||
* ⭐ **[SideStore](https://sidestore.io/)** - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Limit Bypass Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#limit-bypass-note) / [Guide](https://docs.sidestore.io/docs/advanced/sparserestore)
|
||||
* ⭐ **[Sideloadly](https://sideloadly.io/)** - Non-Jailbreak Sideloading (iOS 7.0 & Above)
|
||||
* ⭐ **[Feather](https://github.com/khcrysalis/Feather)** - Sideloading App (iOS 15.0 & Above) / Requires Apple Dev Certificate
|
||||
* [AltStore Classic](https://altstore.io/) - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Repo Viewer](https://therealfoxster.github.io/altsource-viewer/), [2](https://altsource.by.lao.sb/browse/) / [AltServer](https://github.com/NyaMisty/AltServer-Linux) / [Guide](https://faq.altstore.io/altstore-classic/how-to-install-altstore-windows)
|
||||
* [Ksign](https://github.com/Nyasami/Ksign) - Non-Jailbreak Sideloading
|
||||
* [Sparsebox](https://github.com/khanhduytran0/SparseBox) or [LiveContainer](https://github.com/khanhduytran0/LiveContainer) - Run Apps Without Installing / Bypass Sidestore limits
|
||||
* [LiveContainer](https://github.com/khanhduytran0/LiveContainer) - Run Apps Without Installing / Bypass Sidestore limits
|
||||
* [IPA iBot](https://t.me/ipa_ibot) - Apple Dev Certificate Manager Bot
|
||||
* [BlacklistBeGone](https://github.com/jailbreakdotparty/BlacklistBeGone) - Lift Revoked Certificate Blacklist / iOS 17.0 -> iOS 18.0.1
|
||||
* [SignTools](https://github.com/SignTools/SignTools) - Self-Hosted App Signer
|
||||
|
|
@ -1155,7 +1153,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) (requires patch)
|
||||
* ⭐ **[AdGuard](https://adguard.com/en/adguard-ios/overview.html)** - Adblocker / [Guide](https://rentry.co/sideloadingguide) / [Pro](https://t.me/blatants) (requires patch)
|
||||
* ⭐ **[Orion](https://kagi.com/orion/)** - Adblock Browser w/ Extensions / [Discord](https://discord.gg/Yk8Aj8AxGw)
|
||||
* [uBO Lite Safari](https://apps.apple.com/app/ublock-origin-lite/id6745342698) - Safari Adblocker
|
||||
* [Brave](https://apps.apple.com/app/id1052879175) - Adblock Browser
|
||||
|
|
@ -1192,6 +1190,7 @@
|
|||
* [DriftyWinds](https://raw.githubusercontent.com/driftywinds/driftywinds.github.io/master/AltStore/apps.json) - AltStore App Source
|
||||
* [fnd](https://fnd.io/) - App Store Search
|
||||
* [TrollStore-IPAs](https://github.com/Neoncat-OG/TrollStore-IPAs) - Tweaked Apps
|
||||
* [Moe's App Hub](https://rentry.co/FMHYB64#moes-app) - Tweaked Apps
|
||||
* [PlatinMods](https://platinmods.com/) - Tweaked Apps / Sign-Up Required
|
||||
* [AppTesters](https://repository.apptesters.org/) - Tweaked Apps / [Telegram](https://t.me/AppleTesters)
|
||||
* [IPA Archive](https://stuffed18.github.io/ipa-archive-updated) - Search Engine
|
||||
|
|
@ -1222,7 +1221,7 @@
|
|||
|
||||
## ▷ Social Media Apps
|
||||
|
||||
* ⭐ **[Acorn](https://acorn.blue/)** / [Discord](https://discord.gg/sWzw5GU5RV), [RedditFilter](https://github.com/level3tjg/RedditFilter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#redditfilter-note), [Winston](https://winston.cafe/), [Apollo](https://github.com/Balackburn/Apollo) / [Tweak](https://github.com/JeffreyCA/Apollo-ImprovedCustomApi), [Lurker](https://apps.apple.com/app/lurkur-for-reddit/id6470203216) or [RDX](https://apps.apple.com/app/rdx-for-reddit/id6503479190) - Reddit Clients
|
||||
* ⭐ **[Acorn](https://acorn.blue/)** / [Discord](https://discord.gg/sWzw5GU5RV), [RedditFilter](https://github.com/level3tjg/RedditFilter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#redditfilter-note), [Apollo](https://github.com/Balackburn/Apollo) / [Tweak](https://github.com/JeffreyCA/Apollo-ImprovedCustomApi), [Lurker](https://apps.apple.com/app/lurkur-for-reddit/id6470203216) or [RDX](https://apps.apple.com/app/rdx-for-reddit/id6503479190) - Reddit Clients
|
||||
* ⭐ **[Voyager](https://apps.apple.com/app/id6451429762)** / [GitHub](https://github.com/aeharding/voyager), [Arctic](https://getarctic.app/), [Mlem](https://apps.apple.com/app/id6450543782) / [GitHub](https://github.com/mlemgroup/mlem) or [Thunder](https://thunderapp.dev/) / [GitHub](https://github.com/thunder-app/thunder) - Lemmy Clients
|
||||
* ⭐ **[Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884)**, [Gazzetta](https://apps.apple.com/app/id6738706671) or [Mastodon](https://apps.apple.com/app/id1571998974) - Mastodon Clients
|
||||
* ⭐ **[BHTwitter](https://github.com/BandarHL/BHTwitter)** or [NeoFreeBird](https://github.com/NeoFreeBird/app) - X.com Apps
|
||||
|
|
@ -1247,12 +1246,13 @@
|
|||
* ⭐ **[SpotC++](https://spotc.yodaluca.dev/)** - Ad-Free Spotify / Sideloaded / [GitHub](https://github.com/SpotCompiled/SpotilifeC/)
|
||||
* ⭐ **[EeveeSpotify](https://github.com/whoeevee/EeveeSpotifyReborn)** - Ad-Free Spotify / Sideloaded / [Extension](https://github.com/BillyCurtis/OpenSpotifySafariExtension) / [Telegram](https://t.me/SpotilifeIPAs)
|
||||
* ⭐ **[YTMusicUltimate](https://github.com/dayanch96/YTMusicUltimate)** - Ad-Free / Modded YouTube Music / [Discord](https://discord.gg/BhdUyCbgkZ)
|
||||
* [Cosmos Music Player](https://github.com/clquwu/Cosmos-Music-Player), [VOX](https://apps.apple.com/app/id916215494), [Jewelcase](https://jewelcase.app/), [FooBar](https://apps.apple.com/us/app/foobar2000/id1072807669) or [Melodista](https://apps.apple.com/app/id1293175325) - Audio Players
|
||||
* [Soundcloud](https://soundcloud.com/download) - Streaming / [Tweak](https://github.com/Rov3r/scmusicplus)
|
||||
* [Audiomack](https://apps.apple.com/app/id921765888) - Streaming
|
||||
* [Deezer](https://apps.apple.com/app/id292738169) - Streaming
|
||||
* [Demus](https://demus.app/) - Streaming
|
||||
* [VOX](https://apps.apple.com/app/id916215494), [FooBar](https://apps.apple.com/us/app/foobar2000/id1072807669) or [Melodista](https://apps.apple.com/app/id1293175325) - Audio Player
|
||||
* [GarageBand](https://apps.apple.com/app/id408709785) - Audio Editor / Creator
|
||||
* [Music Speed Changer](https://apps.apple.com/us/app/music-speed-changer/id1595494271) - Audio Multi-Tool / Equalizer
|
||||
* [stats.fm](https://stats.fm/) - Spotify Listening Stats
|
||||
|
||||
***
|
||||
|
|
@ -1306,7 +1306,7 @@
|
|||
## ▷ iOS Anime
|
||||
|
||||
* [Ketsu](https://ketsu.app/download.html) / [Discord](https://discord.gg/gjcy6MQ)
|
||||
* [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [Discord](https://discord.com/invite/EjfBuYahsP) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [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/) or [AniHyou](https://axiel7.github.io/anihyou) / [GitHub](https://github.com/axiel7/AniHyou-android) - AniList Apps
|
||||
|
||||
|
|
@ -1331,16 +1331,16 @@
|
|||
* [Suwatte](https://www.suwatte.app/) - Comic Reader / [Discord](https://discord.gg/8wmkXsT6h5) / [GitHub](https://github.com/suwatte)
|
||||
* [Prologue](https://prologue.audio/) - Audiobooks for Plex
|
||||
* [JellyBook](https://github.com/JellyBookOrg/JellyBook) - Ebook Reader
|
||||
* [Eboox](https://apps.apple.com/app/eboox-fb2-epub-book-reader/id1489172068) - Ebook Reader
|
||||
* [Anx Reader](https://anx.anxcye.com/) - Ebook Reader / [GitHub](https://github.com/anxcye/anx-reader)
|
||||
* [eBoox](https://eboox.app/) - Ebook Reader
|
||||
* [Readwise](https://apps.apple.com/app/readwise/id1476885528) - Ebook Reader
|
||||
* [Cantook](https://apps.apple.com/app/cantook-by-aldiko/id1476410111) - Ebook Reader
|
||||
* [FBReader](https://apps.apple.com/app/fbreader-epub-and-fb2-reader/id1067172178) - Ebook Reader
|
||||
* [SideBooks](https://apps.apple.com/app/id409777225) - PDF Reader
|
||||
* [BookPlayer](https://github.com/TortugaPower/BookPlayer) - Audiobook Player / [Discord](https://discord.gg/MjCUXgU)
|
||||
* [ABS FLutter](https://github.com/Vito0912/abs_flutter) - Self-Hosted Audiobook Server
|
||||
* [Panels](https://apps.apple.com/app/id1236567663) - Comic Reader
|
||||
* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader
|
||||
* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader / [Discord](https://discord.com/invite/EjfBuYahsP)
|
||||
* [Tachimanga](https://tachimanga.app/) - Manga Reader / Freemium / [Discord](https://discord.gg/8aMcdYdaBz)
|
||||
* [ZETSU](https://apps.apple.com/app/id1510161371) - Manga Reader / [Discord](https://discord.com/invite/NzJtsSf7t3)
|
||||
* [Hanami](https://github.com/oolxg/Hanami) - Manga Reader
|
||||
* [Libby](https://apps.apple.com/app/id1076402606) - Digital Library Books / Extend time via Offline or Airplane mode
|
||||
* [Libby](https://apps.apple.com/app/id1076402606) - Digital Library Books / Extend Time via Offline or Airplane Mode
|
||||
|
|
@ -23,7 +23,6 @@
|
|||
* [My Cima](https://my-cima.video/) - Movies / TV
|
||||
* [ArabicFonts](https://arabicfonts.net/) or [ARFonts](https://www.arfonts.net/) - Fonts
|
||||
* [Eternal Dream Arabization](https://www.etrdream.com/) - Modern / Official / Retro Games Arabic Localization
|
||||
* [Ataraxia](https://www.ataraxia-translations.com/) - Visual Novels / Games Arabic Localization
|
||||
|
||||
## ▷ Torrenting / التورنت
|
||||
|
||||
|
|
@ -36,7 +35,7 @@
|
|||
* ⭐ **[FaselHD](https://www.faselhds.xyz/)**, [2](https://web33.faselhd1watch.one/) - Movies / TV / Anime / Sub / 1080p / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [ma3ak](https://ma3ak.top/) - Movies / TV
|
||||
* [ArabLionz](https://arlionztv.ink/) - Movies / TV / Sub / 1080p
|
||||
* [egydead](https://egydead.space/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [egydead](https://egydead.skin/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [FajerShow](https://fajer.show) - Movies / TV / Cartoons / Sub / 720p
|
||||
* [ArabSeed](https://a.asd.homes/main/) - Movies / TV / Anime
|
||||
* [egybest](https://egybest.la/) - Movies / TV / Anime
|
||||
|
|
@ -49,15 +48,18 @@
|
|||
* [witanime](https://witanime.cyou/) - Anime / Sub / 1080p
|
||||
* [okanime](https://okanime.tv/) - Anime / Sub / 1080p / Region Locked
|
||||
* [ristoanime](https://ristoanime.com/) - Anime
|
||||
* [witanime](https://witanime.red/) - Anime
|
||||
* [animeiat](https://ww1.animeiat.tv/) - Anime
|
||||
* [anslayerweb](https://anslayerweb.com/) - Anime
|
||||
* [animezid](https://animezid.net/) - Anime / Cartoons
|
||||
* [Animerco](https://animerco.org/) - Anime / Sub / 1080p
|
||||
* [Animerco](https://gat.animerco.org/) - Anime / Sub / 1080p
|
||||
* [maycima](https://maycima.com/) - Anime
|
||||
* [shahiid](https://shahiid-anime.net/) - Anime / Sub / 720p
|
||||
* [anime3rb](https://anime3rb.com/) - Anime / Sub
|
||||
* [arabic-toons](https://www.arabic-toons.com/) - Cartoons
|
||||
* [Flowind](https://flowind.net/) - Cartoons
|
||||
* [elahmad](http://www.elahmad.com/tv/arabic-channel.php) - Live TV
|
||||
* [Split TV](https://split-tv.co.il/) - Live News / Split Screen
|
||||
* [Bein4kora](https://bein4kora.com/) - Live Football
|
||||
* [koraa-live](https://www.koraa-live.com/) - Live Football
|
||||
* [al-fann](https://www.al-fann.net/) - Music
|
||||
|
|
@ -72,15 +74,16 @@
|
|||
* [EbookSar](https://www.ebooksar.net/) - Books / [Telegram](https://t.me/ebooksar)
|
||||
* [AlarabiMag](https://www.alarabimag.com/) - Books
|
||||
* [Hindawi](https://www.hindawi.org/) - Books
|
||||
* [3kitab](https://3kitab.com/) - Books
|
||||
* [Abjjad](https://www.abjjad.com/) - Books
|
||||
* [GedoLibrary_bot](https://telegram.me/GedoLibrary_bot) - Book Telegram Bot
|
||||
* [3asq](https://3asq.org/) - Manga
|
||||
* [Azoramoon](https://azoramoon.com/) - Manga
|
||||
* [KenManga](https://ar.kenmanga.com/) - Manga
|
||||
* [hijala](https://www.hijala.com/) - Manga / [Discord](https://discord.com/invite/sGTBCDeE2J)
|
||||
* [Aldiwan](https://www.aldiwan.net/) - Poems / [Telegram](https://t.me/AldiwanNet)
|
||||
* [Almaany](https://www.almaany.com/) - Arabic Multilingual Dictionary
|
||||
* [Mo3jam](https://ar.mo3jam.com) - Arabic Colloquial / Slang Dictionary
|
||||
* [Almaany](https://www.almaany.com/) - Multilingual Dictionary
|
||||
* [dohadictionary](https://www.dohadictionary.org/) - Historical Dictionary
|
||||
* [Mo3jam](https://ar.mo3jam.com) - Colloquial / Slang Dictionary
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -100,7 +103,14 @@
|
|||
* [Boimate](https://boimate.com/) - Books
|
||||
* [ebanglalibrary](https://www.ebanglalibrary.com/) - Books
|
||||
* [BengaliEbook](https://www.worldmets.com/) - Books
|
||||
* [Banglabook](https://www.banglabook.org/)
|
||||
* [bengaliebook](https://bengaliebook.com/) - Books
|
||||
* [boierthikana](http://boierthikana.com/) - Books
|
||||
* [banglaclassicbooks](https://banglaclassicbooks.blogspot.com/) - Books
|
||||
* [allbanglaboi](https://allbanglaboi.com/) - Books
|
||||
* [granthagara](https://granthagara.com/) - Books
|
||||
* [bookspointer](https://bookspointer.com/) - Books
|
||||
* [jyotirjagat](https://jyotirjagat.wordpress.com/) - Books
|
||||
* [Banglabook](https://www.banglabook.org/) - Books
|
||||
* [GoBanglaBooks](https://www.gobanglabooks.com/) - Books / Downloads
|
||||
* [SovietBooksinBengali](https://sovietbooksinbengali.blogspot.com/) - Soviet Books
|
||||
* [NCTB](https://nctb.portal.gov.bd/) - NCTB Textbooks of Bangladesh
|
||||
|
|
@ -108,9 +118,9 @@
|
|||
## ▷ Downloading / ডাউনলোডিং
|
||||
|
||||
* [MLSBD](https://mlsbd.co/) - Movies / TV
|
||||
* [ftpbd](http://ftpbd.net/) - Movies / TV / Anime
|
||||
* [MovieDokan](https://moviedokan.my/) - Movies / TV
|
||||
* [JBMovieBD](https://jbmoviebd.shop/) - Movies / TV
|
||||
* [emwbd](https://emwbd.shop/) - Movies / TV
|
||||
* [Bangla Song](https://www.music.com.bd/) - Bangla Song / Music / Radio / MP3
|
||||
* [Bhoot FM](https://bhoot-fm.com/) - Bhoot FM Archive / Paranormal Radio Show
|
||||
|
||||
|
|
@ -119,7 +129,6 @@
|
|||
## ▷ Streaming / স্ট্রিমিং
|
||||
|
||||
* [Fibwatch](https://fibwatch.art/) - Movies / TV
|
||||
* [ftpbd](http://ftpbd.net/) - Movies / TV / Anime
|
||||
* [jadoocinema](https://www.jadoocinema.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
|
||||
***
|
||||
|
|
@ -146,15 +155,17 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Chinese / 汉语方言
|
||||
# ► Chinese / 华语
|
||||
|
||||
* 🌐 **[heji](https://233heji.com/)** or [bajins](https://www.bajins.com/) - Chinese Sites / Tools Indexes
|
||||
* 🌐 **[Awesome GitHub Repo](https://github.com/Wechat-ggGitHub/Awesome-GitHub-Repo)** - Programming Resources Index
|
||||
* 🌐 **[RecTG](https://github.com/jackhawks/rectg)** - Chinese Telegram Groups / Bots
|
||||
* [ixigua.com](https://www.ixigua.com/) - Chinese Alternative to YouTube and TikTok
|
||||
* [Linux Do](https://linux.do/) - Linux Forum
|
||||
* [Arch Linux Concise Guide](https://arch.icekylin.online/) or [ArchlinuxCN](https://archlinuxcn.org/) - Arch Linux Guides
|
||||
* [Diaosi Forum](https://assbbs.com/) - Piracy Discussion Forum
|
||||
* [assrt](https://assrt.net/), [srtku](https://srtku.com/) or [zimuku](https://zimuku.org/) - Subtitles
|
||||
* [Bangumi](https://bangumi.moe/) - Anime Subtitles
|
||||
* [Tool.lu](https://tool.lu/) - Online Tools
|
||||
* [Anti-Ad](https://anti-ad.net/) - Adblock Filters
|
||||
* [GameLoop](https://syzs.qq.com/) - Android Emulator
|
||||
|
|
@ -187,17 +198,18 @@
|
|||
|
||||
***
|
||||
|
||||
* ↪️ **[Anti-Censorship Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_anti-censorship)**
|
||||
* ↪️ **[Anti-Censorship Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_anti-censorship)** / **[Proxy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_proxy)**
|
||||
* ⭐ **[Censordex](https://censordex.fr.to/)** or [Censorship Bypass](https://rentry.co/chinese-censorship-bypass-guide) - Censorship Bypass Guides
|
||||
* [gfwlist](https://github.com/gfwlist/gfwlist) - Blocked Sites List
|
||||
* [r/dumbclub](https://www.reddit.com/r/dumbclub/) - GFW Discussion
|
||||
* [XX-Net](https://xx-net.com/) - GFW VPN / Paid / [GitHub]((https://github.com/XX-net/XX-Net)
|
||||
* [XX-Net](https://xx-net.com/) - GFW VPN / Paid / [GitHub](https://github.com/XX-net/XX-Net)
|
||||
* [New Pac](https://github.com/Alvin9999/new-pac) - Bypass GFW Proxies
|
||||
* [gfw.report](https://gfw.report/) - GFW Information
|
||||
* [GHProxy](https://ghproxy.link/) - GitHub Proxy (not blocked by GFW)
|
||||
* [Accesser](https://github.com/URenko/Accesser/) - SNI RST Solver
|
||||
* [China Firewall Test](https://www.dotcom-tools.com/china-firewall-test), [ChinaFirewallTest](http://www.chinafirewalltest.com/), [BlockedInChina](https://www.comparitech.com/privacy-security-tools/blockedinchina/) or [Chinese Firewall](https://viewdns.info/chinesefirewall/) - Chinese Firewall Blocking Test
|
||||
* [Apple Account Guide](https://zhuanlan.zhihu.com/p/623576755) - How-to Make Apple Account in China
|
||||
* [todaiinews](https://chinese.todaiinews.com/) - Language Learning
|
||||
|
||||
## ▷ Downloading / 下载
|
||||
|
||||
|
|
@ -221,6 +233,8 @@
|
|||
* [XiaZai001](https://xiazai001.org/) - Video / Audio
|
||||
* [dytt8](https://www.dydytt.net) - Video / Anime
|
||||
* [dygang](https://www.dygang.cc/) - Video
|
||||
* [seedhub](https://www.seedhub.cc/) - Video
|
||||
* [btbtla](https://www.btbtla.com/) - Video
|
||||
* [ACG.rip](https://acg.rip/) - Anime / Audio
|
||||
* [MioBT](https://www.miobt.com/) - Anime
|
||||
* [VCB-S](https://vcb-s.com/) - Anime
|
||||
|
|
@ -248,16 +262,17 @@
|
|||
* [xiaoyakankan](https://xiaoyakankan.com/) - Movies / TV / 720p
|
||||
* [IYF](https://www.iyf.tv/) - Movies / TV / Sub / Dub / 720p
|
||||
* [gimytw](https://gimytw.cc/) - Movies / TV / Cartoons / Dub
|
||||
* [viu](https://viu.tv/) - Movies / TV / Free w/ Ads
|
||||
* [hoy](https://hoy.tv/) - Movies / TV / Free w/ Ads
|
||||
* [KokoTV](https://kokotv.me/) - Drama / Sub / Dub / 1080p
|
||||
* [nunuju](https://nunuju.com/) - Drama / Sub / Dub / 1080p
|
||||
* [dramaq](https://dramaq.xyz/) - Drama / Sub / Dub / 1080p
|
||||
* [duanjuhk](https://duanjuhk.com/) - Short Drama / Sub / Dub / 1080p
|
||||
* [Duboku](https://www.duboku.tv/) - TV / Cartoons / 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
|
||||
* [Sakura Animation](http://www.iyinghua.io/) - Anime / Sub / 1080p
|
||||
* [Anime1](https://anime1.me/) - Anime / Sub / 1080p
|
||||
* [dmd77](http://www.dmd77.com/) - Anime / Sub / 1080p
|
||||
* [Myself-BBS](https://myself-bbs.com/) - Anime / Sub / 1080p
|
||||
* [AGE Anime](https://www.agedm.tv/) - Anime / Sub / 1080p
|
||||
* [bimiacg](https://www.bimiacg14.net/) - Anime / Sub / 1080p
|
||||
|
|
@ -286,6 +301,7 @@
|
|||
* [guoxuedashi.net](https://www.guoxuedashi.net/) - Fiction / Non-fiction
|
||||
* [5165.org](https://5165.org/) - Fiction / Nonfiction
|
||||
* [52shuku](https://www.52shuku.vip/) - Books / Light-Novels
|
||||
* [books.l3zc](https://books.l3zc.com/) - Fiction / Non-fiction
|
||||
* [ttkan](https://www.ttkan.co) - Books / Light-Novels
|
||||
* [Piaotian](https://www.piaotia.com/) - Books / Light-Novels
|
||||
* [qqszz](https://www.qqszz.net/) - Books / Light-Novels / Sign-Up Required
|
||||
|
|
@ -332,7 +348,6 @@
|
|||
* [rumanhua](https://rumanhua.com/) - Manga
|
||||
* [mkzhan](https://www.mkzhan.com/) - Manga
|
||||
* [manhuapi](http://www.manhuapi.cc/) - Manga
|
||||
* [sdqirong](https://www.sdqirong.com/) - Manga
|
||||
* [36mh](https://www.36mh.org/) - Manga
|
||||
* [komiic](https://komiic.com/) - Manga
|
||||
* [happymh.com](https://happymh.com/) - Manga
|
||||
|
|
@ -344,7 +359,6 @@
|
|||
* [yibenmanhua](https://www.yibenmanhua.com/) - Manga
|
||||
* [dongmanmanhua](https://www.dongmanmanhua.cn/) - Manga
|
||||
* [2animx](https://www.2animx.com/) - Manga
|
||||
* [cartoonmad](https://www.cartoonmad.com/) - Manga
|
||||
* [baozimh](https://baozimh.one/) - Manhua
|
||||
* [acgn.cc](https://comic.acgn.cc/) - Manga
|
||||
* [Mangabz](https://www.mangabz.com/) - Manga
|
||||
|
|
@ -373,10 +387,14 @@
|
|||
* [Bombuj](https://bombuj.si/) - Movies / TV
|
||||
* [Sledujteto](https://www.sledujteto.cz/) - Movies / TV / Anime / 1080p
|
||||
* [videoserialy](https://videoserialy.to/) - Movies / TV / Anime / 1080p
|
||||
* [PlayMe](https://playme.wtf/) - Movies / TV / Anime / 1080p
|
||||
* [filmbot](https://filmbot.tv/) - Movies / TV / Anime
|
||||
* [Mrkaj](https://mrkaj.si/) - Movies / TV / Anime / 1080p / Region Locked
|
||||
* [uzi](https://uzi.si) - Movies / TV / Anime / Region Locked
|
||||
* [Dupe](https://dupe.cz/) - Movies / TV / Anime / Concerts / 1080p / Region Locked
|
||||
* [uzi](https://uzi.si) - Movies / TV / Anime / Region Locked
|
||||
* [svetserialu](https://svetserialu.io/) - Movies / TV / Anime / 1080p
|
||||
* [sledujfilmy](https://ww.sledujfilmy.io/) or [serialy](https://serialy.sx/) - Movies / TV / Anime / 1080p
|
||||
* [sledujfilmy](https://ww.sledujfilmy.io/) or [serialy](https://sledujserialy.io/) - Movies / TV / Anime / 1080p
|
||||
* [najserialy](https://www.najserialy.io/) - Movies / TV / Anime / 1080p
|
||||
* [Ceskatelevize](https://www.ceskatelevize.cz/ivysilani/) - Movies / TV
|
||||
* [StarStreams](https://starstreams.pro/) - Live Football / Hockey
|
||||
|
|
@ -387,6 +405,7 @@
|
|||
* [xTrance](https://xtrance.info/) - Books / Download / Sign-Up Required
|
||||
* [PDF Books](https://pdfknihy.maxzone.eu/index.html) - Public Domain Books
|
||||
* [databazeknih](https://www.databazeknih.cz/) - Czech Book Database
|
||||
* [eknihovna](https://eknihovna.maxzone.eu/index.html ) - Books
|
||||
* [prirucka](https://prirucka.ujc.cas.cz) or [slovnikcestiny](https://slovnikcestiny.cz/uvod.php) - Dictionaries
|
||||
* [WebArchive](https://webarchiv.cz/) - Documents
|
||||
|
||||
|
|
@ -416,6 +435,7 @@
|
|||
* [Viddla](https://www.viddla.fi/) - Movies / TV / Library Card Required
|
||||
* [TVKaista](https://www.tvkaista.org/) - Finnish IPTV
|
||||
* [Podcast24](https://podcast24.fi/) - Podcasts
|
||||
* [helpotnopat](https://helpotnopat.fi/) - Courses
|
||||
|
||||
## ▷ Reading / Lukeminen
|
||||
|
||||
|
|
@ -426,7 +446,7 @@
|
|||
|
||||
# ► French / Français
|
||||
|
||||
* 🌐 **[FrancePirate Wiki](https://francepirate.gitbook.io/wikitipiak/tipiakeries)** - Piracy Site Mega Thread / [Subreddit](https://www.reddit.com/r/FrancePirate/)
|
||||
* 🌐 **[r/FrancePirate Mega](https://redd.it/1od83o4)** - Piracy Megathread / [Subreddit](https://reddit.com/r/FrancePirate/)
|
||||
* [SubSynchro](https://www.subsynchro.com/), [Sous-Titres](https://www.sous-titres.eu/) or [SubFactory](https://subfactory.fr/) - Subtitles
|
||||
* [Wikiwix Archive](https://archive.wikiwix.com/) - Wikipedia Search
|
||||
* [Tseret](https://tseret.com/) - Game Guides
|
||||
|
|
@ -440,16 +460,15 @@
|
|||
* [Perspective Monde](https://perspective.usherbrooke.ca/) - Datasets / Statistics
|
||||
* [Prix Carburants](https://www.prix-carburants.gouv.fr/) - Gas Prices
|
||||
* [Donnons](https://donnons.org/) - Item Donation
|
||||
* [Rochester LSF](https://projects.lib.rochester.edu/lsf-asl-app/dictionary/), [Signsuisse](https://www.sgb-fss.ch/signsuisse/) or [LSQ](https://lsq-fr.ca/) - French Sign Langauge Dictionaries
|
||||
* [Rochester LSF](https://projects.lib.rochester.edu/lsf-asl-app/dictionary/), [Signsuisse](https://www.sgb-fss.ch/signsuisse/) or [LSQ](https://lsq-fr.ca/) - French Sign Language Dictionaries
|
||||
|
||||
## ▷ Downloading / Téléchargement
|
||||
|
||||
* [WawaCity](https://www.wawacity.diy/) - Movies / TV / Check [Telegram](https://t.me/Wawacity_officiel) if Domain Changes
|
||||
* [WawaCity](https://www.wawacity.irish/) - Movies / TV / Check [Telegram](https://t.me/Wawacityofficiel) if Domain Changes
|
||||
* [MuaDib](https://muaddib-sci-fi.blogspot.com/) - Sci-Fi Movies
|
||||
* [PiratePunk](https://www.pirate-punk.net/) - Punk Music / Radio / Concerts Dates / Forum
|
||||
* [Emurom](https://www.emurom.net/) - Retro ROMs
|
||||
* [Abandonware Magazines](https://www.abandonware-magazines.org/) - Retro Computer / Games Magazines
|
||||
* [French EPs](https://patsouloldies.blogspot.com/) - Classic French Music MP3 (192)
|
||||
* [Abandonware France](https://www.abandonware-france.org/index.php) - Abandonware
|
||||
* [Abandonware Videos](https://www.abandonware-videos.org/) - Retro Game Related Videos
|
||||
|
||||
|
|
@ -462,10 +481,10 @@
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[RgShows](https://www.rgshows.ru/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.ru/) / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||
* ⭐ **[RgShows](https://www.rgshows.ru/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.ru/) / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[Movix](https://www.movix.site/)** - Movies / TV / Anime / [Status](https://movix.website/)
|
||||
* [Darkiworld](https://darkiworld11.com/) - Movies / TV / Anime / [Status](https://t.me/tirexo_officiel)
|
||||
* [xalaflix](https://xalaflix.gg/) - Movies / TV / Anime / Dub / [Status](https://xalaflix.fun/), [2](https://xalaflix.fr/r%C3%A9pertoire.html) / [Discord](https://discord.gg/7myEXg2tQF)
|
||||
* [Darkiworld](https://darkiworld14.com/) - Movies / TV / Anime / [Status](https://t.me/tirexo_officiel)
|
||||
* [xalaflix](https://xalaflix.gg/) - Movies / TV / Anime / Dub / [Status](https://xalaflix.fun/), [2](https://xalaflix.zip/) / [Discord](https://discord.gg/7myEXg2tQF)
|
||||
* [frembed](https://frembed.lat/) - Movies / TV / Anime / Dub / [Status](https://t.me/+gBSyUOO_3D1mZDZk)
|
||||
* [coflix](https://coflix.cc/) - Movies / TV / Anime / [Status](https://t.me/+3i7POlIHqqVmMWMx)
|
||||
* [filmoflix](https://www.filmoflix.is/) - Movies / TV / Anime
|
||||
|
|
@ -477,6 +496,10 @@
|
|||
* [TF1](https://www.tf1.fr/) - Movies / TV / Anime / Live TV / French VPN Required for Some Content
|
||||
* [french-streaming](https://www.french-streaming.tv) - Movies / TV / Anime
|
||||
* [cinestream](https://cinestream.info/) - Movies / TV / Anime
|
||||
* [fs6](https://fs6.lol/) - Movies / TV / Anime
|
||||
* [nightflix](https://nightflix.world/) - Movies / TV / Anime
|
||||
* [flemmix](https://flemmix.mom/) - Movies / TV / Anime / [Mirrors](https://ww1.wiflix-adresses.fun/)
|
||||
* [fstream](https://fstream.info/) - Movies / TV / Anime
|
||||
* [Cinémathèque de Bretagne](https://www.cinematheque-bretagne.bzh/) - Classic / Amateur Movies
|
||||
* [ICI Tou.tv](https://ici.tou.tv/) - Canada Public Broadcaster / Movies / TV / Docs / Cartoons / Sign-Up Required
|
||||
* [Télé-Québec](https://www.telequebec.tv/) - Québec Public Broadcaster / Movies / TV / Docs / Sign-Up Required
|
||||
|
|
@ -492,7 +515,7 @@
|
|||
* [Streaming-integrale](https://streaming-integrale.com/) - Anime Sub / Dub / 1080p
|
||||
* [vostanime](https://ww7.vostanime.fr/) - Anime / Sub / 1080p
|
||||
* [animeko](https://w2.animeko.ws/) - Anime / Sub / 1080p
|
||||
* [anime-sama](https://anime-sama.fr/) - Anime / Sub / 1080p
|
||||
* [anime-sama](https://anime-sama.org/) - Anime / Sub / 1080p
|
||||
* [molotov.tv](https://www.molotov.tv/) - Live TV
|
||||
* [tvradiozap](https://tvradiozap.eu/) - Live TV
|
||||
* [oohquelbut](https://quelbut.me/) - Live Sports
|
||||
|
|
@ -507,7 +530,7 @@
|
|||
* [zone-ebook.com](https://zone-ebook.com/) - Books / Comics / Magazines / Newspapers / Audiobooks
|
||||
* [Nos Livres](https://noslivres.net/) - Public Domain Books
|
||||
* [Audiocite](https://www.audiocite.net/) - Audiobooks
|
||||
* [Origines](https://mangas-origines.fr/) - Manga / Manhwa / Manhua / NSFW / [Discord](https://discord.com/invite/origines)
|
||||
* [Origines](https://mangas-origines.fr/) - Manga / Manhwa / Manhua / NSFW / [Discord](https://discord.gg/77Yz4ZgN)
|
||||
* [Mangadraft](https://www.mangadraft.com/) - Manga / Comics / Webtoons / Light-Novels
|
||||
* [Planete-BD](https://planete-bd.org/) - Manga / Comics
|
||||
* [SushiScan](https://sushiscan.net/) - Manga
|
||||
|
|
@ -526,6 +549,7 @@
|
|||
* [Boerse](https://boerse.am/) - German Data Sharing Discussion Forum
|
||||
* [animexx](https://www.animexx.de/) - German Anime Community
|
||||
* [WiiDatabase](https://wiidatabase.de/) - Nintendo Homebrew
|
||||
* [BetterBahn](https://github.com/l2xu/betterbahn) - Train Changeover App
|
||||
* [F-Online](https://app.f-online.at/) - Austrian Driving License Learning App
|
||||
* [Signsuisse](https://www.sgb-fss.ch/signsuisse/) or [SignDict](https://signdict.org) - German Sign Language Dictionaries
|
||||
|
||||
|
|
@ -555,18 +579,20 @@
|
|||
* ⭐ **[S.TO](https://s.to/)**, [2](https://serienstream.to/) - TV / Anime / Dub / 720p
|
||||
* ⭐ **[FilmPalast](https://filmpalast.to)** - Movies / TV / Dub / 720p
|
||||
* [MegaFilme](https://megafilme.vip/) - Movies / TV
|
||||
* [Cineby](https://www.cineby.app/) - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* [Cineby](https://www.cineby.gd/) - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* [Kinoking](https://kinoking.cc/) - Movies / TV / Anime / Dub / 1080p
|
||||
* [Kinos](https://www.kinos.to/) - Movies / TV / Dub / 720p
|
||||
* [Cine](https://cine.to/) - Movies / TV / Dub / 720p
|
||||
* [Movie4k](https://movie4k.sx/) - Movies / TV / Dub / 720p
|
||||
* [HDFilme](https://hdfilme.food) - Movies / TV / Anime / Dub / 720p
|
||||
* [StreamCloud](https://streamcloud.my) - Movies / TV / 720p
|
||||
* [xCine](https://xcine.click) - Movies / TV / Dub / 720p
|
||||
* [streamkiste.taxi](https://streamkiste.taxi/) - Movies / TV / Dub / 720p
|
||||
* [Einschalten](https://einschalten.in/) - Movies / Dub / 720p
|
||||
* [Haschcon](https://haschcon.com/) - Movies / 720p
|
||||
* [ardmediathek](ttps://www.ardmediathek.de/) - Free w/ Ads
|
||||
* [zdf](https://www.zdf.de/) - Free w/ Ads
|
||||
* [Burning Series](https://bs.to/) - TV / Dub / 720p
|
||||
* [FireAnime](https://fireani.me/) - Anime
|
||||
* [Anime-Loads](https://www.anime-loads.org/) - Anime / Dub / 1080p
|
||||
* [Aniworld](https://aniworld.to) - Anime / Sub / Dub / 720p
|
||||
* [dokustreams](https://dokustreams.de/) or [dctp.tv](https://www.dctp.tv/) - Documentaries
|
||||
|
|
@ -577,7 +603,6 @@
|
|||
* [SRF.CH](https://www.srf.ch/) - Live TV / Sports / Swiss VPN Required
|
||||
* [2ix2](https://www.2ix2.com/) - Live TV
|
||||
* [livestream](https://www.livestream.ad/) - Live TV
|
||||
* [dtvd](https://dtvd.net/) - Live TV
|
||||
* [Zapp](https://github.com/mediathekview/zapp) - Live TV / Android
|
||||
* [Studyflix](https://studyflix.de/) - Courses
|
||||
* [mediathekviewweb](https://mediathekviewweb.de/) - IPTV
|
||||
|
|
@ -593,6 +618,7 @@
|
|||
* [Hoerbuch](https://hoerbuch.us/) - Audiobooks
|
||||
* [Projekt Gutenberg.](https://www.projekt-gutenberg.org/) - Classic German Books
|
||||
* [Sagen](https://www.sagen.at/) - European Ethnology / Folklore
|
||||
* [deutschelyrik](https://www.deutschelyrik.de/) - Poetry
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -616,8 +642,9 @@
|
|||
* [NetNix](https://netnix.tv/) - Live TV
|
||||
* [stokourbeti](https://stokourbeti.online/) - Live Sports
|
||||
* [GreekSport](https://greeksport.beer/) - Live Sports
|
||||
* [SportOnTV](https://sportontv.xyz/) - Live Sports / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [Foothubhd](https://foothubhd.online/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC)
|
||||
* [SportOnTV](https://sportontv.biz/) - Live Sports / [Mirrors](https://sotproxy.ext.io/) / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [Foothubhd](https://foothubhd.info/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC)
|
||||
* [greekdocumentaries2](https://greekdocumentaries2.blogspot.com/) - Documentaries
|
||||
* [Live24](https://live24.gr/) or [e-Radio](https://www.e-radio.gr/) - Radio
|
||||
* [Subs4series](https://www.subs4series.com/), [greeksubs](https://greeksubs.net) or [subs4free](https://www.subs4free.club/) - Greek Subtitles
|
||||
|
||||
|
|
@ -647,7 +674,7 @@
|
|||
* [AnimeBlood](https://animebloodsub.net/) - Anime / Download / Sub
|
||||
* [ultsub](https://ultsub.co.il/) - Anime / Sub / [Telegram](https://t.me/UltSub) / [Discord](https://discord.gg/4Bc8b2W)
|
||||
|
||||
## Reading
|
||||
## ▷ Reading / קרוא
|
||||
|
||||
* [mangashelf](https://mangashelf.co.il/) - Manga
|
||||
|
||||
|
|
@ -670,7 +697,6 @@
|
|||
|
||||
## ▷ Torrenting / Torrentezés
|
||||
|
||||
* [iTorrent](https://itorrent.ws/) - Movies / TV / Sub / Dub / 1080p / 720p / No-signup
|
||||
* [HunTorrent](https://huntorrent.org/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [TorrentEmpire](https://torrent-empire.me/) - Torrent Discussion
|
||||
|
||||
|
|
@ -686,22 +712,21 @@
|
|||
|
||||
## ▷ Downloading
|
||||
|
||||
* ⭐ **[VegaMovies](https://vegamovies.gmbh/)**, [2](https://moviesflix.ad/) - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[VegaMovies](https://vegamovies.gripe/)**, [2](https://moviesflix.ad/) - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[UHDMovies](https://modlist.in/?type=uhdmovies)** - Movies / 4K
|
||||
* ⭐ **[MkvCinemas](https://mkvcinemas.moi/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K
|
||||
* ⭐ **[HDHub4u](https://hdhublist.com/?re=hdhub)** - Movies / TV / 1080p / [Telegram](https://hdhub4u.frl/join-our-group/)
|
||||
* ⭐ **[MoviesMod](https://moviesmod.cafe/)** - Movies / TV / Sub / Dub / 1080p / [Bypass](https://greasyfork.org/en/scripts/474747)
|
||||
* ⭐ **[HDHub4u](https://hdhub4u.gd/)** - Movies / TV / 1080p
|
||||
* ⭐ **[MoviesMod](https://moviesmod.plus/)** - Movies / TV / Sub / Dub / 1080p / [Bypass](https://greasyfork.org/en/scripts/474747)
|
||||
* ⭐ **[SD Toons](https://sdtoons.in/category/cartoon/)** - Movies / TV / Anime / 1080p / Some NSFW
|
||||
* ⭐ **[ToonWorld4All](https://toonworld4all.me/)** - Anime / Cartoon / Geoblocked
|
||||
* ⭐ **[AToZ Cartoonist](https://atozcartoonist.me/)** - Cartoons / Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/ZUW8yzDutd)
|
||||
* ⭐ **[AToZ Cartoonist](https://atozcartoonist.me/)** - Cartoons / Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/zxFrtqBHHx)
|
||||
* ⭐ **[ToonsHub](https://www.toonshub.xyz/)** - Anime / Dub / 1080p / [Telegram](https://t.me/s/toonshubupdates) / [Discord](https://dsc.gg/toonshub)
|
||||
* ⭐ **[Free Lossless Desi Music](https://hindi-lossless.blogspot.com/)** - Music / FLAC
|
||||
* ⭐ **[Tamil Blasters](https://www.1tamilblasters.yachts/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.vc/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.farm/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [The One Piece](https://m.flixindia.xyz/) - Movie / TV / Anime / [Telegram](https://telegram.me/TheOnePieceUpdates)
|
||||
* [9xFlix](https://www.9xflix.me/) - Movies / TV / Anime
|
||||
* [Bollyflix](https://bollyflix.army/) - 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://ssrmovies.onl/telegram/)
|
||||
* [Bollyflix](https://bollyflix.vet/) - Movies / TV / Anime
|
||||
* [SSR Movies](https://ssrmovies.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [DownloadHub](https://downloadhub.boston/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [MkvMoviesPoint](https://mkvmoviespoint.cool/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.me/mkvpoint1)
|
||||
* [MKV Mad](https://mkvmad.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
|
|
@ -710,15 +735,16 @@
|
|||
* [9kmovies](https://9kmovies.solar/m/) - Movies / TV / 1080p
|
||||
* [emwbd](https://www.emwbd.com/) - Movies / TV / 1080p
|
||||
* [FiberMovies](https://fibermovies.beer/) - Movies / TV / 1080p
|
||||
* [Cinemalux](https://cinemalux.store/) - Movies / TV / 1080p
|
||||
* [Cinemalux](https://cinemalux.zip/) - Movies / TV / 1080p
|
||||
* [ProtonMovies](https://m2.protonmovies.top/) - Movies / TV
|
||||
* [OlaMovies](https://olamovies.top/) - Movies / TV / Sub / Dub / 1080p / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Chromium Required
|
||||
* [isaiDub](https://rentry.co/FMHYB64#isaidub) - Movies / TV / 720p
|
||||
* [OlaMovies](https://new1.olamovies.onl/) - Movies / TV / Sub / Dub / 1080p / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [Fojik](https://fojik.site/) - Movies
|
||||
* [MoviesFD](https://moviesfd.vip/) - Movies / Sub / Dub / 1080p
|
||||
* [Paidnaija](https://paidnaija.net/) - Movies / Sub / 720p / [Telegram](https://t.me/joinchat/E9cst-5oQDA5MzRk)
|
||||
* [mkvAnime](https://ww1.mkvanime.mov/) - Movies / Shows / Anime / Sub / Dub / 1080p
|
||||
* [MKVHub](https://www.mkvhub.hair/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/+lTty7fOB6I4yM2M5)
|
||||
* [MoviesNation](https://movies.dog/), [2](https://moviesnation.party/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/+O88huh3QZ2k2Yjc9)
|
||||
* [MoviesNation](https://moviesnation.party/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/+O88huh3QZ2k2Yjc9)
|
||||
* [DesireMovies](https://desiremovies.my/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [KatDrama](https://katdrama.com/) - Korean Drama
|
||||
* [AnimeAcademy](https://animeacademy.in/) - Anime / Sub / Dub / 1080p
|
||||
|
|
@ -731,26 +757,26 @@
|
|||
|
||||
## ▷ Torrenting
|
||||
|
||||
* ⭐ **[Tamil Blasters](https://www.1tamilblasters.yachts/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.vc/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.farm/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)** - Hindi-Dub Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* ⭐ **[HydraHD](https://hydrahd.sh/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* ⭐ **[RgShows](https://www.rgshows.ru/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.ru/) / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||
* ⭐ **[ToonStream](https://toonstream.love/)** - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[Cineby](https://www.cineby.gd/)** - Hindi-Dub Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[HydraHD](https://hydrahd.com/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* ⭐ **[RgShows](https://www.rgshows.ru/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.ru/) / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[ToonStream](https://toonstream.world/)** - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[Anime World India](https://watchanimeworld.in/)**, [2](https://animesalt.cc/) - Anime
|
||||
* ⭐ **[MultiMovies](https://multimovies.guru)** - Movies / TV / .guru Always Redirects to Main
|
||||
* [Tamil Blasters](https://www.1tamilblasters.yachts/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [TamilMV](https://www.1tamilmv.vc/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [TamilMV](https://www.1tamilmv.farm/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [Einthusan](https://einthusan.tv/) - Movies / 1080p
|
||||
* [saicord](https://saicord.com/hi/) - Movies / TV
|
||||
* [dulourd](https://www.dulourd.boo/) - Movies / TV
|
||||
* [TamilCrow](https://www.1tamilcrow.net/) - Tamil Movies / TV / Dub / 720p / 1080p
|
||||
* [CinemaOS](https://cinemaos.live/), [2](https://cinemaos.tech/), [3](https://cinemaos.me/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/38yFnFCJnA)
|
||||
* [TamilGun](https://tamilgun.group/) - Tamil Movies / TV / Dub / 720p / 1080p
|
||||
* [tamilbulb](https://tamilbulb.world/) - Tamil Movie / TV
|
||||
* [TamilDhool](https://www.tamildhool.net/) - Tamil TV Shows / TV Serials / 720p / 1080p
|
||||
* [tamilpirates](https://tamilpirates.icu/) - Tamil & Indian languages Movies / TV / Dub / 720p / 1080p
|
||||
* [TamilToon](https://tamiltoon.net/) - Tamil / Telugu / Hindi / English / Cartoons / Anime
|
||||
* [MiniTV](https://www.amazon.in/minitv) - Movies / TV / Sub / 1080p
|
||||
* [HindiMovie](https://m.vk.com/hindimovie) - Movies / Dub / 1080p
|
||||
* [Cinemaluxe](https://cinemaluxe.sbs/) - Movies / TV / Anime
|
||||
|
|
@ -763,8 +789,14 @@
|
|||
* [Cloudy](https://cloudy.pk/) - Movies / TV / Cartoons / Sub / Dub / 720p / [Telegram](https://t.me/cloudypkmovies)
|
||||
* [HindiPix](https://hindipix.com/) - Movies / TV / Dub / 720pp
|
||||
* [IndianCine](https://indiancine.ma/) - Indian Short / Classic Movies
|
||||
* [Kartoons](https://kartoons.fun/) - Anime / Cartoons
|
||||
* [mxplayer](https://www.mxplayer.in) - Movies
|
||||
* [Desi Serials](https://www.desi-serials.to/) - TV
|
||||
* [desitv](https://watch.desitv.to/) - TV
|
||||
* [DistroTV](https://distro.tv/) - Live TV
|
||||
* [crickmail](https://crickmail.pages.dev/channel-13) - Live Cricket
|
||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV / Android App
|
||||
* [MovieBox](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV
|
||||
* [Indian IPTV App](https://github.com/kananinirav/Indian-IPTV-App) - IPTV Android App
|
||||
* [kukufm.com](https://kukufm.com/) - Podcasts / Radio / Audiobooks
|
||||
* [OnlineFMRadio](https://www.onlinefmradio.in/) - Radio
|
||||
|
|
@ -805,23 +837,22 @@
|
|||
* ⭐ **[sontolfilm](https://sontolmovie.xyz/)** - Movies / TV / Anime
|
||||
* [ngefilm21](https://www.ngefilm21.pw/) - Movies / TV / Anime
|
||||
* [baladfilm](https://tv4.baladfilm.asia/) - Movies / TV
|
||||
* [idlixku](https://idlix.net/) - Movies / TV
|
||||
* [klikxxi](https://klikxxi.art/), [2](https://www.klikxxi.com/) - Movies / TV
|
||||
* [MyNimeku](https://www.mynimeku.com/) - Anime / Sub / 1080p
|
||||
* [anoBoy](https://ww1.anoboy.app/) - Anime / Sub / 1080p
|
||||
* [Anoboye](https://anoboye.com/) - Anime / Sub
|
||||
* [Samehadaku](https://samehadaku.care/) - Anime / Sub / 1080p / [Telegram](https://t.me/samehadaku_care)
|
||||
* [Best Release](https://best-release.koisuru.web.id/) - Anime Release Info
|
||||
* [Irama Nusantara](https://www.iramanusantara.org/en) - Music
|
||||
|
||||
## ▷ Reading / Membaca
|
||||
|
||||
* [ManhwaIndo](https://manhwaindo.net/) - Manga
|
||||
* [Komiku](https://komiku.id/) - Manga
|
||||
* [Komikcast](https://komikcast02.com/) - Manga
|
||||
* [maid.my](https://www.maid.my.id/) - Manga
|
||||
* [BacaLightNovel](https://bacalightnovel.co/) - Light Novels
|
||||
* [Sakuranovel](https://sakuranovel.id/) - Light Novels
|
||||
* [langka](https://langka.vercel.app/) or [catatannusantara](https://www.catatannusantara.com/pustaka) - History Books
|
||||
* [catatannusantara](https://www.catatannusantara.com/pustaka) - History Books
|
||||
* [sastra](https://www.sastra.org/) - History Wiki
|
||||
|
||||
***
|
||||
|
|
@ -829,12 +860,14 @@
|
|||
# ► Italian / Italiano
|
||||
|
||||
* 🌐 **[The Italian Corsairs](https://rentry.co/the-italian-corsairs)** - Piracy Sites List
|
||||
* [Raiscuola](https://www.raiscuola.rai.it/italianoperstranieri) - Italian Language Learning
|
||||
* [Signsuisse](https://www.sgb-fss.ch/signsuisse/) - Italian Sign Language Dictionary
|
||||
|
||||
## ▷ Downloading / Scaricare
|
||||
|
||||
* [OverDay](https://overday.org/) - Courses / Books / [Mirrors](https://justpaste.it/OVERPOSTING) / [2](https://filecrypt.co/Container/B25EED8329.html) / [Telegram](https://t.me/Overposting1)
|
||||
* [HD4Me](https://hd4me.net/) - Movies / TV / Sub / 720p
|
||||
* [Ipersphera](https://www.ipersphera.com/) - Movies / TV / Sub
|
||||
* [XDCC Mule](https://www.xdccmule.org/) - IRC Download Search
|
||||
|
||||
## ▷ Torrenting
|
||||
|
|
@ -845,9 +878,10 @@
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* [StreamingCommunity](https://streamingcommunityz.video/) - Movies / TV / 1080p / [Status](https://telegra.ph/Link-Aggiornato-StreamingCommunity-09-29)
|
||||
* [Altadefinizione](https://altadefinizionegratis.love/) - Movies / Dub / 1080p / [Status](https://telegra.ph/Link-Aggiornato-Altadefinizione-08-07) / [Telegram](https://t.me/+x_9jyFBbYBpkYTRi)
|
||||
* [CB01](https://cb01net.fun/), [2](https://cb01.uno) - Movies / TV / Dub / 1080p / [Status](https://cineblog01.red/) / [Telegram](https://t.me/s/cb01_nuovo_indirizzo_ufficiale)
|
||||
* [Cinezo](https://www.cinezo.net/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [StreamingCommunity](https://streamingcommunityz.me/) - Movies / TV / 1080p / [Status](https://telegra.ph/Link-Aggiornato-StreamingCommunity-09-29)
|
||||
* [Altadefinizione](https://altadefinizione.ist/) - Movies / Dub / 1080p / [Status](https://telegra.ph/Link-Aggiornato-Altadefinizione-08-07) / [Telegram](https://t.me/+x_9jyFBbYBpkYTRi)
|
||||
* [CB01](https://cb01net.site/), [2](https://cb01.uno) - Movies / TV / Dub / 1080p / [Status](https://cineblog01.red/) / [Telegram](https://t.me/s/cb01_nuovo_indirizzo_ufficiale)
|
||||
* [CasaCinema](https://casacinema.lat/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [Mediaset Infinity](https://mediasetinfinity.mediaset.it/) - Live TV / Movies / TV / Documentaries / Radio / Dub / Italian VPN Required / Sign-Up Unlocks Extra Features
|
||||
* [RaiPlay](https://www.raiplay.it/) - Live TV / Movies / TV / Dub / Italian VPN Required / Sign-Up Unlocks Channel History
|
||||
|
|
@ -858,7 +892,7 @@
|
|||
* [Toonitalia](https://toonitalia.xyz/) - TV / Anime / Sub / Dub
|
||||
* [Arcoiris TV](https://www.arcoiris.tv/) - Italian TV / 720p
|
||||
* [hattrick](https://hattrick.ws/) - Live Football
|
||||
* [Kodi On Demand](https://guruhitech.com/kodi-on-demand-kod-kodi-add-on-tutte-le-info/) - Streaming Kodi Addon
|
||||
* [tream4Me](https://guruhitech.com/kodi-on-demand-e-rinato-ora-si-chiama-stream4me-kodi/) - Streaming Kodi Addon
|
||||
* [Ovovideo](http://ovovideo.com/) - Video Encyclopedia
|
||||
* [Raiplay Sound](https://www.raiplaysound.it/) - Podcasts / Radio
|
||||
|
||||
|
|
@ -891,7 +925,6 @@
|
|||
|
||||
* ⭐ **[TheMoeWay](https://learnjapanese.moe/)** - Japanese Media / [Discord](https://discord.gg/nhqjydaR8j)
|
||||
* [Akiba-Online](https://www.akiba-online.com/) - Video / Audio / Comics / NSFW / 1080p
|
||||
* [Asia Media Blog](https://asiamediablog.com/) - Video / Audio / Magazines / NSFW / 1080p
|
||||
* [Sukidesuost](https://sukidesuost.info/) - Music / MP3 / FLAC
|
||||
* [JPop Singles](https://www.jpopsingles.eu/) - Music / MP3 / FLAC
|
||||
* [Doujin Cafe (Discord)](https://discord.gg/doujincafe) - Music / MP3 / FLAC
|
||||
|
|
@ -900,10 +933,6 @@
|
|||
* [J-pop Music Download](https://jpop.xyz/) - Music / MP3 / FLAC
|
||||
* [Perfect Dark](https://perfectdark.benri-tool.net/) - P2P App
|
||||
|
||||
## ▷ Torrenting / トレント
|
||||
|
||||
* [Bangumi](https://bangumi.moe/) - Anime
|
||||
|
||||
## ▷ Streaming / ストリーミング
|
||||
|
||||
* [sudatchi](https://sudatchi.com/) - Anime
|
||||
|
|
@ -912,6 +941,7 @@
|
|||
* [Japanese Animated Film Classics](https://animation.filmarchives.jp/index.html) - Japanese Animation Archive
|
||||
* [Abema](https://abema.tv/) - Live TV
|
||||
* [utako](https://web.utako.moe/) - Live TV
|
||||
* [iptv-jp](https://rentry.co/fmhyb64#iptv-playlists) - Japanese IPTV Resources
|
||||
* [National Film Archive of Japan](https://meiji.filmarchives.jp/) - Japanese Movie Archive
|
||||
* [SimulRadio](https://simulradio.info/) - Radio
|
||||
* [Kagakueizo](https://www.kagakueizo.org/) - Science Documentaries
|
||||
|
|
@ -919,9 +949,9 @@
|
|||
|
||||
## ▷ Reading / 読書
|
||||
|
||||
* 🌐 **[Rawmangaz](https://rentry.co/rawmangaz)** - List of Raw Manga Sites
|
||||
* 🌐 **[Rawmangaz](https://claraiscute.neocities.org/Guides/rawmangaz/)**, [2](https://claraiscute.pages.dev/Guides/rawmangaz/) - List of Raw Manga Sites
|
||||
* [senmanga](https://raw.senmanga.com/) - Manga / Novels / NSFW
|
||||
* [DLRaw](https://dlraw.to/), [2](https://manga-zip.is/), [3](https://manga-zip.tv/) - Manga
|
||||
* [DLRaw](https://dlraw.ac/), [2](https://manga-zip.is/), [3](https://manga-zip.tv/) - Manga
|
||||
* [Raw-Zip](https://raw-zip.com/) - Manga
|
||||
* [MangaZone](https://www.manga-zone.org/) - Manga
|
||||
* [RawCans](https://raw-cans.net/) - Manga
|
||||
|
|
@ -937,12 +967,16 @@
|
|||
* [A-zmanga](https://www.a-zmanga.net/) - Manga
|
||||
* [AsianMediaBlog Manga](https://asiamediablog.com/media/comic/manga/) - Manga
|
||||
* [Comic77.com](https://comic77.com/) - Manga
|
||||
* [mangagoku](https://mangagoku.com/) - Manga
|
||||
* [Comics888](https://comics888.com/) - Manga
|
||||
* [KLManga](https://klz9.com/) - Manga
|
||||
* [mangafree](https://mangafree.me/) - Manga
|
||||
* [LManga](https://www.lmanga.com/) - Manga
|
||||
* [jmanga](https://jmanga.se/) - Manga
|
||||
* [rawfree](https://rawfree.to/) - Manga
|
||||
* [rawkuma](https://rawkuma.net/) - Manga
|
||||
* [raw1001](https://raw1001.net/) - Manga
|
||||
* [gomuraw](https://gomuraw.com/) - Manga / Some NSFW
|
||||
* [mangakoma01](https://mangakoma01.net/) - Manga
|
||||
* [mangakoma](https://mangakoma.net/) - Manga
|
||||
* [rawfree](https://rawfree.me/) - Manga
|
||||
|
|
@ -1046,6 +1080,7 @@
|
|||
* [Anten.ir](https://www.anten.ir/) - Live TV / Sports
|
||||
* [Sepehr](https://sepehrtv.ir/) - Live TV
|
||||
* [ParsaTV](https://www.parsatv.com/) - Live TV
|
||||
* [Split TV](https://split-tv.co.il/) - Live News / Split Screen
|
||||
* [MusicGeek](https://musicgeek.ir/) - Music
|
||||
* [Awesome Persian Podcasts](https://github.com/ashkanRmk/awesome-persian-podcasts) - Podcasts
|
||||
|
||||
|
|
@ -1081,10 +1116,10 @@
|
|||
* ⭐ **[Obejrzyj](https://www.obejrzyj.to/)** - Movies / TV
|
||||
* ⭐ **[OgladajAnime](https://ogladajanime.pl/)** - Anime / Sub / 1080p / [Discord](https://discord.com/invite/XJTq5Ez5Kv)
|
||||
* ⭐ **[Grupa Mirai](https://www.grupa-mirai.pl/)** - Anime / Sub / 1080p / [Discord](https://discord.gg/WyXrp6ZK5J)
|
||||
* [Telewizjada](https://telewizjada.cc/) - Movies / Live TV
|
||||
* [Virpe](https://virpe.cc/) - Movies / TV
|
||||
* [Zerion](https://zerion.cc/) - Movies / TV / Cartoons / Dub / 720p
|
||||
* [Zaluknij](https://zaluknij.cc/) - Movies / TV
|
||||
* [wizja](https://wizja.cc/) - Movies / TV
|
||||
* [Filser](https://filser.cc/) - Movies / TV / Cartoons / Dub / 720p
|
||||
* [Bajeczki24](https://bajeczki24.pl/) - Movies / TV
|
||||
* [Ekino-TV](https://ekino-tv.pl/), [3](https://ekino.sx/), [4](https://ekino.ws/) - Movies / TV / Sub / 720p
|
||||
|
|
@ -1101,6 +1136,7 @@
|
|||
* [Desu-Online](https://desu-online.pl/) - Anime / Sub / 1080p
|
||||
* [Shinden](https://shinden.pl/) - Anime / Sub / 1080p / [Discord](https://discord.gg/xyH5uS6)
|
||||
* [Sport TVP](https://sport.tvp.pl/) - Live Sports
|
||||
* [ogladaj](htps://ogladaj.in/) - Live Sports
|
||||
* [dokumentalne](https://dokumentalne.net/) - Documentaries
|
||||
* [Naikamu](https://naikamu.com/) - Anime Streaming / Android
|
||||
|
||||
|
|
@ -1146,7 +1182,7 @@
|
|||
|
||||
## ▷ Torrenting
|
||||
|
||||
* 🌐 **[Pirataria Trackers](https://pirataria.link/trackers#🔰-➜-trackers-brasileiros)** - Private Tracker Index
|
||||
* 🌐 **[Trackers.md](https://pirataria.link/trackers#🔰-➜-trackers-brasileiros)** - Private Tracker Index
|
||||
* [Rei dos Torrents](https://reidostorrents.com) - Video / Audio / Books
|
||||
* [Download Cult](http://downloadcult.org) - Classic Movies
|
||||
* [Dark Animes](https://darkmahou.org) - Anime
|
||||
|
|
@ -1155,10 +1191,9 @@
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* ⭐ **[Cineby](https://www.cineby.gd/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[Gyn Cursos](https://gyncursos.com.br)**, [Curso em Vídeo](https://www.cursoemvideo.com), [iEstudar Cursos](https://iestudar.com) or [Pensar Cursos](https://www.pensarcursos.com.br) - Courses
|
||||
* [Redecanais](https://redecanais.fi/) - Movies / TV / Anime / Dub / 1080p
|
||||
* [WarezCDN](https://warezcdn.link/) - API for Movies / TV / Anime
|
||||
* [GoFilmes](https://gofilmes.me/m/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [tugaflix](https://tugaflix.best) - Movies / TV / Sub / 1080p
|
||||
* [megafilmeshd50](https://megafilmeshd50.zip/) - Movies / TV
|
||||
|
|
@ -1280,6 +1315,7 @@
|
|||
* [fsonline](https://www3.fsonline.app/) - Movies / TV / Sub
|
||||
* [xfilme](https://xfilme.ro/) - Movies
|
||||
* [telenovelero](https://telenovelero.com/) - TV
|
||||
* [clicksud](https://clicksud.com.in/) - TV
|
||||
* [filmflix](https://filmflix.ro/) - Movies
|
||||
* [Meoo.ro](https://meoo.ro/) - Movies
|
||||
* [vezihd](https://vezihd.ro/) - Movies
|
||||
|
|
@ -1299,7 +1335,7 @@
|
|||
* ⭐ **[РосКомСвобода](https://t.me/roskomsvoboda_discuss)** / [roskomsvoboda](https://t.me/roskomsvoboda) / [rks_org_Bot](https://t.me/rks_org_bot), [ru_tech_talk](https://t.me/ru_tech_talk) or [protocol_vpn](https://t.me/protocol_vpn) - Censorship Discussion Telegrams
|
||||
* [Ru.Board](https://forum.ru-board.com/) - Piracy Discussion Forum
|
||||
* [rublacklist](https://reestr.rublacklist.net/en/) - Blocked Sites List
|
||||
* [DXP](https://dxp.ru/) - Subtitles Tracker
|
||||
* [subtitry](https://subtitry.ru/) or [DXP](https://dxp.ru/) - Subtitles
|
||||
* [RKN Dump Check](https://t.me/u2ckbot) - Censorship Check
|
||||
* [Mail.ru](https://mail.ru/) or [r0.ru](https://r0.ru/) - Search Engines
|
||||
* [Kribrum](https://kribrum.io/search) - Social Media Search Engine
|
||||
|
|
@ -1329,7 +1365,7 @@
|
|||
* [Allmults](https://allmults.org/) - Cartoons / Sub / Dub / 1080p
|
||||
* [z3.fm](https://z3.fm/) - Music / MP3
|
||||
* [tancpol](https://tancpol.net/) - Music / MP3
|
||||
* [MetalArea](https://metalarea.org/) or [MDCORE](https://vk.com/mdcore) - Metal / MP3
|
||||
* [MDCORE](https://vk.com/mdcore) - Metal / MP3
|
||||
* [MDROCK](https://vk.com/mdrock) - Rock / MP3
|
||||
* [KinoSoundtrack](https://www.kinosoundtrack.com/) - Soundtracks / MP3
|
||||
* [Course Hunter](https://coursehunter.net/) or [Sliwbl](https://s1.sliwbl.com/) - Programming Courses
|
||||
|
|
@ -1338,7 +1374,7 @@
|
|||
|
||||
* 🌐 **[toptracker](https://toptracker.ru/)** - Torrent Site List
|
||||
* 🌐 **[UpTracker](https://www.uptracker.ru/)** - Torrent Tracker Index
|
||||
* ⭐ **[RuTracker](https://rutracker.org/)** - Video / Audio / Comics / Magazines / VPN Required / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.net/) - Video / Audio / Comics / Magazines / VPN Required / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* [UZTracker](https://uztracker.net/) - Video / Audio / Books
|
||||
* [krasfs](https://krasfs.ru/) or [torrent.by](https://torrent.by/) - Torrent Search
|
||||
* [rutor](https://rutor.info/) - Video / Audio / Books / ROMs / Magazines
|
||||
|
|
@ -1376,15 +1412,19 @@
|
|||
* [DostFilms](https://dostfilms.site/) - Movies / TV / Anime / Dub / 1080p
|
||||
* [reyohoho](https://reyohoho.github.io/reyohoho/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [kinogoo](https://hd.kinogoo.cc/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [filmix](https://filmix.biz/) - Movies / TV / Anime / 720p
|
||||
* [filmix](https://filmix.my/) - Movies / TV / Anime / 720p
|
||||
* [Kinotochka](https://kinovibe.co/) - Movies / TV / Anime / Dub / 720p
|
||||
* [filmozavr](https://filmozavr.com/) - Movies / TV / Anime / Dub
|
||||
* [turkatv](https://turkatv.online/) - Russian Turkish TV Streaming
|
||||
* [staroetv](https://staroetv.su/) - Retro Russian Streaming
|
||||
* [seasonvar](http://seasonvar.ru/) - TV / Dub / 720p
|
||||
* [gidanime](https://gidanime.tv/) - Anime / Dub / 1080p / [Telegram](https://t.me/GidAnime)
|
||||
* [animang](https://animang.one/) - Anime / Dub / 1080p
|
||||
* [Shiza Project](https://shiza-project.com/) - Anime / Dub / 720p
|
||||
* [AniFilm](https://anifilm.net/) - Anime / Sub / 1080p
|
||||
* [AniLibria](https://anilibria.top/) - Anime / Sub / 1080p
|
||||
* [yummyani](https://site.yummyani.me/) - Anime / Sub / 1080p
|
||||
* [animego](https://animego.me/) - Anime / Sub / 1080p
|
||||
* [Animebuff](https://animebuff.ru/) - Anime / Sub / 1080p
|
||||
* [Animestars](https://animestars.org/) - Anime / Sub / 1080p
|
||||
* [Anidub](https://anidub.pro/) - Anime / Sub / Dub / 1080p / [Telegram](https://t.me/anidubofficial) / [Discord](https://discord.com/invite/QF6Kn99tsu)
|
||||
|
|
@ -1397,17 +1437,23 @@
|
|||
* [Soviet Movies Online](https://sovietmoviesonline.com/) - Soviet Movies / Sub
|
||||
* [VseDoramy](https://vsedoramy.net/) - Asian Drama / Dub / 720p
|
||||
* [Dokonlin](https://www.dokonlin.online/) - Documentaries / Dub / 1080p
|
||||
* [liveam](http://liveam.tv/) - TV
|
||||
* [mult-fan](https://mult-fan.tv/) - Cartoons
|
||||
* [animatsiya](https://animatsiya.net/) - Russian Animation Archive
|
||||
* [TurkishTV](https://turkishtv.co/), [turserial](https://turserial.info/), [KinoTurk](https://kinoturk.net/) or [TurkRu.TV](https://turkrutv.tv/) - Turkish TV w/ Russian Subs
|
||||
* [TVRF](https://tvrf.online/) - Live TV
|
||||
* [Viks](http://ip.viks.tv/) - Live TV
|
||||
* [Viks](http://live.viks.tv/) - Live TV
|
||||
* [Telik](https://telik.top/) - Live TV
|
||||
* [ontivi](https://ip.ontivi.net/) - Live TV
|
||||
* [smotret](https://smotret.tv/) - Live TV
|
||||
* [federal](https://federal.tv/) - Live TV
|
||||
* [RUTube Live](https://rutube.ru/feeds/live/) - Live TV
|
||||
* [televizor24tochka](https://televizor24tochka.ru/tv/) - Live TV
|
||||
* [livestream](https://www.livestream.ad/) - Live TV
|
||||
* [Glaz.tv](https://glaz.tv/) - Live TV
|
||||
* [DomaTV](http://live.domatv.net/) - Live TV
|
||||
* [finttv](https://finttv.in/) - Live Sports
|
||||
* [Anixart](https://anixart-app.com/) - Anime / Android App
|
||||
* [Tancpol](https://tancpol.net/) - Music
|
||||
* [z3.fm](https://z3.fm/) - Music
|
||||
* [E:\\music\\](https://vk.com/e_music) - Music
|
||||
|
|
@ -1430,6 +1476,7 @@
|
|||
* [Twirpx](https://www.twirpx.com/) - Books / Educational
|
||||
* [studmed](https://www.studmed.ru/) - Books / Educational
|
||||
* [alleng](https://www.alleng.org/) - Textbooks
|
||||
* [11klasov](https://go.11klasov.net/) - Textbooks
|
||||
* [rusneb](https://rusneb.ru/) - Books
|
||||
* [obuchalka.org](https://obuchalka.org/) - Books / Homework Solutions
|
||||
* [Filibusta](https://flibusta.site/) - Books
|
||||
|
|
@ -1439,17 +1486,20 @@
|
|||
* [rulit](https://www.rulit.me/) - Books
|
||||
* [bookscafe](https://bookscafe.net/) - Books / Some NSFW
|
||||
* [Litgu.ru](https://litgu.ru/) - Books
|
||||
* [freedomist](https://t.me/freedomist_6ks_bot) - Books / Telegram Bot
|
||||
* [MirKnig.sur](https://mirknig.su/) - Books / Fiction / Nonfiction
|
||||
* [saitknigi](https://ru.sait-knigi.ru/) - Books / Audiobooks
|
||||
* [Litgu.ru](https://litgu.ru/) - Books / Audiobooks
|
||||
* [Fantasy Worlds](https://fantasy-worlds.org/) - Books / Audiobooks
|
||||
* [booktracker](https://booktracker.org/) - Books / Audiobooks / Comics / Magazines / NSFW
|
||||
* [mp3-book](https://mp3-book.com/) - Audiobooks
|
||||
* [AniLabX](https://anilabx.xyz/) - Manga / Comics / Light Novels
|
||||
* [Gameland](https://gameland.ru/archive/) - Country of Games Magazine Archive
|
||||
* [mangalib.me](https://mangalib.me/) - Manga
|
||||
* [Com-X Life](https://comx.life/mm) - Manga
|
||||
* [MangaPoisk](https://mangapoisk.me/) - Manga
|
||||
* [Manga Club](https://mangaclub.ru/) - Manga
|
||||
* [remanga](https://remanga.org/) - Manga
|
||||
* [Manga Hub](https://mangahub.ru/) - Manga
|
||||
* [mmnt](https://www.mmnt.ru/) - Document Search
|
||||
* [Samlib](http://samlib.ru/) - Document Search
|
||||
|
|
@ -1476,6 +1526,11 @@
|
|||
|
||||
* [sktorrent](https://sktorrent.eu/) - Movies / TV / Anime
|
||||
|
||||
## ▷ Reading
|
||||
|
||||
* [pdfknihy](https://pdfknihy.sk/zadarmo/) - Books
|
||||
* [eknizky](https://eknizky.sk/) - Books / Signup Required for Downloads
|
||||
|
||||
***
|
||||
|
||||
# ► Spanish / Español
|
||||
|
|
@ -1505,7 +1560,6 @@
|
|||
* [Hackstore.rs](https://www.hackstore.to/) - Movies / TV / Anime / 1080p / Latino
|
||||
* [Mega-Mkv](https://wwv.peliculastoday.net/) - Movies / TV / 1080p / Latino / Castilian
|
||||
* [Mega1080](https://www.mega1080.com/) - Movies / Documentaries / 1080p / Latino
|
||||
* [TodoPelisHD](https://todopelishd.com/) - Movies / 1080p / Latino
|
||||
* [MegaPeliculasRip](https://www.megapeliculasrip.net/) - Movies / Classics / TV / Animation / 1080p / Latino
|
||||
* [DescargasDD](https://descargasdd.org/) - Video / Audio / Castilian / Latino / Requires Waitlist / [Telegram](https://t.me/joinchat/VAWOu0TNfOXfnauA)
|
||||
* [SeiresHD](https://seireshd.com/) - Movies / TV / Animation / 1080p / Latino
|
||||
|
|
@ -1548,7 +1602,6 @@
|
|||
* [DonTorrent](https://donproxies.com/) - Movies / TV / Documentaries / Castilian / [.onion](https://dontorufwmbqhnoe2wvko5ynis6axf7bqod6wkmdvxmjyek64tantlqd.onion/) / [Telegram](https://t.me/s/DonTorrent)
|
||||
* [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
|
||||
* [CalidadTorrent](https://calidadtorrent.com/) - Movies / TV / Documentaries / Castilian
|
||||
* [PediaTorrent](https://pediatorrent.com/) - Movies / TV / Documentaries / Castilian
|
||||
|
|
@ -1562,10 +1615,10 @@
|
|||
|
||||
## ▷ Streaming / Streamear
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* ⭐ **[Playdede](https://privacidad.me/@playdede)**, [2](https://entrarplaydede.com/) - Movies / TV / Anime / 1080p / Sign-Up Required / [Telegram](https://t.me/playdedelink)
|
||||
* ⭐ **[Cineby](https://www.cineby.gd/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[HDFull](https://dominioshdfull.com/)** - Movies / TV / Anime / 1080p / Sign-Up Required / Castilian / Latino / [Discord](https://discord.gg/BRKCXEe)
|
||||
* ⭐ **[LaQuay TDT Channels](https://www.tdtchannels.com/)** - Live TV / Live Radio / IPTV / Castilian / [GitHub](https://github.com/LaQuay/TDTChannels)
|
||||
* ⭐ **[Playdede](https://privacidad.me/@playdede)**, [2](https://entrarplaydede.com/) - Movies / TV / Anime / 1080p / Sign-Up Required / [Telegram](https://t.me/playdedelink)
|
||||
* [yaske](https://yaske.ru/) - Movies / TV / [Telegram](https://t.me/wwwyaskeru)
|
||||
* [Zonaleros](https://www.zona-leros.com/peliculas-hd-online-lat) - Movies / TV / 1080p / Latino
|
||||
* [Solo Latino](https://sololatino.net/) - Movies / TV / Anime / 1080p / Latino
|
||||
|
|
@ -1574,19 +1627,22 @@
|
|||
* [poseidonhd2](https://www.poseidonhd2.co/) - Movies / TV
|
||||
* [PelisPlus](https://ww3.pelisplus.to/) - Movies / TV
|
||||
* [peligratis](https://peligratis.fun/) - Movies / TV
|
||||
* [repelisplus](https://repelisplus.today/) - Movies / TV
|
||||
* [La Movie](https://la.movie/) - Movies / TV
|
||||
* [hackstore2](https://hackstore2.com/) - Movies / TV
|
||||
* [cineplus](https://www.cineplus.lat) - Movies / TV
|
||||
* [Cinezo](https://www.cinezo.net/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [RaroVHS](https://www.rarovhs.com/) - Rare Spanish Content
|
||||
* [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino
|
||||
* [tele-libre](https://tele-libre.fans/) - Live TV
|
||||
* [rtvcplay](https://rtvcplay.co/) - Free Public Colombian TV
|
||||
* [futbollibrehd](https://futbollibrehd.cl/) - Live Sports
|
||||
* [la12hd](https://la12hd.com/) - Live Sports
|
||||
* [Zanex](https://zanex.lat/) - Live Sports
|
||||
* [streamtp2](https://streamtp2.com/) - Live Sports
|
||||
* [Streamtpmedia](https://streamtpmedia.com/) - Live Sports
|
||||
* [AceStream Links](https://rentry.co/FMHYB64#acestream) - Live Sports Acestream IDs
|
||||
* [Cinecalidad.gg](https://vwv.cinecalidad.gg/) - Movies / TV / Animation / Latino
|
||||
* [Cinecalidad.tel](https://w1.cinecalidad.tel/) - Movies / Latino
|
||||
* [Listas-IPTV](https://rentry.co/fmhyb64#iptv-playlists) - Spanish IPTV Resources
|
||||
* [Cinecalidad](https://www.cinecalidad.ec/) - Movies / TV / Animation / Latino
|
||||
* [Cuevana2](https://www.cuevana2espanol.net/) - Movies / TV / Latino
|
||||
* [Cuevana3.biz](https://cuevana.biz/) - Movies / TV / Latino
|
||||
* [detodopeliculas](https://detodopeliculas.nu/) - Movies / TV
|
||||
|
|
@ -1613,7 +1669,7 @@
|
|||
* [Argentine Cinema](https://www.youtube.com/@argentinecinemawithenglish4476/) - Argentine YouTube Movies
|
||||
* [Cine.Arplay](https://play.cine.ar/) - Argentinian Movies / TV
|
||||
* [Cinemargentino](https://www.cinemargentino.com/) - Movies / Documentaries
|
||||
* [CCLM](https://www.cclm.cl/cineteca-online) - Spanish Film Archive
|
||||
* [CCLM](https://www.cclm.cl/cineteca-online) or [Platfo Filmo](https://filmo.platfo.es/pages/home) - Spanish Film Archives
|
||||
* [Naranjas de Hiroshima](https://www.naranjasdehiroshima.com/) - Documentaries / Archives
|
||||
* [DocumaniaTV](https://www.documaniatv.com/) - Documentaries
|
||||
* [Area Documental](https://www.area-documental.com/) - Documentaries
|
||||
|
|
@ -1629,11 +1685,12 @@
|
|||
* [animeonline](https://ww3.animeonline.ninja/) - Anime / Sub
|
||||
* [ytanime](https://ytanime.tv/) - Anime / Sub
|
||||
* [AnimeID](https://www.animeid.tv/) - Anime / Sub
|
||||
* [animeyt](https://animeyt.es/) - Anime / Sub
|
||||
* [animeyt](https://animeytx.net/) - Anime / Sub
|
||||
* [LACartoons](https://www.lacartoons.com/) - Cartoons
|
||||
* [LatinLucha](https://latinluchas.com/) - WWE / MMA Replays / Latino
|
||||
* [EventosHQ](https://www.eventoshq.me/) - WWE / MMA Replays / Latino
|
||||
* [Tangos78rpm](https://www.tangos78rpm.com/) - Classic Records
|
||||
* [Streamflix](https://github.com/streamflix-reborn/streamflix) - Android Streaming App
|
||||
|
||||
## ▷ Reading / Leer
|
||||
|
||||
|
|
@ -1652,7 +1709,6 @@
|
|||
* [Librotecarios](https://librotecarios.blogspot.com/) - Textbooks
|
||||
* [Libros de la Nube](https://librosdelanube.blogspot.com/) - Textbooks
|
||||
* [albalearning](https://albalearning.com/) - Audiobooks
|
||||
* [Lector TMO](https://lectortmo.org/) - Manga
|
||||
* [Manga en Español](https://t.me/manga_es) - Manga
|
||||
* [HeavenManga](https://heavenmanga.com/) - Manga
|
||||
* [InManga](https://inmanga.com/) - Manga
|
||||
|
|
@ -1663,15 +1719,16 @@
|
|||
* [anzmangashd](https://www.anzmangashd.com/) - Manga
|
||||
* [vermanhwa](https://vermanhwa.com/) - Manga
|
||||
* [faneo](https://www.faneo.es/) - Manga
|
||||
* [daprob](https://daprob.com/) - Manga
|
||||
* [Nova](https://novelasligeras.net/) - Manga / Light Novels
|
||||
* [Izicomics](https://www.izicomics.com/) - Manga / Comics
|
||||
* [MegaComicsTV3](https://megacomicstv3.blogspot.com/) - Comics
|
||||
* [novenadimension](https://foro.novenadimension.com/) - Comics / Downloads
|
||||
* [tupropiaaventura_bot](https://t.me/tupropiaaventura_bot) - Text Adventure / Telegram
|
||||
* [booksmedicos](https://booksmedicos.org/) - Medical Textbooks
|
||||
* [Manuales de instrucciones](https://www.manualpdf.es/) - Manuals
|
||||
* [SciELO Chile](https://scielo.conicyt.cl/) - Scientific Journals
|
||||
* [rincondelvago](https://www.rincondelvago.com/) - Academic Documents
|
||||
* [cervantesvirtual](https://www.cervantesvirtual.com/portales/literatura/multimedia_videoteca_signada/) - Signed Literature for Deaf Users
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1700,16 +1757,17 @@
|
|||
|
||||
# ► Turkish / Türkçe
|
||||
|
||||
* ⭐ **[caglaryalcin's list](https://github.com/caglaryalcin/ublacklist/)** or [TemizAramaMotorum](https://gitlab.com/fr0stb1rd/temizaramamotorum) - Get rid of low-quality Turkish results
|
||||
* [DoğrulukPayı](https://www.dogrulukpayi.com/) - News Verification
|
||||
* ⭐ **[Caglaryalcin's list](https://github.com/caglaryalcin/ublacklist/)** or [Temiz Arama Motorum](https://gitlab.com/fr0stb1rd/temizaramamotorum) - Get rid of low-quality Turkish results
|
||||
* [Doğruluk Payı](https://www.dogrulukpayi.com/) - News Verification
|
||||
* [Market Fiyatı](https://marketfiyati.org.tr/) - Market Prices
|
||||
|
||||
## ▷ Downloading / İndirme
|
||||
|
||||
* [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), [Shareses](https://shareses.com), [Türkçe Ses İndir](https://www.turkcesesindir.com/), [Turkce Ses Dosyası](https://turkce-sesdosyasi.blogspot.com/) or [Turkish Sound Track](https://trsoundtrack.blogspot.com/) - Turkish Dubs
|
||||
* [Sinner Clown](https://sinnerclownceviri.net) / [Discord](https://discord.com/invite/nApvcT6Tt6), [Hangar](https://www.hangarceviri.com) - Game Localizations
|
||||
* [mp3semti](https://mp3semti.com/) - Music / MP3s
|
||||
* [Sinner Clown](https://sinnerclownceviri.net) / [Discord](https://discord.com/invite/nApvcT6Tt6), [Hangar](https://www.hangarceviri.com), [Calypso](https://www.calypsoceviri.com/) - Game Localizations
|
||||
* [Mp3 indir dur](https://www.mp3indirdur.com.tr/), [Mp3 semti](https://mp3semti.com/) - Music / MP3s
|
||||
|
||||
## ▷ Streaming / İzleme
|
||||
|
||||
|
|
@ -1717,29 +1775,27 @@
|
|||
* ⭐ **[Yabancıdizi](https://yabancidizi.so/)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/s/yabancidizipw)
|
||||
* ⭐ **[FullHDFilmizlesene](https://www.fullhdfilmizlesene.de/)**, [2](https://www.fullhdfilmizlesene.com) - Movies / Sub / Dub / 1080p
|
||||
* ⭐ **[Dizi Film Botu](https://t.me/Difix9Bot)** - TV / Sub / Dub / Anime / 1080p / 2K / 4K / Movies / TV / Documentaries
|
||||
* [Dizipal](https://www.google.com/search?q=intitle:"dizipal.org"&num=1) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Dizilla](https://dizilla.club) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Izlelan](https://izlelan.vercel.app/) - Movies / TV / 1080p
|
||||
* [SeriesAZ](https://seriesaz.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [filmmakinesi](https://filmmakinesi.de/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Dizipal](https://dizipal1513.com), [2](https://dizipalx54.com) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Dizilla](https://dizilla40.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Dizibox](https://www.dizibox.com) - TV / Sub / 1080p
|
||||
* [Diziyou](https://www.diziyou.co/) - TV / Sub / Dub / 1080p
|
||||
* [SelçukFlix](https://selcukflix.com/) - TV / Sub / Dub / 1080p
|
||||
* [Diziyou](https://www.diziyou.to/) - TV / Sub / Dub / 1080p
|
||||
* [Ddizi](https://www.ddizi.vip/) - TV
|
||||
* [Diziizle](https://www.diziizle.tel/) - TV
|
||||
* [Jet Film izle](https://jetfilmizle.de/) or [4kFilmizlesene](https://www.4kfilmizlesene.org/) - Movies
|
||||
* [Jet Film izle](https://jetfilmizle.website/) or [4kFilmizlesene](https://www.4kfilmizlesene.org/) - Movies / VPN Required
|
||||
* [Turkish123](https://turkish123.com/) or [Yoturkish](https://www.yoturkish.com) - Turkish TV w/ Eng Subs
|
||||
* [Türk Anime](https://www.turkanime.co/) / [Downloader](https://github.com/KebabLord/turkanime-indirici), [Anizm](https://anizm.net/), [Anime Who](https://animewho.com), [TR Anime İzle](https://www.tranimeizle.co), [OpenAnime](https://openani.me/), [AnimeciX](https://anm.cx/), [SeiCode](https://seicode.net/), [AsyaAnimeleri](https://asyaanimeleri.top/) - Anime
|
||||
* [CanlıTV](https://www.canlitv.me/) - Live TV
|
||||
* [Canlı TV](https://www.canlitv.me/) - Live TV / VPN Required
|
||||
* [Kral Bozguncu](https://discord.gg/kral) - Talk and watch football.
|
||||
|
||||
## ▷ Reading / Okuma
|
||||
|
||||
* [Kitap](https://t.me/addlist/ioGiM9KIZvhjOTZk) - Books
|
||||
* [KediKitap](https://t.me/KediKitap) - Books
|
||||
* [E kütüphanem](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books
|
||||
* [hattusa](https://hattusa.club/) - Books
|
||||
* [E kütüphanem](https://t.me/addlist/og2-cDRwlu9mOTY0) - Books
|
||||
* [Hattusa](https://hattusa.club/) - Books
|
||||
* [Manga Denizi](https://www.mangadenizi.net/) - Manga / [Discord](https://discord.com/invite/8zBMSGZ)
|
||||
* [Mavi Manga](https://mavimanga.com/) - Manga
|
||||
* [sadscans](https://sadscans.net/) - Manga
|
||||
* [Trwebtoon](https://trwebtoon.com/) - Manga
|
||||
* [Nirvana Manga](https://nirvanamanga.com/) - Manga
|
||||
* [Tortuga-ceviri](https://tortugaceviri.com/) - Manga / [Discord](https://discord.gg/bSxwMNM9mm)
|
||||
|
|
@ -1794,12 +1850,12 @@
|
|||
* ⭐ **[Voz.vn](https://voz.vn/)**, [VN-Z](https://vn-z.vn/), [TECHRUM.VN](https://www.techrum.vn/) or [WhiteHat.vn](https://whitehat.vn/) - Tech Forum
|
||||
* ⭐ **[J2team](https://www.facebook.com/groups/j2team.community)** - Tech Community
|
||||
* ⭐ **[Unikey](https://www.unikey.org/)** - Vietnamese Keyboard / [Source Code](https://sourceforge.net/projects/unikey/)
|
||||
* ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US)
|
||||
* ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Android](https://play.google.com/store/apps/details?id=com.epi) / [iOS](https://apps.apple.com/app/báo-mới-đọc-báo-tin-mới-24h/id651979466)
|
||||
* ⭐ **[HocMai Forum](https://diendan.hocmai.vn/)** - Study Forum
|
||||
* [hostsVN](https://github.com/bigdargon/hostsVN/wiki) - Adblocking Guides
|
||||
* [Quantrimang](https://quantrimang.com/) or [Anonyviet](https://anonyviet.com/) - Tech News
|
||||
* [Phudeviet](http://phudeviet.org/) - Subtitles
|
||||
* [Forumvi](https://www.forumvi.com/) - Create a Forum
|
||||
* [Forumvi](https://www.forumvi.com/) - Forum Creator
|
||||
* [MuaThongMinh](https://muathongminh.vn/) - E-commerce Price Tracker
|
||||
* [Unity_Cheat_Sheet](https://github.com/NaomiLe1811/Unity_Cheat_Sheet_Tieng_Viet) - Unity Game Engine Cheat Sheet
|
||||
|
||||
|
|
@ -1813,11 +1869,11 @@
|
|||
|
||||
## ▷ Streaming / Phát trực tuyến
|
||||
|
||||
* ⭐ **[rophim](https://www.rophim.me/phimhay)** - Movies / TV / Anime / Watch Parties / Sub / Dub / 1080p / [Telegram](https://t.me/congdongrophim) / [Discord](https://discord.gg/rophim)
|
||||
* ⭐ **[rophim](https://www.rophim.li/phimhay)** - Movies / TV / Anime / Watch Parties / Sub / Dub / 1080p / [Telegram](https://t.me/congdongrophim) / [Discord](https://discord.gg/rophim)
|
||||
* [Phimmoi](https://vuaphimmoi.net/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [kkphim](https://kkphim.com/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [NguonC](https://phim.nguonc.com/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [OPhim](https://ophim.movie/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [OPhim](https://ophim18.cc/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [AnimeTVN](https://animetvn4.com/) - Anime / Chinese Animation / Sub / 1080p
|
||||
* [AnimeVietsub](https://animevietsub.link/) - Anime / Chinese Animation / Sub / 1080p / [Telegram](https://t.me/animevietsub) / [Discord](https://discord.com/invite/AUNt59q)
|
||||
* [Ani4u](https://ani4u.org/) - Anime / Sub / 1080p
|
||||
|
|
@ -1869,11 +1925,11 @@
|
|||
* [kool.to](https://www.kool.to/) - Multilingual / Live TV
|
||||
* [Keyman](https://keyman.com/) - Multilingual / Keyboard Files
|
||||
* [Jainism Library of Jain Literature](https://www.atmadharma.com/index.html) - Multilingual / Sacred Texts
|
||||
* [Albkanale](https://albkanale.com/) - Albanian Live TV Android App
|
||||
* [amharicbookss](https://t.me/amharicbookss) - Amharic / Books
|
||||
* [Yoda](https://yoda.az/) - Azerbaijani / Live TV
|
||||
* [euskal](https://www.euskal-encodings.eus/) - Basque / Download / Movies / TV
|
||||
* [radioplayer.be](https://radioplayer.be/) - Belgian Radio Stations / French / Dutch
|
||||
* [channelmyanmar](https://channelmyanmar.org) - Burmese / Movies / TV / Cartoons / 1080p / 4K
|
||||
* [lupiteam](https://lupiteam.net/) - Corsican / Manga
|
||||
* [BalkanDownload](https://balkandownload.org/) - Croatian / Serbian / Slovene / Download / Video / Audio / Games / Books / Comics
|
||||
* [WarezHR](https://www.warezhr.org/) - Croatian / Download / Video / Audio / Games / Books / Comics
|
||||
|
|
@ -1890,9 +1946,11 @@
|
|||
* [KurdCinema](https://www.kurdcinama.com/) - Kurdish / Streaming / Movies / TV / Anime / Cartoons
|
||||
* [Kurdsubtitle](https://kurdsubtitle.net) - Kurdish / Subtitles
|
||||
* [Redzidzirdilatviju](https://www.redzidzirdilatviju.lv/) - Latvian / Documents
|
||||
* [vaizdopamokos](https://vaizdopamokos.lt/) - Lithuanian Educational Videos
|
||||
* [Paper](https://paper.naya.com.np/) - Nepali / Text Tools
|
||||
* [NRK TV](https://tv.nrk.no/) - Norwegian / Stream / Movies / TV / Documentaries / Sub / 1080p
|
||||
* [Nasjonalbiblioteket](https://www.nb.no/en/digitizing-at-the-national-library/) - Norwegian / Books / Journals / Magazines / Maps / Music Sheets
|
||||
* [Tegnordbok](https://www.minetegn.no/Tegnordbok-2016/) - Norwegian Sign Language Dictionary
|
||||
* [DJPunjab](https://djpunjab.is/) - Punjabi / Download / MP3
|
||||
* [animesrbija](https://www.animesrbija.com/) - Serbian / Streaming / Anime
|
||||
* [Anime Balkan](https://animebalkan.gg/) - Serbian / Streaming / Anime / 1080p
|
||||
|
|
@ -1904,7 +1962,7 @@
|
|||
* [zoom.lk](https://zoom.lk/) or [Cineru.lk](https://cineru.lk/) - Sinhalese / Subtitles
|
||||
* [Najdi.si](https://www.najdi.si/) - Slovene / Search
|
||||
* [BSF](https://bsf.si/) - Slovene Film Database
|
||||
* [iptv-ch](https://rentry.co/FMHYB64#swiss-iptv-playlists) - Swiss / IPTV Resources
|
||||
* [iptv-ch](https://rentry.co/fmhyb64#iptv-playlists) - Swiss / IPTV Resources
|
||||
* [Segoideas](https://segoideas.com/) - Taiwanese / Streaming / TV
|
||||
* [wlext](https://wlext.is/) - Turkish / Filipino / Thai / Streaming / Movies
|
||||
* [Machine Learning ka Chilla](https://www.youtube.com/playlist?list=PL9XvIvvVL50HHzaLPtFBOuikAWa0JdhMW) - Urdu / Machine Learning Course
|
||||
|
|
|
|||
57
docs/other/FAQ.md
Normal file
57
docs/other/FAQ.md
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
title: FAQ
|
||||
description: A List Of Questions And Answers Related To FMHY.
|
||||
---
|
||||
|
||||
# FAQ
|
||||
|
||||
**Q:** Why are there no posts? Is the subreddit dead? :(
|
||||
|
||||
**A:** Posting has always been off to keep the chances of the sub surviving as high as possible. Our main focus is the [**Wiki**](https://fmhy.net), which has grown to include nearly 30k links. It's 100% alive, and gets updated [daily](https://github.com/nbats/FMHYedit/commits/main). For a discussion sub, check out [r/Piracy](https://www.reddit.com/r/Piracy).
|
||||
|
||||
***
|
||||
|
||||
**Q:** Are the sites here safe to use?
|
||||
|
||||
**A:** Yes, we always scan files and research sites before adding them. We also listen to the community, so if there's something you feel needs to be addressed you're more than welcome to contact us.
|
||||
|
||||
***
|
||||
|
||||
**Q:** The site won't load, what should I do?
|
||||
|
||||
**A:** If you can't get the site to load, we'd recommend trying some of the methods listed [here](https://rentry.co/7vycxgn2), or try any of the [backups](https://fmhy.net/other/backups)
|
||||
|
||||
***
|
||||
|
||||
**Q:** How can I contact you?
|
||||
|
||||
**A:** The best way is to join us in [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord). Here you can submit links, get help or suggest changes to the wiki. My reddit [DMs](https://www.reddit.com/message/compose?to=nbatman) and [mod messages](https://www.reddit.com/message/compose/?to=%2Fr%2FFREEMEDIAHECKYEAH) are also open.
|
||||
|
||||
***
|
||||
|
||||
**Q:** Can I edit FMHY?
|
||||
|
||||
**A:** Absolutely. This project was made by and belongs to the community, so we allow anyone to suggest changes via [pull requests](https://github.com/fmhy/FMHYedit). We want this project to be as organized and useful as possible, so if you feel like you can help improve it, please do.
|
||||
|
||||
***
|
||||
|
||||
**Q:** How do I view encoded links?
|
||||
|
||||
**A:** Use any [base64 decoding](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_encode_.2F_decode) site or extension.
|
||||
|
||||
***
|
||||
|
||||
**Q:** Can I donate?
|
||||
|
||||
**A:** We appreciate that people want to support us, but we never have and never will accept donations. We maintain this project because it's fun and we want to help others, not make money.
|
||||
|
||||
***
|
||||
|
||||
**Q:** When was FMHY created?
|
||||
|
||||
**A:** The original sub was created on [April 29th, 2018](https://i.ibb.co/VJQmQ9t/image.png).
|
||||
|
||||
***
|
||||
|
||||
|
||||
If you have any questions feel free to leave a comment [here](https://redd.it/xrxen7) and we'll do our best to answer.
|
||||
57
docs/other/backups.md
Normal file
57
docs/other/backups.md
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
title: FMHY Backups
|
||||
description: A List of all Backups of FMHY.
|
||||
---
|
||||
|
||||
|
||||
# Backups
|
||||
|
||||
## Websites (Official)
|
||||
|
||||
* **[FMHY.net](https://fmhy.net/)**
|
||||
* [fmhyclone](https://fmhyclone.pages.dev/)
|
||||
* [fmhy.pages.dev](https://fmhy.pages.dev/)
|
||||
* [Selfhosting Guide](https://fmhy.net/other/selfhosting)
|
||||
|
||||
|
||||
|
||||
## Backup Sites (Unofficial)
|
||||
|
||||
* [fmhy.bid](https://fmhy.bid/)
|
||||
* [fmhy.artistgrid.cx](https://fmhy.artistgrid.cx/), [2](https://fmhy.artistgrid.pp.ua/), [3](https://fmhy.blooketbot.me/), [4](https://fmhy.joyconlab.net/), [5](https://fmhy.monochrome.tf/), [6](https://fmhy.piperagossip.org/), [7](https://fmhy.pp.ua/), [8](https://fmhy.prigoana.com/), [9](https://fmhy.prigoana.pp.ua/)
|
||||
* [a-fmhy](https://a-fmhy.pages.dev/) / [GitHub](https://github.com/LandWarderer2772/A-FMHY) (amoled theme)
|
||||
* [fmhy.xyz](https://fmhy.xyz/) (safe for work)
|
||||
* [fmhy.vercel.app](https://fmhy.vercel.app/)
|
||||
|
||||
These are trusted community ran instances that are out of our control. They currently match FMHY 1:1, but as we don't own them, they should only be used as backups when necessary.
|
||||
|
||||
|
||||
|
||||
## Reddit Backup
|
||||
|
||||
* **[/r/FREEMEDIAHECKYEAH](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)**
|
||||
* Add `/r/FREEMEDIAHECKYEAH/wiki/index` to the end of any [Redlib instance](https://github.com/redlib-org/redlib-instances/blob/main/instances.md), [2](https://github.com/libreddit/libreddit-instances/blob/master/instances.md)
|
||||
|
||||
|
||||
## More Backups
|
||||
|
||||
|
||||
* [Saidit Backup](https://saidit.net/s/freemediaheckyeah/wiki/index)
|
||||
* [GitHub Backup](https://github.com/fmhy/FMHY/wiki)
|
||||
* [Rentry Backup](https://rentry.co/FMHY), [2](https://rentry.org/FMHY)
|
||||
* [SFW Rentry](https://rentry.co/piracy), [2](https://rentry.org/piracy)
|
||||
|
||||
|
||||
|
||||
|
||||
## Markdown
|
||||
|
||||
|
||||
* [Markdown Files](https://github.com/fmhy/FMHYedit/archive/refs/heads/main.zip)
|
||||
* [Markdown Page](https://api.fmhy.net/single-page), [2](https://xtwnunsbzyrrxaiqekyt.supabase.co/functions/v1/single-page-docs), [3](https://fmhyapi.wispy.qzz.io/single-page)
|
||||
* [GitHub Source](https://github.com/fmhy/edit)
|
||||
|
||||
|
||||
## Backup Page Backups
|
||||
|
||||
[Website](https://fmhy.net/other/backups) / [Reddit](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/backups) / [GitHub](https://github.com/nbats/FMHY/wiki/Backups/) / [Rentry](https://rentry.co/FMHYbackups/)
|
||||
|
|
@ -39,7 +39,7 @@ You can use [nix](https://nixos.org/) to set up a development environment, we ha
|
|||
|
||||
You will need to install the following:
|
||||
- [Git](https://git-scm.com/downloads)
|
||||
- [Node.js](https://nodejs.org/en/download/) - Use latest available LTS release.
|
||||
- [Node.js](https://nodejs.org/en/download/) - Install version 21.7.3
|
||||
- [pnpm 9.12.2+](https://pnpm.io/installation)
|
||||
|
||||
#### Step 1: Clone the Repository
|
||||
|
|
@ -112,12 +112,70 @@ pnpm api:preview
|
|||
|
||||
See the [VitePress deployment guide](https://vitepress.dev/guide/deploy) for more info.
|
||||
|
||||
### API Deployment
|
||||
|
||||
If you want to deploy the API component (feedback system), you'll need to set up Cloudflare Workers and KV storage.
|
||||
|
||||
#### Prerequisites
|
||||
|
||||
- A [Cloudflare account](https://dash.cloudflare.com/sign-up)
|
||||
- [Wrangler CLI](https://developers.cloudflare.com/workers/wrangler/install-and-update/) installed globally
|
||||
|
||||
#### Step 1: Configure Wrangler
|
||||
|
||||
Update `wrangler.toml` with your Cloudflare account information:
|
||||
|
||||
1. Get your account ID from the Cloudflare dashboard (found in the right sidebar)
|
||||
2. Replace the `account_id` value in `wrangler.toml` with your account ID
|
||||
3. If you're using a custom domain, keep `workers_dev = false` and update the `routes` section
|
||||
4. If you're deploying to `*.workers.dev`, set `workers_dev = true` and remove the `routes` section
|
||||
|
||||
#### Step 2: Create KV Namespace
|
||||
|
||||
Create a KV namespace for data storage:
|
||||
|
||||
```bash
|
||||
npx wrangler kv:namespace create STORAGE
|
||||
```
|
||||
|
||||
This command will return a namespace ID. Copy this ID and replace the `id` value in the `[[kv_namespaces]]` section of `wrangler.toml` (line 14).
|
||||
|
||||
**Note:** If you want to deploy without running Wrangler locally (e.g., in CI/CD), you'll need to:
|
||||
1. Create the KV namespace manually in the Cloudflare dashboard
|
||||
2. Update both the `account_id` and `id` values in `wrangler.toml` in your fork
|
||||
|
||||
#### Step 3: Build and Deploy
|
||||
|
||||
Build and deploy the API:
|
||||
|
||||
```bash
|
||||
# Build the API
|
||||
pnpm api:build
|
||||
|
||||
# Deploy to Cloudflare Workers
|
||||
pnpm api:deploy
|
||||
```
|
||||
|
||||
The API will be deployed to your configured domain or `*.workers.dev` subdomain.
|
||||
|
||||
#### Rate Limiting (Optional)
|
||||
|
||||
The rate limiter binding requires setup through the Cloudflare dashboard. You can skip this for basic deployments or configure it later through the Workers dashboard under the "Rate limiting" section.
|
||||
|
||||
#### Environment Variables
|
||||
|
||||
There are a few variables you can change if you wish to disable them:
|
||||
##### Build-time Variables (for Documentation)
|
||||
|
||||
- `FMHY_BUILD_NSFW` - NSFW sidebar entry (experimental)
|
||||
- `FMHY_BUILD_API` - API component for feedback system.
|
||||
These variables control what gets included when building the documentation site:
|
||||
|
||||
- `FMHY_BUILD_NSFW` - Enable NSFW sidebar entry (experimental)
|
||||
- `FMHY_BUILD_API` - Enable API component for feedback system
|
||||
|
||||
##### Runtime Variables (for API Worker)
|
||||
|
||||
These variables are used by the deployed Cloudflare Worker API:
|
||||
|
||||
- `WEBHOOK_URL` - Discord webhook URL for posting feedback messages (required for API feedback functionality)
|
||||
|
||||
#### Troubleshooting
|
||||
|
||||
|
|
@ -131,3 +189,7 @@ There are a few variables you can change if you wish to disable them:
|
|||
# PowerShell
|
||||
rm -r -fo docs/.vitepress/cache
|
||||
```
|
||||
|
||||
### Reverse Proxy
|
||||
|
||||
You should be able to use any reverse proxy with this vitepress website, but find a reasonable config for an nginx server [in the repo here](https://github.com/fmhy/edit/blob/main/.github/assets/nginx.conf)
|
||||
77
docs/posts/Nov-2025.md
Normal file
77
docs/posts/Nov-2025.md
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
---
|
||||
title: Monthly Updates [November]
|
||||
description: November 2025 updates
|
||||
date: 2025-11-01
|
||||
next: false
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="nbats"/>
|
||||
|
||||
:::info
|
||||
These update threads only contains major updates. If you're interested
|
||||
in seeing all minor changes you can follow our
|
||||
[Commits Page](https://github.com/fmhy/FMHYedit/commits/main) on GitHub or
|
||||
[Updates Channel](https://redd.it/17f8msf) in Discord.
|
||||
:::
|
||||
|
||||
# Wiki Updates
|
||||
|
||||
- Added the **[Amoled Theme](https://i.ibb.co/hx97zL3W/978676.jpg)** / [2](https://i.imgur.com/fMrnGmF.png) to our site as a [Toggle](https://i.ibb.co/pvkfg3hC/image.png) / [2](https://i.imgur.com/qF7exKw.png) that can be turned on or off. Thank you to @Land for doing this.
|
||||
|
||||
- Built a **[External Search Engine](https://fmhy-search.dev.zenir.tech/)** that should work better in most cases than the built in VitePress search on our website.
|
||||
|
||||
- Added a **[New Backup](https://fmhyclone.pages.dev/)** of FMHY with daily sync, hosted on GitLab. It also has a backup of the [raw markdown](https://fmhyapi.wispy.qzz.io/single-page) page. We also added another [backup](https://a-fmhy.pages.dev/) of our website that has the theme on from above on automatically.
|
||||
|
||||
- The Space section has become a bit hard to navigate (60+ lines,) so we've split it into its [own head section](https://fmhy.net/educational#space), with 2 new subsections: [Astronomy](https://fmhy.net/educational#astronomy) and [Spacecraft](https://fmhy.net/educational#spacecraft). Astronomy will cover things related to celestial objects or phenomena in the cosmos. Spacecraft will cover things like rockets, launches and the ISS. The head section will be for more general space related things, like NASAs website, news, etc.
|
||||
|
||||
- Remakes / Ports in gaming had over 80 lines, and was pretty disorganized, so we've split it into 3 new sections to make it more comprehensible: [Decomps / Ports](https://fmhy.net/gaming#decomps-ports), [Remakes / Recreations](https://fmhy.net/gaming#remakes-recreations) and [Revival Projects](https://fmhy.net/gaming#revival-projects). Also turned Special Interest into its own head category to help organize TOC better.
|
||||
|
||||
- Re-ordered [Manga Sites](https://fmhy.net/reading#manga) based on poll results from our Discord. Weeb Central has been moved to #1 spot, and MangaFire + MangaNato have both been starred. Thank you to everyone who took part in voting and gave their thoughts. [Before vs After](https://i.ibb.co/j9Sn4hRR/image.png) / [2](https://i.imgur.com/u8zFZTX.png).
|
||||
|
||||
- Cleaned up multiple Audio Streaming sections, and added new ones to help better organize it including: [Specialty](https://fmhy.net/audio#specialty-streaming), [Genre Specific](https://fmhy.net/audio#genre-specific-streaming), [Radio Directories](https://fmhy.net/audio#radio-directories), and [Lofi Radio](https://fmhy.net/audio#lofi-radio). [Before vs. After](https://github.com/fmhy/edit/pull/4128#issuecomment-3476036920). Thank you to @AnarchyDR for doing this.
|
||||
|
||||
- Updated [Audio Streaming](https://fmhy.net/audio) table of contents to make it less cluttered and easier to navigate. [Before vs After](https://i.ibb.co/0yJbh03H/234243.jpg) / [2](https://i.imgur.com/fhgqKzb.png).
|
||||
|
||||
- Cleaned up [Browser Emulators](https://fmhy.net/gaming#browser-emulators), fixed labels, removed dead sites, bumped sites with multiple, or unique emulators higher, and moved any only serving as EmulatorJS / NeptunJS frontends to storage. [Before vs After](https://i.ibb.co/LXdhcDFD/Untitled.png) / [2](https://i.imgur.com/W9x8jY4.png).
|
||||
|
||||
- We removed the "No Torrenting" label from ProtonVPN as you can set it up with a OpenVPN config that allows you to torrent for free. Note that they do expire and must be regenerated sometimes. Guide is listed next to [Proton](https://fmhy.net/privacy#vpn). TY to Wispy and others for figuring this out.
|
||||
|
||||
- Added [Tetris](https://fmhy.net/gaming#tetris) Section to Gaming.
|
||||
|
||||
- Fixed ugly formatting in Game Optimization. [Before vs After](https://i.ibb.co/Vc99kJhh/image.png) / [2](https://i.imgur.com/HRPUwL3.png).
|
||||
|
||||
***
|
||||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [AB Download Manager](https://fmhy.net/file-tools#download-managers) in Download Managers. Open source, fast, cross platform, has resumable downloads, and a active dev team.
|
||||
|
||||
- Bumped [CrocDB](https://fmhy.net/gaming#rom-sites) to new #1 over Myrient in ROM sites. Croc covers multiple sites (including myrient), has a better UI, and a new rompack feature.
|
||||
|
||||
- Starred [PlayTorrio](https://fmhy.net/video#torrent-apps) in Torrent Streaming Apps. New client that is very feature rich. It has similar addons to Stremio, such as Torrentio. It also has Jackett integration, Debrid support, and so many other features we're unable to list them all here.
|
||||
|
||||
- Starred [NotebookLM](https://fmhy.net/ai#specialized-chatbots) in Specialized Chatbots. Document chatbots + note taking. Works well for quickly studying, has good audio/video overviews, can generate quizzes, flashcards, etc.
|
||||
|
||||
- Starred [Anidap](https://fmhy.net/video#anime-streaming) in Anime Streaming. Has a nice UI, uses hosts that are both unique and fast.
|
||||
|
||||
- Starred [PlayTorrio IPTV](https://fmhy.net/video#live-tv) in Live TV / Sports. Fast streams, huge library, good quality, one of the better Live TV sites we've been sent in awhile. Note that Darkness TV is the original, PlayTorrio just improved on their UI.
|
||||
|
||||
- Starred [Heroic Games Launcher](https://fmhy.net/linux-macos#linux-gaming) in Linux Gaming. Linux game launcher for Epic, GOG, and prime games, better maintained than Lutris now.
|
||||
|
||||
- Starred [ComicBookRoundup](https://fmhy.net/reading#curated-recommendations) in Reading Recommendations. Comic focused review / rating aggregator, similar to Metacritic or Rotten Tomatoes.
|
||||
|
||||
- Starred [Ziperto](https://fmhy.net/gaming#rom-sites) in ROM Sites. Been around for a long time now, has a solid library, and uses fast hosts.
|
||||
|
||||
- Starred [Sportsbite](https://fmhy.net/video#live-sports) in live sports. Aggregator with lots of hosts, nice UI, covers most big events.
|
||||
|
||||
***
|
||||
|
||||
# Things Removed
|
||||
|
||||
- Removed DramaGo as they seem to have shut down.
|
||||
|
||||
- Unstarred Character.AI as they had to [remove a bunch of characters](https://deadline.com/2025/09/disney-cease-and-desist-letter-characterai-copyright-infringement-1236566831) recently due to copyright, and people were already unhappy with their limits / restrictions.
|
||||
|
|
@ -26,5 +26,3 @@ Remember that a lot of who you are, is your ability to experience things outside
|
|||
* *"Life is a beautiful, magnificent thing, even to a jellyfish... The trouble is you won't fight. You've given in, continually dwelling on sickness and death. But there's something just as inevitable as death, and that's life. Life, life, life. Think of all the power that's in the universe, moving the earth, growing the trees. That's the same power within you if you only have the courage and the will to use it."* - Charlie Chaplin, Limelight 1952
|
||||
|
||||
* *"The wise man beholds all beings in the Self, and the Self in all beings; for that reason, he does not hate anyone."* - Isa Upanishad
|
||||
|
||||
**Discussion Post**: https://redd.it/1ne7y9e
|
||||
|
|
|
|||
69
docs/posts/dec-2025.md
Normal file
69
docs/posts/dec-2025.md
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
---
|
||||
title: Monthly Updates [December]
|
||||
description: December 2025 updates
|
||||
date: 2025-12-01
|
||||
next: false
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="nbats"/>
|
||||
|
||||
:::info
|
||||
These update threads only contains major updates. If you're interested
|
||||
in seeing all minor changes you can follow our
|
||||
[Commits Page](https://github.com/fmhy/FMHYedit/commits/main) on GitHub or
|
||||
[Updates Channel](https://redd.it/17f8msf) in Discord.
|
||||
:::
|
||||
|
||||
# Wiki Updates
|
||||
|
||||
- Added new backup site **[FMHY.bid](https://fmhy.bid/)**. Should be unblocked more places than .net currently.
|
||||
|
||||
- Added new section for [Photography / Cameras](https://fmhy.net/image-tools#photography-cameras).
|
||||
|
||||
- Added new section for [3D Printing / Printers](https://fmhy.net/image-tools#_3d-printing).
|
||||
|
||||
- Re-ordered [AI Benchmarks](https://fmhy.net/ai#ai-benchmarks), starred Kaggle Benchmarks, removed ones with dated testing, and added a subsection for [Specialized Benchmarks](https://fmhy.net/ai#specialized-benchmarks). [Before vs After](https://i.ibb.co/5xY36Pk5/Untitled.png) / [2](https://i.imgur.com/NuIHGhC.png).
|
||||
|
||||
- Re-ordered and cleaned up ugly formatting in [Hosting Tools](https://fmhy.net/developer-tools#hosting-tools). [Before vs After](https://i.ibb.co/21g23vSy/Untitled.png) / [2](https://i.imgur.com/G6sJPo1.png).
|
||||
|
||||
- Moved [Browser Startpages](https://fmhy.net/internet-tools#browser-startpages) + [Custom New Tab Pages](https://fmhy.net/internet-tools#custom-new-tab-pages) out of storage into their own sections.
|
||||
|
||||
- Brought back the [Website](https://fmhy.github.io/FMHY-SafeGuard/) for FMHY SafeGuard.
|
||||
|
||||
***
|
||||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [AnimeX](https://fmhy.net/video#anime-streaming) in Anime Streaming. Feature-rich, solid sources, big library, nice UI, has forums.
|
||||
|
||||
- Starred [Bing Image Creator](https://fmhy.net/ai#image-generation) in Image Gen. Gives 200 daily, has good editing, seems to be best way to use GPT Image 1 as of now.
|
||||
|
||||
- Starred [TizenTube Cobalt](https://fmhy.net/video#android-tv) in Android TV. Ad-free YouTube app, updated often, has Sponsorblock support, uses official YouTube UI.
|
||||
|
||||
- Starred [Watch Footy](https://fmhy.net/video#live-sports) in Live Sports. Solid sources, nice UI, lots of events.
|
||||
|
||||
- Starred [Streamer.bot](https://fmhy.net/video-tools#live-streaming) in Live Streaming Tools. [Feature-rich](https://streamer.bot/features) live stream manager, compatible w/ OBS, Streamlabs, etc.
|
||||
|
||||
- Starred [RoSeal](https://fmhy.net/gaming-tools#roblox-tools) in Roblox Tools. Improves Roblox website and adds nearly 200 extra features.
|
||||
|
||||
- Starred [Voice](https://fmhy.net/mobile#android-reading) in Android Audiobook Players. Open-source, multi-format, has cover fetch, and nice minimal design.
|
||||
|
||||
- Starred [Loop Habit Tracker](https://fmhy.net/mobile#productivity-trackers) in Mobile Productivity. Open-source, has sticky notifications, and better limits than most free options.
|
||||
|
||||
- Re-starred [CDRomance](https://fmhy.net/gaming#rom-sites) in ROM Sites as its made a comeback. Note that RetroGamingTalk accounts will work on CDRomance.
|
||||
|
||||
***
|
||||
|
||||
# Things Removed
|
||||
|
||||
- Removed Anadius as they've [decided to step down](https://i.ibb.co/TD9kRCR3/image.png) / [2](https://i.imgur.com/2Xk8Jor.png). It may be re-added in the future if someone new steps up to maintain it.
|
||||
|
||||
- Removed ContextSearch as it's been removed by Firefox. It seems to be causing issues, and in some cases flooding sites with requests. We're unsure if it's purposefully malicious, or mistakes by its dev, but regardless its recommended to remove it, and try other options like [ContextSearch web-ext](https://fmhy.net/internet-tools#firefox-extensions).
|
||||
|
||||
- Unstarred [Files](https://fmhy.net/file-tools#file-managers) in File Managers. There was a lot of hype for this originally, but people have started to come forward saying its too laggy / slow to be useful.
|
||||
|
||||
- Unstarred Grok, Qwen, Mage and Flux.1 Schnell in [Image Gen](https://fmhy.net/ai#image-generation). These were considered good in the past, but there's much better, less dated free options at this point.
|
||||
|
|
@ -28,7 +28,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Fixed formatting in [Android Camera Tools](https://fmhy.net/mobile#android-camera), turned it into its own head section, and added new subsections for [Image Editing](https://fmhy.net/mobile#image-tools) + [Image Galleries](https://fmhy.net/mobile#image-galleries) to make it easier to navigate.
|
||||
|
||||
- Added PWA (Progressive Web App) support to our website. This means our site can be added to your home screen or desktop like an app. It can (in theory) give a bit smoother experience when browsing the site. For mobile it may prompt, or you can add it by selecting ["Add to Home Screen"](https://i.imgur.com/JgyjqBI.png). For desktop, simply hit the [PWA icon](https://i.imgur.com/gcu8r0U.png) in the address bar.
|
||||
- Added PWA (Progressive Web App) support to our website. This means our site can be added to your home screen or desktop like an app. It can (in theory) allow a smoother experience when browsing the site. For mobile it may prompt, or you can add it by selecting ["Add to Home Screen"](https://i.imgur.com/JgyjqBI.png). For desktop, simply hit the [PWA icon](https://i.imgur.com/gcu8r0U.png) in the address bar.
|
||||
|
||||
- Updated Windscribe's description to "No Torrenting w/ Free Version" as they can no longer [afford to keep it running](https://redd.it/1nos1a9). We've also bumped it below Proton, as Proton is unlimited despite having the same no torrent limitation.
|
||||
|
||||
|
|
@ -38,8 +38,6 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred new [Sideloading Guide](https://fmhy.net/mobile#ios-sideloading) in iOS section. This is more up to date than ios.cfw's now.
|
||||
|
||||
- Starred [QQDL](https://fmhy.net/audio#audio-ripping-sites) in Audio Ripping. Has fast, single click FLAC downloads. Seems to be one of the more consistent options.
|
||||
|
||||
- Starred [Virgil Software Search](https://fmhy.net/downloading#software-sites) in Software Sites. Custom multi-site software search engine, only uses trusted sites already listed on FMHY.
|
||||
|
||||
- Starred [Kimi](https://fmhy.net/ai#official-model-sites) in AI Chatbots. Good free limits, highest rated open-source model on LMArena, adding K2 reasoning soon.
|
||||
|
|
@ -56,7 +54,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Re-starred [Vimm's Lair](https://fmhy.net/gaming#rom-sites) as they've recovered a lot of content that had been deleted.
|
||||
|
||||
- Re-Starred Firehawk52 as its fully functionating again.
|
||||
- Re-Starred Firehawk52 as it's fully functionating again.
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -66,8 +64,8 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Removed ReVanced in Android Audio as it [no longer blocks spotify ads](https://torrentfreak.com/revanced-complies-with-spotify-takedown-but-explores-options-to-fight-back/), and instead moved it to YouTube Music, as it still works fine for that.
|
||||
|
||||
- Removed Canva Pro telegram invite, its gone and we don't have a new link for it. That was our last working Canva Pro method, so it might be awhile before we find a alt.
|
||||
- Removed Canva Pro telegram invite, it's gone and we don't have a new link for it. That was our last working Canva Pro method, so it might be awhile before we find an alt.
|
||||
|
||||
- Unstarred Cobalt (in audio ripping, not video) as its soundcloud + newgrounds only making it less useful than it was.
|
||||
- Unstarred Cobalt (in audio ripping, not video) as it's soundcloud + newgrounds only, making it less useful than it was.
|
||||
|
||||
- Unstarred Koalageddon in DLC unlockers, as v1/v2 are both archived and no longer updated.
|
||||
|
|
|
|||
|
|
@ -11,7 +11,13 @@ footer: true
|
|||
|
||||
<Post authors="nbats" />
|
||||
|
||||
### [FMHY-Search](https://fmhy-search.streamlit.app/)
|
||||
### [FMHY-Search](https://fmhy-search.dev.zenir.tech/)
|
||||
|
||||
Search built with NextJS
|
||||
|
||||
---
|
||||
|
||||
### [Streamlit Search](https://fmhy-search.streamlit.app/)
|
||||
|
||||
Search engine hosted on Streamlit
|
||||
|
||||
|
|
@ -23,7 +29,7 @@ Search engine hosted on FMHY.net
|
|||
|
||||
---
|
||||
|
||||
### [GitHub Search](https://github.com/fmhy/edit/search?q=&type=wikis)
|
||||
### [GitHub Search](https://github.com/search?q=repo%3Afmhy%2FFMHY+&type=wikis)
|
||||
|
||||
GitHub page search engine
|
||||
|
||||
|
|
|
|||
|
|
@ -18,9 +18,10 @@
|
|||
* ⭐ **Report Issues** - [uAssets](https://github.com/uBlockOrigin/uAssets/issues) / [Hosts](https://github.com/uBlockOrigin/uAssets/discussions/27472) / [AdGuard](https://reports.adguard.com/new_issue.html) / [EasyList](https://github.com/easylist/easylist/issues)
|
||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [X](https://x.com/SponsorBlock) / [Discord](https://discord.gg/SponsorBlock) / [GitHub](https://github.com/ajayyy/SponsorBlock)
|
||||
* ⭐ **SponsorBlock Tools** - [Bookmarklet](https://github.com/mchangrh/sb.js) / [Script](https://greasyfork.org/en/scripts/453320) / [Database](https://sb.ltn.fi/) / [Chromecast](https://github.com/gabe565/CastSponsorSkip)
|
||||
* [Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Discord Nitro / Boost Ads
|
||||
* [Popup Blocker (strict)](https://github.com/schomery/popup-blocker), [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/) or [PopUpOFF](https://popupoff.org/) - Popup Blockers / [Script](https://github.com/AdguardTeam/PopupBlocker)
|
||||
* [Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin) or [Discord Adblock](https://codeberg.org/ridge/Discord-AdBlock) - Hide Discord Nitro / Boost Ads
|
||||
* [Popup Blocker (strict)](https://github.com/schomery/popup-blocker), [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/) or [PopUpOFF](https://popupoff.org/) - Popup Blockers / [Userscript](https://github.com/AdguardTeam/PopupBlocker)
|
||||
* [BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay) - Hide Website Overlays
|
||||
* [Spot SponsorBlock](https://spotsponsorblock.org/) - Skip Sponsored Spotify Podcast Ads
|
||||
* [BilibiliSponsorBlock](https://github.com/hanydd/BilibiliSponsorBlock) - Skip Sponsored Bilibili Ads
|
||||
|
||||
***
|
||||
|
|
@ -55,6 +56,7 @@
|
|||
* [NextDNS](https://nextdns.io) - Customizable DNS Adblocking Service / [Video](https://youtu.be/WUG57ynLb8I)
|
||||
* [LibreDNS](https://libredns.gr/) - DNS Adblocking / [GitLab](https://gitlab.com/libreops/libredns)
|
||||
* [Tiarap](https://doh.tiar.app/) - DNS Adblocking / [GitHub](https://github.com/pengelana/blocklist)
|
||||
* [DNSWarden](https://dnswarden.com/) - DNS Adblocking / [GitHub](https://github.com/bhanupratapys/dnswarden)
|
||||
* [Blocky](https://0xerr0r.github.io/blocky/latest/) - DNS Adblocking / [GitHub](https://github.com/0xERR0R/blocky)
|
||||
* [AdGuard DNS](https://adguard-dns.io/) - Customizable DNS Adblocking Service / [X](https://x.com/adguard) / [Subreddit](https://reddit.com/r/Adguard) / [Telegram](https://t.me/adguarden)
|
||||
* [Control D](https://controld.com/free-dns) - Customizable DNS Adblocking Service / [X](https://x.com/controldns) / [Subreddit](https://reddit.com/r/ControlD/) / [Discord](https://discord.gg/dns)
|
||||
|
|
@ -85,16 +87,19 @@
|
|||
|
||||
# ► Antivirus / Anti-Malware
|
||||
|
||||
* **Note** - It's best to keep Windows Defenders real-time protection on. You can select ‘Allow on device’ for pirated software detections like patches, or exclude by ‘File‘ in ‘Exclusions’ for false positives when needed + [More Info](https://wispydocs.pages.dev/windows/#antivirus).
|
||||
***
|
||||
|
||||
* 🌐 **[r/Antivirus Index](https://www.reddit.com/r/antivirus/wiki/index/)** - Antivirus Tool Index
|
||||
* ↪️ **[Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines)**
|
||||
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/)** / [X](https://x.com/malwarebytes) or [ESET](https://rentry.co/FMHYB64#eset) - Antivirus
|
||||
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/)** or [ESET](https://rentry.co/FMHYB64#eset) - Antivirus / [X](https://x.com/malwarebytes)
|
||||
* ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware / [X](https://x.com/malwarebytes)
|
||||
* ⭐ **[Triage](https://tria.ge/)** or [Cuckoo](https://cuckoo.cert.ee/) - Online Sandboxes
|
||||
* ⭐ **[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 SafeGuard](https://fmhy.github.io/FMHY-SafeGuard/)** - Detects if Current Site is Trusted / Untrusted / [GitHub](https://github.com/fmhy/FMHY-SafeGuard)
|
||||
* [FMHY LinkSafe Guard](https://greasyfork.org/en/scripts/528660-fmhy-safelink-guard) - Shows if Site is Trusted / Untrusted on Web Results
|
||||
* [BleepingComputer](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](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)
|
||||
* [Sandboxie Plus](https://sandboxie-plus.com/) - Sandbox Environment / [Guide](https://claraiscute.neocities.org/Guides/sandboxie-guide/), [2](https://claraiscute.pages.dev/Guides/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
|
||||
* [Dangerzone](https://dangerzone.rocks/) - Convert Malicious PDFs to Safe Files / [GitHub](https://github.com/freedomofpress/dangerzone)
|
||||
* [SquareX](https://public.sqrx.com/web) - Browser Sandbox
|
||||
|
|
@ -107,7 +112,7 @@
|
|||
## ▷ File Scanners
|
||||
|
||||
* 🌐 **[The Second Opinion](https://jijirae.github.io/thesecondopinion/index.html)**, [2](https://rentry.co/thesecondopinion) - Portable Malware Scanners / Removal Tools / [GitHub](https://github.com/jijirae/thesecondopinion/)
|
||||
* ⭐ **[VirusTotal](https://www.virustotal.com/)** / [Scan Results Guide](https://rentry.co/vtguide) or **[Hybrid Analysis](https://hybrid-analysis.com/)** - Online File Scanner
|
||||
* ⭐ **[VirusTotal](https://www.virustotal.com/)** / [Scan Results Guide](https://claraiscute.neocities.org/Guides/vtguide/), [2](https://claraiscute.pages.dev/Guides/vtguide/) or **[Hybrid Analysis](https://hybrid-analysis.com/)** - Online File Scanner
|
||||
* ⭐ **VirusTotal Tools** - [CLI](https://github.com/VirusTotal/vt-cli) / [Uploader](https://github.com/SamuelTulach/VirusTotalUploader) / [Lite Version](https://www.virustotal.com/old-browsers/)
|
||||
* [Microsoft Safety Scanner](https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download) - On-demand AV Scanner
|
||||
* [Manalyzer](https://manalyzer.org/) - PE File Scanner / [GitHub](https://github.com/JusticeRage/Manalyze)
|
||||
|
|
@ -117,7 +122,7 @@
|
|||
* [Grype](https://github.com/anchore/grype) - Container Images Vulnerability Scanner
|
||||
* [Jotti](https://virusscan.jotti.org/en) - Online File Scanner
|
||||
* [Filescan.io](https://www.filescan.io/) or [MetaDefender Cloud](https://metadefender.com/) - Online File Scanner / [X](https://x.com/filescan_itsec) / [GitHub](https://github.com/filescanio)
|
||||
* [Farbar](https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) / [Guide](https://www.bleepingcomputer.com/forums/t/781976/) - Local File Scanner
|
||||
* [Farbar](https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) - Local File Scanner / [Guide](https://www.bleepingcomputer.com/forums/t/781976/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -138,6 +143,7 @@
|
|||
* ↪️ **[SMS Verification Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_sms_verification_sites)**
|
||||
* ↪️ **[File Encryption](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_encryption)**
|
||||
* ↪️ **[Drive Formatting / File Deletion](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_formatting_.2F_deletion)**
|
||||
* ↪️ **[Photo Forensics / Metadata](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_photo_forensics_.2F_metadata)**
|
||||
* ⭐ **[Tails](https://tails.net/)** / [Telegram](https://t.me/torproject) / [GitHub](https://github.com/torproject), [Whonix](https://www.whonix.org/) / [Telegram](https://t.me/s/Whonix) / [GitHub](https://github.com/Whonix) or [Qubes](https://www.qubes-os.org/) / [GitHub](https://github.com/QubesOS) - Privacy-Based Operating Systems
|
||||
* [r/Privacy](https://reddit.com/r/privacy), [r/TheHatedOne](https://www.reddit.com/r/thehatedone) or [r/privatelife](https://www.reddit.com/r/privatelife/) - Privacy Discussion / Forums
|
||||
* [W10Privacy](https://www.w10privacy.de/english-home/) - Privacy and Data Protection Tools
|
||||
|
|
@ -152,8 +158,8 @@
|
|||
* [PrivNote](https://privnote.com/), [SafeNote](https://safenote.co/) / [GitHub](https://github.com/devrolabs), [Burn.Link](https://burn.link/), [ThisLinkWillSelfDestruct](https://thislinkwillselfdestruct.com/), [s.cr](https://s.cr/), [Burn My Note](https://www.burnmynote.link/) or [OneTimeSecret](https://onetimesecret.com/) / [GitHub](https://github.com/onetimesecret/onetimesecret) - Send Self-Destructing Messages
|
||||
* [Steg Cloak](https://stegcloak.surge.sh/) or [spammimic](https://www.spammimic.com/index.cgi) - Send Encrypted Text
|
||||
* [Forensic Focus](https://www.forensicfocus.com/forums/) - Digital Forensics Discussion Forums
|
||||
* [HiddenVM](https://github.com/aforensics/HiddenVM) - VirtualBox for TailsOS
|
||||
* [SurveillanceWatch](https://www.surveillancewatch.io/) - Surveillance Company Connections
|
||||
* [DeFlock](https://deflock.me/) - AI Automated License Plate Reader Cameras / ALPR Map / [Discord](https://discord.gg/aV7v4R3sKT) / [GitHub](https://github.com/FoggedLens/deflock)
|
||||
* [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents
|
||||
|
||||
***
|
||||
|
|
@ -183,10 +189,7 @@
|
|||
|
||||
## ▷ Network Security
|
||||
|
||||
* ⭐ **[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 / [GitHub](https://github.com/msasanmh/DNSveil)
|
||||
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P) / [GitLab](https://i2pgit.org/)
|
||||
* [XrayUIGroup](https://github.com/MHSanaei/3x-ui) - DIY Privacy Network / [Telegram](https://t.me/XrayUI)
|
||||
* [Simplewall](https://github.com/henrypp/simplewall) - Firewall
|
||||
* [Fort](https://github.com/tnodir/fort) - Firewall
|
||||
* [WFC](https://www.binisoft.org/wfc.php) - Firewall
|
||||
|
|
@ -201,7 +204,7 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ [Android Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_privacy)
|
||||
## ▷ [Android Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_privacy)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -222,7 +225,6 @@
|
|||
* [delete-likes-from-x-com.md](https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d) - Delete X.com Likes / Favorites
|
||||
* [Power Delete Suite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
||||
* [Hyphanet](https://www.hyphanet.org/) - Browse / Publish Freenet Sites / [GitHub](https://github.com/hyphanet)
|
||||
* [mat2](https://0xacab.org/jvoisin/mat2) - Remove Metadata from Files / [Web Version](https://0xacab.org/jvoisin/mat2-web)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -318,7 +320,6 @@
|
|||
|
||||
## ▷ Fingerprinting / Tracking
|
||||
|
||||
* ⭐ **[CanvasBlocker](https://github.com/kkapsner/CanvasBlocker)** - Prevent Canvas Fingerprinting
|
||||
* ⭐ **[CreepJS](https://abrahamjuliot.github.io/creepjs)**, [webkay](https://webkay.robinlinus.com/), [browserrecon](https://www.computec.ch/projekte/browserrecon/?s=scan), [TZP](https://arkenfox.github.io/TZP/tzp.html), [Device Info](https://www.deviceinfo.me/), [Cover Your Tracks](https://coveryourtracks.eff.org/) or [PersonalData](https://personaldata.info/) - Tracking / Fingerprinting Tests
|
||||
* [ClearURLs](https://docs.clearurls.xyz) - Remove Tracking Elements from URLs / Can Break Sites / [GitHub](https://github.com/ClearURLs/Addon) / [GitLab](https://gitlab.com/KevinRoebert/ClearUrls)
|
||||
* [Webbkoll](https://webbkoll.5july.net/) or [Blacklight](https://themarkup.org/blacklight) - Site Tracking Info
|
||||
|
|
@ -343,7 +344,7 @@
|
|||
* [Fuck Off Google](https://search.fuckoffgoogle.net/), [searx.neocities](https://searx.neocities.org/), [nixnet](https://searx.nixnet.services/) or [monocles](https://monocles.de/) - Searx Instances / Metasearch
|
||||
* [4get](https://4get.ca/) - Metasearch / [Source Code](https://git.lolcat.ca/lolcat/4get)
|
||||
* [Mojeek](https://www.mojeek.com/) - Independent / [Subreddit](https://www.reddit.com/r/mojeek/)
|
||||
* [YaCy](https://yacy.net/) - Decentralized / P2P Independant / [GitHub](https://github.com/yacy/yacy_search_server)
|
||||
* [YaCy](https://yacy.net/) - Decentralized / P2P Independent / [GitHub](https://github.com/yacy/yacy_search_server)
|
||||
* [Startpage](https://www.startpage.com/) - Google Based / [Subreddit](https://www.reddit.com/r/StartpageSearch/)
|
||||
* [SearXNG](https://docs.searxng.org/) - Self-Hosted / Metasearch / [GitHub](https://github.com/searxng/searxng)
|
||||
|
||||
|
|
@ -351,16 +352,16 @@
|
|||
|
||||
# ► VPN
|
||||
|
||||
* **Note** - Outside of WARP it's generally best to use a paid VPN, especially if you have privacy or speed in mind. Free VPNs are mostly useful for things like unblocking websites.
|
||||
* **Note** - Outside of WARP it's generally best to use a paid VPN, especially if you have privacy or speed in mind. Free VPNs are mostly useful for things like unblocking websites. Remember to [bind](https://wispydocs.pages.dev/vpn-binding/) your [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) to your client to avoid ISP letters.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[Techlore Chart](https://techlore.tech/vpn)** - VPN Comparison Charts
|
||||
* 🌐 **[VPN Relationships](https://kumu.io/Windscribe/vpn-relationships)**, [2](https://windscribe.com/vpnmap) - VPN Relationship Map
|
||||
* ⭐ **[WARP](https://one.one.one.one/)** - Free / Unlimited / [Wireguard](https://rentry.co/foss-warp) / [Alt Client](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#alt-warp-clients) / [Config Generator](https://f0rc3run.github.io/free-warp-endpoints/)
|
||||
* ⭐ **[Proton VPN](https://protonvpn.com)** - No Torrenting w/ Free Plan / Unlimited / [Wireguard](https://protonvpn.com/support/wireguard-configurations) / [Subreddit](https://www.reddit.com/r/ProtonVPN/) / [Telegram](https://t.me/proton_privacy) / [GitHub](https://github.com/ProtonVPN/)
|
||||
* ⭐ **[WARP](https://one.one.one.one/)** - Free / Unlimited / [Wireguard](https://rentry.co/foss-warp) (kill switch) / [Alt Client](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#alt-warp-clients) / [Config Generator](https://colab.research.google.com/drive/1fomBbh0mRxpVoGAY5gYT5zPBnFKsLV9o?usp=sharing)
|
||||
* ⭐ **[Proton VPN](https://protonvpn.com)** - Unlimited / [Torrent Guide](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#proton-torrenting) / [Wireguard](https://protonvpn.com/support/wireguard-configurations) / [Subreddit](https://www.reddit.com/r/ProtonVPN/) / [Telegram](https://t.me/proton_privacy) / [GitHub](https://github.com/ProtonVPN/)
|
||||
* ⭐ **[Windscribe](https://windscribe.com)** - No Torrenting w/ Free Plan / 10GB Monthly / [Subreddit](https://www.reddit.com/r/Windscribe/) / [GitHub](https://github.com/windscribe)
|
||||
* ⭐ **[RiseupVPN](https://riseup.net/en/vpn)** - Free / Unlimited / [OpenVPN](https://github.com/kmille/riseup-vpn-configurator) / [GitHub](https://github.com/riseupnet)
|
||||
* ⭐ **[RiseupVPN](https://riseup.net/en/vpn)** - Free / Unlimited / [GitHub](https://github.com/riseupnet)
|
||||
* ⭐ **[AirVPN](https://airvpn.org/)** - Paid / [.onion](https://airvpn3epnw2fnsbx5x2ppzjs6vxtdarldas7wjyqvhscj7x43fxylqd.onion/) / [GitHub](https://github.com/AirVPN) / [GitLab](https://gitlab.com/AirVPN)
|
||||
* [Mullvad VPN](https://mullvad.net/) - Paid / [No-Logging](https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/) / [Port Warning](https://mullvad.net/en/blog/2023/5/29/removing-the-support-for-forwarded-ports/) / [.onion](https://ao54hon2e2vj6c7m3aqqu6uyece65by3vgoxxhlqlsvkmacw6a7m7kiad.onion) / [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)
|
||||
|
|
@ -376,8 +377,9 @@
|
|||
* [Amnezia](https://amnezia.org/), [2](https://storage.googleapis.com/amnezia/amnezia.org) - VPN Server / [Subreddit](https://www.reddit.com/r/AmneziaVPN/) / [Telegram](https://t.me/amnezia_vpn_en) / [GitHub](https://github.com/amnezia-vpn)
|
||||
* [OpenVPN](https://openvpn.net/) - VPN Server
|
||||
* [WGDashboard](https://wgdashboard.dev/) - WireGuard Panel / AmneziaWG / [Subreddit](https://www.reddit.com/r/WGDashboard/) / [Discord](https://discord.gg/72TwzjeuWm) / [GitHub](https://github.com/donaldzou/WGDashboard)
|
||||
* [Twingate](https://www.twingate.com/) - Zero Trust Access Tunnel
|
||||
* [Headscale](https://github.com/juanfont/headscale) - Self Hosted Tailscale
|
||||
* [Nebula](https://github.com/slackhq/nebula) or [ZeroTier](https://www.zerotier.com/) - Mesh VPN Server
|
||||
* [Nebula](https://github.com/slackhq/nebula) or [ZeroTier](https://www.zerotier.com/) - Mesh VPN Server
|
||||
* [IPsec VPN](https://github.com/hwdsl2/setup-ipsec-vpn) - VPN Server
|
||||
* [Cloudflare Tunnels](https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/) - Application Tunnel / VPN Alternative / [WireGuard](https://gist.github.com/WildeBeast2521/adabae243e0b83e344ceef0422c3fa6d)
|
||||
* [Cloud WireGuard Guide](https://github.com/rajannpatel/Pi-Hole-on-Google-Compute-Engine-Free-Tier-with-Full-Tunnel-and-Split-Tunnel-Wireguard-VPN-Configs) - WireGuard + Pi-hole VPN using Google Cloud
|
||||
|
|
@ -386,6 +388,9 @@
|
|||
* [OpenConnect](https://gitlab.com/openconnect/openconnect) - SSL VPN / [GUI](https://openconnect.github.io/openconnect-gui/)
|
||||
* [Pritunl](https://pritunl.com/) - VPN Server / [GitHub](https://github.com/pritunl/pritunl)
|
||||
* [Algo VPN](https://blog.trailofbits.com/2016/12/12/meet-algo-the-vpn-that-works/) - Cloud VPN / [GitHub](https://github.com/trailofbits/algo)
|
||||
* [SShuttle](https://sshuttle.readthedocs.io/en) - SSH VPN Server [GitHub](https://github.com/sshuttle/sshuttle)
|
||||
* [DSVPN](https://github.com/jedisct1/dsvpn) - Simple VPN Server
|
||||
* [Openconnect](https://ocserv.gitlab.io/www/index.html) - SSL VPN Server
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -415,7 +420,7 @@
|
|||
## ▷ Proxy Servers
|
||||
|
||||
* ⭐ **[Censordex](https://censordex.fr.to/)** - Server Setup
|
||||
* ⭐ **[3X-UI](https://github.com/MHSanaei/3x-ui)** - Proxy Panel / [Telegram](https://t.me/XrayUI) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#3x-ui)
|
||||
* ⭐ **[3X-UI](https://github.com/MHSanaei/3x-ui)** - Proxy Panel / [Telegram](https://t.me/XrayUI) / **[Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#3x-ui)**
|
||||
* ⭐ **[Project X](https://github.com/XTLS/Xray-core)** - Xray Proxy Core / [Telegram](https://t.me/projectXray), [2](https://t.me/projectVless)
|
||||
* [NaïveProxy](https://github.com/klzgrad/naiveproxy) - Chromium-based Proxy
|
||||
* [Hysteria](https://v2.hysteria.network/) - Speed Focused Proxy Protocol / [Telegram](https://t.me/hysteria_github) / [GitHub](https://github.com/apernet/hysteria)
|
||||
|
|
@ -428,6 +433,7 @@
|
|||
* [Scramjet](https://docs.titaniumnetwork.org/proxies/scramjet/) / [GitHub](https://github.com/MercuryWorkshop/scramjet/) or [Nebula](https://github.com/NebulaServices/Nebula) - Web Proxy Server
|
||||
* [Nginx Proxy Manager](https://nginxproxymanager.com) - Reverse Proxy UI / [Subreddit](https://reddit.com/r/nginxproxymanager) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager)
|
||||
|
||||
|
||||
***
|
||||
|
||||
## ▷ Proxy Clients
|
||||
|
|
@ -439,12 +445,12 @@
|
|||
* [Amnezia](https://amnezia.org/), [2](https://storage.googleapis.com/amnezia/amnezia.org) - Proxy Client / All Platforms / [Subreddit](https://www.reddit.com/r/AmneziaVPN/) / [Telegram](https://t.me/amnezia_vpn_en) / [GitHub](https://github.com/amnezia-vpn)
|
||||
* [Shadowsocks](https://shadowsocks.org/doc/getting-started.html#gui-clients) - Shadowsocks Client / All Platforms / [GitHub](https://github.com/shadowsocks)
|
||||
* [sing-box](https://sing-box.sagernet.org/clients/) - Proxy Client / Mac, Android / [Telegram](https://t.me/yapug) / [GitHub](https://github.com/SagerNet/sing-box)
|
||||
* [Throne](https://throneproj.github.io/) - Proxy Client / Sing-Box GUI / Windows, Mac, Linux / [GitHub](https://github.com/throneproj/Throne)
|
||||
* [V2Box Android](https://play.google.com/store/apps/details?id=dev.hexasoftware.v2box), [V2Box IOS](https://apps.apple.com/us/app/v2box-v2ray-client/id6446814690) - Proxy Client
|
||||
* [ClashVerge](https://www.clashverge.dev/) - Proxy Client / Windows, Mac, Linux / [GitHub](https://github.com/clash-verge-rev/clash-verge-rev)
|
||||
* [Streisand](https://streisand.pages.dev/) - Proxy Client / Mac, iOS
|
||||
* [husi](https://github.com/xchacha20-poly1305/husi) - Proxy Client / Android
|
||||
* [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alt Hola Proxy Client / Windows, Mac, Linux, Android / [Privacy Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hola-proxy-note)
|
||||
* [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / Windows, Mac, Android / [Keys](https://rentry.co/FMHYB64#proxifier)
|
||||
* [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / Windows, Mac, Android
|
||||
* [wireproxy](https://github.com/whyvl/wireproxy) - WireGuard as Proxy / Windows, Mac, Linux
|
||||
|
||||
***
|
||||
|
|
@ -453,9 +459,10 @@
|
|||
|
||||
* ↪️ **[Great Firewall Bypass](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/non-eng#wiki_.25B7_great_firewall)**
|
||||
* ⭐ **[ByeDPIAndroid](https://github.com/dovecoteescapee/ByeDPIAndroid)**, - Network Packet Alter Tool / Android
|
||||
* ⭐ **[zapret](https://github.com/bol-van/zapret)** or **[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/)** - Network Packet Alter Tool
|
||||
* ⭐ **[zapret](https://github.com/bol-van/zapret)**, **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or **[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/)** - Network Packet Alter Tool
|
||||
* ⭐ **[DNSveil](https://msasanmh.github.io/DNSveil/)** - DNS Client / [GitHub](https://github.com/msasanmh/DNSveil)
|
||||
* [ByeByeDPI](https://github.com/romanvht/ByeByeDPI/blob/master/README-en.md), [PowerTunnel](https://github.com/krlvm/PowerTunnel) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - Network Packet Alter Tools
|
||||
* [ByeByeDPI](https://github.com/romanvht/ByeByeDPI/blob/master/README-en.md), [PowerTunnel](https://github.com/krlvm/PowerTunnel) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - Network Packet Alter Tools
|
||||
* [YouTubeUnblock](https://github.com/Waujito/youtubeUnblock) - Unblock YouTube with SNI Spoof / OpenWrt / Entware Routers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -475,7 +482,7 @@
|
|||
* [Delusionz](https://delusionz.xyz/) / [Discord](https://discord.com/invite/Dpj8C8SAmH)
|
||||
* [ProxyPal](https://proxypal.net/) / [Telegram](https://t.me/PlainProxies)
|
||||
* [Proxyium](https://proxyium.com/)
|
||||
* [Szvy Central](https://szvy.lol/), [2](https://play.szvy.win/), [3](https://studying-central.global.ssl.fastly.net/), [4](https://zearn.global.ssl.fastly.net/)
|
||||
* [Szvy Central](https://studying-central.global.ssl.fastly.net/)
|
||||
* [Google Translate](https://translate.google.com/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#google-translate-note)
|
||||
* [Proxy Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper) or [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker) - Proxy Scrapers / Checkers
|
||||
* [CheckSocks5](https://checksocks5.com/) - SOCKS5 Proxy Checker
|
||||
|
|
|
|||
BIN
docs/public/hall.png
Normal file
BIN
docs/public/hall.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 81 KiB |
BIN
docs/public/uwu-hall.png
Normal file
BIN
docs/public/uwu-hall.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 334 KiB |
BIN
docs/public/xmasfmhy.png
Normal file
BIN
docs/public/xmasfmhy.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 574 KiB |
218
docs/reading.md
218
docs/reading.md
|
|
@ -6,29 +6,28 @@
|
|||
|
||||
# ► Ebooks
|
||||
|
||||
* 🌐 **[Open Slum](https://open-slum.org/)** - Book Site Index / Uptime Tracking
|
||||
* 🌐 **[Open Slum](https://open-slum.org/)**, [2](https://open-slum.pages.dev/) - Book Site Index / Uptime Tracking
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.li/), [3](https://annas-archive.se/) - Books / Comics / [Auto-Expand](https://greasyfork.org/en/scripts/494262) / [Matrix](https://matrix.to/#/#annas:archivecommunication.org) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
||||
* ⭐ **[Z-Library](https://z-lib.gd/)**, [2](https://articles.sk/), [3](https://1lib.sk/), [4](https://z-lib.fm/) - Books / Comics / [Apps / Extensions](https://go-to-library.sk/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
||||
* ⭐ **[Z-Library](https://z-lib.gd/)**, [2](https://articles.sk/), [3](https://1lib.sk/), [4](https://z-lib.fm/) - Books / Comics / [Apps / Extensions](https://go-to-library.sk/), [2](https://playtorrio.pages.dev/) / [.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 / [Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - Books / Audiobooks / Comics / Sheet Music / [Invite Required](https://www.myanonamouse.net/inviteapp.php)
|
||||
* ⭐ **[Library Genesis](https://libgen.li/)** - 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) / [Subreddit](https://reddit.com/r/libgen)
|
||||
* [Internet Archive](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/) - Book Search / Download
|
||||
* [BookSee](https://en.booksee.org/) - Book Search / Download
|
||||
* [The Library](https://discord.gg/mSyFJz9) - Books / Discord
|
||||
* [eBookoz](https://ebookoz.net/) - Books
|
||||
* [WeLib](https://welib.org/) - Anna's Archive Mirror / [Unofficial](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#welib-note)
|
||||
* [Bookstagram](https://vk.com/bookstagram_eng) - Books / Magazines / VK
|
||||
* [dpgroup](https://www.dpgroup.org/) - Books / Magazines / Sign-Up
|
||||
* [eBookBB](https://ebookbb.in/) - Books / Download
|
||||
* [iBookPile](https://ibookpile.in/) - Books / Download
|
||||
* [Liber3](https://liber3.eth.limo/) - Book Search / Download
|
||||
* [BookSee](https://en.booksee.org/) - Book Search / Download
|
||||
* [eBookoz](https://ebookoz.net/) - Books
|
||||
* [Bookstagram](https://vk.com/bookstagram_eng) - Books / Magazines / VK
|
||||
* [dpgroup](https://www.dpgroup.org/) - Books / Magazines / Sign-Up
|
||||
* [Library Land](https://library.land/) - Books / Online Reading
|
||||
* [AllFreeBooks](https://allfreebooks.org/) - Book / Download
|
||||
* [BookFrom.net](https://www.bookfrom.net/) - Books / Online Reading
|
||||
* [Novel12](https://novel12.com/) - Books / Online Reading
|
||||
* [ReadOnlineFreeBook](https://readonlinefreebook.com/) - Books / Online Reading
|
||||
* [NovelsArchive](https://t.me/NovelsArchive) - Books / Telegram
|
||||
* [BooksMania](https://t.me/booksmania) - Books / Telegram
|
||||
* [BookArticlesBot](https://t.me/BookArticlesBot) - Books / Telegram
|
||||
* [FreeBannedBooks](https://freebannedbooks.org/) - US Banned Books
|
||||
* [Calibre](https://calibre-ebook.com/) - Ebook Manager / Downloader / [Libraries / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_calibre_libraries)
|
||||
* [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
|
||||
|
|
@ -36,7 +35,7 @@
|
|||
* [The Free Book Library](https://ebooks.i2p/) - I2P Required
|
||||
* [r/FreeEBOOKS](https://reddit.com/r/FreeEBOOKS) - Ebook Subreddit
|
||||
* [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://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#irc-highway-note)
|
||||
* <irc://irc.irchighway.net/ebooks> / [Request Guide](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#irc-highway-note)
|
||||
* 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/)
|
||||
|
||||
***
|
||||
|
|
@ -55,6 +54,7 @@
|
|||
* [JustFreeBooks](https://www.justfreebooks.info/)
|
||||
* [Global Grey](https://www.globalgreyebooks.com/index.html)
|
||||
* [DPLA](https://dp.la/)
|
||||
* [Fadedpage](https://www.fadedpage.com/)
|
||||
* [E-Book Mecca](https://ebook-mecca.com/)
|
||||
* [Freeditorial](https://freeditorial.com/)
|
||||
* [Planet eBook](https://www.planetebook.com/)
|
||||
|
|
@ -62,15 +62,17 @@
|
|||
* [Lit2Go](https://etc.usf.edu/lit2go/)
|
||||
* [Planet Publish](https://www.planetpublish.com/)
|
||||
* [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012)
|
||||
* [Ebookzy](https://ebookzy.com/) - Classics
|
||||
* [By the Fireplace](https://bythefireplace.com/) - Classics
|
||||
* [DigiLibraries](https://digilibraries.com/) - Classics
|
||||
* [ExClassics](https://www.exclassics.com/) - Obscure Books
|
||||
* [sherlock-holm.es](https://sherlock-holm.es/) - Complete Sherlock Holmes Canon
|
||||
* [GrimmStories](https://www.grimmstories.com/) or [AndersenStories](https://www.andersenstories.com/) - Fairy Tales
|
||||
* [Wikibooks](https://www.wikibooks.org/) - Wikimedia Community
|
||||
* [Hoopla](https://www.hoopladigital.com/) - Library Card Required
|
||||
* [WorldCat](https://www.worldcat.org/), [LibrarySearch](https://librarysearch.gre.ac.uk/) or [TRL](https://www.trl.org/) - Search Local Libraries / [Extension](https://www.libraryextension.com/)
|
||||
* [PublicDomainReview](https://publicdomainreview.org/) - Reviews / Essays of Public Domain Material
|
||||
* [Distributed Proofreaders](https://www.pgdp.net/) - Help Digitalize Public Domain Books to Ebooks
|
||||
* [Distributed Proofreaders](https://www.pgdp.net/) - Help Digitize Public Domain Books to Ebooks
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -80,12 +82,12 @@
|
|||
* [pdfroom](https://pdfroom.com/) - Books / Comics
|
||||
* [Ebook PDF](https://ebookpdf.com/) - Books
|
||||
* [KuPDF](https://kupdf.net/) - Books
|
||||
* [ePDF](https://epdf.tips/), [2](https://epdf.pub/) - Books
|
||||
* [ePDF](https://epdf.pub/), [2](https://epdf.pub/) - Books
|
||||
* [PDFCoffee](https://pdfcoffee.com) - Books
|
||||
* [PDFCookie](https://pdfcookie.com/) - Books
|
||||
* [iDoc](https://idoc.tips/) - Books
|
||||
* [freepdfbook](https://freepdfbook.com/) - Books
|
||||
* [Amazonaws](https://www.google.com/search?q=site%3As3.amazonaws.com+%3CSearch+term%3E+filetype%3Apdf) - Amazon PDF Search
|
||||
* [AWS S3](https://www.google.com/search?q=site%3As3.amazonaws.com+%3CSearch+term%3E+filetype%3Apdf) - Find PDFs on AWS
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -104,9 +106,8 @@
|
|||
|
||||
* 🌐 **[Ebook Reader Index](https://wiki.mobileread.com/wiki/E-book_software)** or [Mobile Read](https://www.mobileread.com/) - Ebook Reader Indexes
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_reading) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_reading)** - Mobile Ebook Readers
|
||||
* ⭐ **[Google Play Books](https://play.google.com/books)** - Manage Books / Auto Metadata / Allows 1000 Uploads
|
||||
* ⭐ **[Foxit](https://www.foxit.com/pdf-reader/)** - PDF Reader / All Platforms / [Pro](https://rentry.co/FMHYB64#foxit) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#foxit-warning)
|
||||
* ⭐ **[Koodo](https://www.koodoreader.com/)** - Ebook Reader / Windows, Mac, Linux / [GitHub](https://github.com/koodo-reader/koodo-reader)
|
||||
* ⭐ **[Foxit](https://www.foxit.com/pdf-reader/)** - PDF Reader / All Platforms / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites) (search) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#foxit-warning)
|
||||
* ⭐ **[Koodo](https://www.koodoreader.com/)** - Ebook Reader / All Platforms / [GitHub](https://github.com/koodo-reader/koodo-reader)
|
||||
* ⭐ **[SumatraPDFReader](https://www.sumatrapdfreader.org/free-pdf-reader)** - Ebook & PDF Reader / Windows
|
||||
* ⭐ **[Calibre](https://calibre-ebook.com/)** - Ebook Reader / Windows, Mac, Linux
|
||||
* ⭐ **[EinkBro](https://github.com/plateaukao/einkbro)** - E-Ink Browser
|
||||
|
|
@ -116,6 +117,8 @@
|
|||
* [KoReader](https://koreader.rocks/) - Ebook Reader / Windows, Android / [GitHub](https://github.com/koreader/koreader)
|
||||
* [Jane Reader](https://janereader.com/) - Ebook Reader / Windows, Mac
|
||||
* [FBReader](https://fbreader.org/) - Ebook Reader / Windows, Android, iOS
|
||||
* [Anx Reader](https://anx.anxcye.com/) - Ebook Reader / Windows, Mac, Android, iOS / [GitHub](https://github.com/anxcye/anx-reader)
|
||||
* [PlayTorrio](https://playtorrio.pages.dev/) - Ebook Reader / Windows / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
* [Alexandria](https://github.com/btpf/Alexandria) - Ebook Reader / Windows, Mac, Linux
|
||||
* [Librum](https://librumreader.com) - Ebook Reader / Windows, Mac, Linux / [GitHub](https://github.com/Librum-Reader/Librum)
|
||||
* [Thorium](https://thorium.edrlab.org/) - Ebook Reader / Windows, Mac, Linux
|
||||
|
|
@ -138,12 +141,14 @@
|
|||
* [dotepub](https://dotepub.com/) - Convert Webpages to EBooks
|
||||
* [The Open Book](https://github.com/joeycastillo/The-Open-Book) - DIY Ebook Reader
|
||||
* [KoboCloud](https://github.com/fsantini/KoboCloud) - Sync Kobo to Cloud Services
|
||||
* [ReaderBackdrop](https://www.readerbackdrop.com/) - Wallpapers for E-Readers
|
||||
|
||||
***
|
||||
|
||||
## ▷ Browser Ebook Readers
|
||||
|
||||
* ⭐ **[Reader View](https://webextension.org/listing/chrome-reader-view.html)**, [2](https://mybrowseraddon.com/reader-view.html)
|
||||
* ⭐ **[Google Play Books](https://play.google.com/books)** - Manage Books / Auto Metadata / Allows 1000 Uploads
|
||||
* [Annas Archive Reader](https://annas-archive.org/view)
|
||||
* [Flow](https://www.flowoss.com/)
|
||||
* [Online Cloud File Viewer](https://www.fviewer.com/)
|
||||
|
|
@ -187,8 +192,7 @@
|
|||
* [Auto-Brochures.com](https://www.auto-brochures.com/) - Auto Brochures
|
||||
* [The Trove](https://web.archive.org/web/20210614215400/https://thetrove.is/) - Books / Fantasy / TTRPG
|
||||
* [Project Aon](https://www.projectaon.org/en/Main/Home) - Lone Wolf Gamebooks
|
||||
* [Trans Reads](https://transreads.org/) - Transgender-focused Literature
|
||||
* [Anarcho-Copy](https://anarcho-copy.org/) - Anarchism
|
||||
* [Trans Reads](https://transreads.org/) - Transgender-Focused Literature
|
||||
* [Anarchist FAQ](https://www.anarchistfaq.org/) - Anarchism / Translations
|
||||
* [Archive.Leftove.rs](https://archive.leftove.rs/) - Protest Documents
|
||||
* [Marxists Internet Archive](https://www.marxists.org/) - Socialism / Communism
|
||||
|
|
@ -201,46 +205,39 @@
|
|||
|
||||
## ▷ Light Novels
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites#novels)** - Light Novel Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites#novels)** - Light Novel Site Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-novel)**, [2](https://everythingmoe.org/#section-novel) - Light Novel Sites Index / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* 🌐 **[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/)**
|
||||
* ⭐ **[NovelFire](https://novelfire.net/)**
|
||||
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||
* [Just Light Novels](https://www.justlightnovels.com/) / Allows Downloads
|
||||
* [LightNovelHeaven](https://lightnovelheaven.com), [AllNovel](https://allnovel.org), [NovelFull](https://novelfull.com/) or [NOVGO](https://novgo.net/)
|
||||
* [Vynovel](https://vynovel.com/)
|
||||
* [Ranobes](https://ranobes.top/)
|
||||
* [Light Novel World](https://lightnovelworld.org/)
|
||||
* [Baka-Tsuki](https://www.baka-tsuki.org)
|
||||
* [Armaell's Library](https://armaell-library.net/) / Allows Downloads
|
||||
* [WuxiaWorld](https://www.wuxiaworld.com/)
|
||||
* [WTR-LAB](https://wtr-lab.com/) / Sign-Up Required for AI Translations
|
||||
* [WuxiaSpot](https://www.wuxiaspot.com/)
|
||||
* [WebNovel.com](https://www.webnovel.com/)
|
||||
* [AsianHobbyist](https://www.asianhobbyist.com/)
|
||||
* [Wordrain69](https://wordrain69.com/)
|
||||
* [Wuxia World](https://wuxiaworld.site/)
|
||||
* [Wuxiabox](https://www.wuxiabox.com/)
|
||||
* [NovelGo](https://novelgo.id)
|
||||
* [Wuxia.click](https://wuxia.click/)
|
||||
* [Ocean of EPUB](https://oceanofepub.net/) / Allows Downloads
|
||||
* [Novel Bin](https://novelbin.com/), [2](https://novelbin.me/)
|
||||
* [ReadNovelFull](https://readnovelfull.com)
|
||||
* [FreeWebNovel](https://freewebnovel.com/)
|
||||
* [Translated Light Novels](https://rentry.co/FMHYB64#translated-light-novels) / Allows Downloads
|
||||
* [NovelNext](https://novelnext.com/)
|
||||
* [NovelBuddy](https://novelbuddy.io/), [2](https://novelbuddy.com/)
|
||||
* [Wuxia Box](https://www.wuxiabox.com/)
|
||||
* [NovelCool](https://www.novelcool.com/)
|
||||
* [Novels.pl](https://www.novels.pl/) / Allows Downloads
|
||||
* [Scribblehub](https://www.scribblehub.com/)
|
||||
* [Novel Hall](https://www.novelhall.com/)
|
||||
* [Rekt Novel Compilations](https://rektnovelcompilations.wordpress.com/)
|
||||
* [WoopRead](https://woopread.com/)
|
||||
* [Royal Road](https://www.royalroad.com/) - Web Novels
|
||||
* [Light Novel Archive](https://t.me/LightNovelArchives) or [LN_Index](https://t.me/LN_Index) - Telegram
|
||||
* ⭐ **[NovelFire](https://novelfire.net/)** - Online Reading
|
||||
* ⭐ **[NovelCool](https://www.novelcool.com/)** - Online Reading
|
||||
* ⭐ **[WuxiaClick](https://wuxia.click/)** - Online Reading
|
||||
* [Wuxiabox](https://www.wuxiabox.com/) - Online Reading
|
||||
* [NovelNext](https://novelnext.com/) - Online Reading
|
||||
* [WuxiaSpot](https://www.wuxiaspot.com/) - Online Reading
|
||||
* [WTR-LAB](https://wtr-lab.com/) - Online Reading / Sign-Up Required for AI Translations
|
||||
* [Vynovel](https://vynovel.com/) - Online Reading
|
||||
* [Novel Bin](https://novelbin.com/), [2](https://novelbin.me/) - Online Reading
|
||||
* [Translated Light Novels](https://rentry.co/FMHYB64#translated-light-novels) - Downloads
|
||||
* [Light Novel World](https://lightnovelworld.org/) - Online Reading
|
||||
* [Wuxia World](https://wuxiaworld.site/) - Online Reading
|
||||
* [Ranobes](https://ranobes.top/) - Online Reading
|
||||
* [NovelBuddy](https://novelbuddy.io/), [2](https://novelbuddy.com/) - Online Reading
|
||||
* [ReadNovelFull](https://readnovelfull.com) - Online Reading
|
||||
* [Just Light Novels](https://www.justlightnovels.com/) - Downloads
|
||||
* [LightNovelHeaven](https://lightnovelheaven.com), [AllNovel](https://allnovel.org), [NovelFull](https://novelfull.com/) or [NOVGO](https://novgo.net/) - Online Reading
|
||||
* [NovelGo](https://novelgo.id) - Online Reading
|
||||
* [Armaell's Library](https://armaell-library.net/) - Downloads
|
||||
* [Baka-Tsuki](https://www.baka-tsuki.org) - Online Reading
|
||||
* [WuxiaWorld.com](https://www.wuxiaworld.com/) - Online Reading
|
||||
* [AsianHobbyist](https://www.asianhobbyist.com/) - Online Reading
|
||||
* [Ocean of EPUB](https://oceanofepub.net/) - Downloads
|
||||
* [Light Novel Archive](https://t.me/LightNovelArchives) or [LN_Index](https://t.me/LN_Index) - Telegram / Downloads
|
||||
* [Book Smelting Bot](https://t.me/epub_smelter_bot) - Telegram / Bot
|
||||
* [FreeWebNovel](https://freewebnovel.com/) - Web Novels
|
||||
* [WebNovel.com](https://www.webnovel.com/) - Web Novels
|
||||
* [Royal Road](https://www.royalroad.com/) - Web Novels
|
||||
* [Scribblehub](https://www.scribblehub.com/) - Web Novels
|
||||
* [Novels.pl](https://www.novels.pl/) - Novels / Audio Recordings
|
||||
* [Baka-Tsuki](https://www.baka-tsuki.org/project/?title=Main_Page) - Novels / Audio Recordings
|
||||
* [LN-Crawler-Colab](https://colab.research.google.com/github/HongYue1/LightNovel-Crawler-Colab/blob/main/lightnovel_crawler.ipynb) / [GitHub](https://github.com/HongYue1/LightNovel-Crawler-Colab), [Lightnovel Crawler](https://github.com/dipu-bd/lightnovel-crawler/), [novel-downloader](https://greasyfork.org/en/scripts/406070), [QuickNovel](https://github.com/LagradOst/QuickNovel) or [anime-dl](https://github.com/vrienstudios/anime-dl) - Light Novel Downloaders
|
||||
* [WebToEpub](https://github.com/dteviot/WebToEpub) - Novel to EPUB Converter
|
||||
|
|
@ -259,6 +256,9 @@
|
|||
* [Vestal Review](https://www.vestalreview.net/) - Short Stories
|
||||
* [Library of Short Stories](https://www.libraryofshortstories.com/) - Short Stories
|
||||
* [Vocal Media](https://vocal.media/fiction/) - Short Stories
|
||||
* [xpressenglish](https://xpressenglish.com/) - Short Stories
|
||||
* [ClassicShorts](https://www.classicshorts.com/) - Classic Short Stories
|
||||
* [Pulp Magazines Project](https://www.pulpmags.org/) - Classic Fiction Story Magazine
|
||||
* [Poop Fiction](https://readpoopfiction.com/) - Random Short Stories
|
||||
* [the Wanderers' Library](https://wanderers-library.wikidot.com/) - Fictional Story Collabs
|
||||
* [RPC Authority](http://rpc-wiki.net/) - Fictional Story Collabs
|
||||
|
|
@ -310,9 +310,6 @@
|
|||
|
||||
* ⭐ **[Sacred Text Archive](https://sacred-texts.com/)** - Religion / Mythology / Folklore / Esoterica / [Classic View](https://archive.sacred-texts.com/)
|
||||
* ⭐ **[Libris Adepti](https://librisadepti.com/)** - Esoterica / Occult
|
||||
* [Theoi](https://www.theoi.com/) - Greek Mythology
|
||||
* [Germanic Mythology](https://www.germanicmythology.com/index.html) - Germanic Mythology
|
||||
* [Inuit Myths](https://www.inuitmyths.com/index.htm) - Inuit Mythology
|
||||
* [Grimoar.cz](http://english.grimoar.cz/?Loc=key&Lng=2), [Darkbooks](https://darkbooks.org/collection/top250.html) or [Astrum Argenteum](https://www.astrumargenteum.org/library/) - Occult Books
|
||||
* [Hermetic International](https://www.hermetics.net/) - Religion / Occult / Gnosticism / Hermetic / Philosophy
|
||||
* [Hermetics](https://www.hermetics.org/library.html) - Ancient Texts / Mythology / Occult
|
||||
|
|
@ -335,6 +332,7 @@
|
|||
* [IAPSOP](http://iapsop.com/) - Spiritualist / Occult Periodicals
|
||||
* [Dhushara Research](https://www.dhushara.com/index.htm) - Metaphysics / Conspiracies / Psychedelics
|
||||
* [The Theosophical Society](https://www.theosociety.org/) or [Theosophy World](https://www.theosophy.world/portfolio/term/ebooks) - Theosophy
|
||||
* [Great Library of Eris](https://libraryoferis.org/) - Discordianism
|
||||
* [Shankaracharya](https://www.shankaracharya.org/) - Hinduism
|
||||
* [Vedanta Shastras](https://www.shastras.com/) - Hinduism
|
||||
* [Encyclopedia Of Hinduism](https://archive.org/details/ConstanceA.JonesJamesD.RyanEncyclopediaOfHinduism/) - Hinduism Encyclopedia
|
||||
|
|
@ -397,15 +395,16 @@
|
|||
* ⭐ **[NEPU Audiobooks](https://nepu.to/ebooks)**
|
||||
* [FullLengthAudiobooks](https://fulllengthaudiobooks.net/)
|
||||
* [HDAudiobooks](https://hdaudiobooks.net/)
|
||||
* [BigAudiobooks](https://bigaudiobooks.club/)
|
||||
* [BigAudiobooks](https://bigaudiobooks.net/)
|
||||
* [HotAudioBooks](https://hotaudiobooks.com/)
|
||||
* [BookAudiobook](https://bookaudiobook.net/)
|
||||
* [GalaxyAudiobooks](https://galaxyaudiobook.com/) / [Downloader](https://github.com/nazdridoy/audiobooksnatcher)
|
||||
* [CD Audiobook](https://cdaudiobook.com/)
|
||||
* [Audiozaic](https://audiozaic.com/)
|
||||
* [zAudiobooks](https://zaudiobooks.com/)
|
||||
* [Find Audiobook](https://findaudiobook.app/)
|
||||
* [Audio AZ](https://audioaz.com/)
|
||||
* [r/audiobooksonyoutube](https://reddit.com/r/audiobooksonyoutube)
|
||||
* [PlayTorrio](https://playtorrio.pages.dev/) - Audiobook App / Windows / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
* [Spotify Audiobooks](https://open.spotify.com/artist/1FSWXfsYsosTxjcV9WoLax) - Select Playlists
|
||||
|
||||
***
|
||||
|
|
@ -413,10 +412,10 @@
|
|||
## ▷ Audiobook Tools
|
||||
|
||||
* [AudiobookCovers](https://audiobookcovers.com/) - Download Audiobook Covers
|
||||
* [Audiblez](https://github.com/santinic/audiblez), [Ebook2Audiobook](https://hub.docker.com/r/athomasson2/ebook2audiobook), [ElevenReader](https://elevenreader.io/) or [ReadWise](https://readwise.io/read) (reset trial) - Book to Audiobook Converters
|
||||
* [Audiblez](https://github.com/santinic/audiblez), [Ebook2Audiobook](https://github.com/DrewThomasson/ebook2audiobook) / [2](https://huggingface.co/spaces/drewThomasson/ebook2audiobook), [ElevenReader](https://elevenreader.io/), [Paper2Audio](https://www.paper2audio.com/) or [ReadWise](https://readwise.io/read) (reset trial) - Convert Books / Documents to Audiobooks
|
||||
* [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/) - Audible DRM Remover / Manager
|
||||
* [AudiobookShelf](https://www.audiobookshelf.org/) / [GitHub](https://github.com/advplyr/audiobookshelf-app) or [BookSonic](https://booksonic.org/) - Self-Hosted Audiobook Servers
|
||||
* [AudiobookShelf](https://www.audiobookshelf.org/) / [Multi-Platform Client](https://github.com/Vito0912/abs_flutter) / [Mobile](https://github.com/advplyr/audiobookshelf-app), [2](https://github.com/GrakovNe/lissen-android/) or [BookSonic](https://booksonic.org/) - Self-Hosted Audiobook Servers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -424,7 +423,7 @@
|
|||
|
||||
## ▷ Comics
|
||||
|
||||
* ⭐ **[ReadComicsOnline](https://readcomiconline.li/)**
|
||||
* ⭐ **[ReadComicsOnline](https://readcomiconline.li/)** / [Desktop App](https://playtorrio.pages.dev/)
|
||||
* ⭐ **[BatCave](https://batcave.biz/)** - May Require VPN
|
||||
* ⭐ **[GetComics](https://getcomics.org/)** - Download Comics
|
||||
* ⭐ **[ComicBookPlus](https://comicbookplus.com/)** - Golden Age Comics
|
||||
|
|
@ -436,12 +435,11 @@
|
|||
* [ReadAllComics](https://readallcomics.com/)
|
||||
* [Read Comics Online](https://readcomicsonline.ru/)
|
||||
* [4chan /co/](https://boards.4channel.org/co/catalog#s=official%20win) - Weekly Downloads
|
||||
* [Read Full Comic](https://readfullcomic.com/), [2](https://viewcomiconline.com/)
|
||||
* [ZipComic](https://www.zipcomic.com/)
|
||||
* [OldComicsWorld](https://oldcomicsworld.blogspot.com/) - Golden Age Comic Downloads
|
||||
* [DigitalComicMuseum](https://digitalcomicmuseum.com/) - Golden Age Comic Downloads
|
||||
* [Comics Kingdom](https://comicskingdom.com/) - Comics Strips
|
||||
* [GoComics](https://www.gocomics.com/) - Comics Strips / uBO Bypasses Trial Limit
|
||||
* [GoComics](https://www.gocomics.com/) - Comics Strips / [Bypass Limit](https://pastebin.com/pwUxTPAr), [2](https://bin.disroot.org/?9169f16676b9b1e5#9ZeRZR9Ms37wpCQdwom8yLnYrWZJVDd1sT98d4Yg65YL)
|
||||
* [The Oatmeal](https://theoatmeal.com/) - Webcomics
|
||||
* [Hiveworks Comics](https://www.thehiveworks.com/) - Webcomics
|
||||
* [Loading Artist](https://loadingartist.com/) - Webcomics
|
||||
|
|
@ -461,40 +459,44 @@
|
|||
## ▷ Manga
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites#manga)** / [Discord](https://discord.gg/vShRGx8ZBC), [The Index](https://theindex.moe/library/manga) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/#section-manga), [2](https://everythingmoe.org/#section-manga) / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS) - Manga Sites Indexes
|
||||
* 🌐 **[Rawmangaz](https://rentry.co/rawmangaz)** - List of Raw Manga Sites
|
||||
* 🌐 **[Rawmangaz](https://claraiscute.neocities.org/Guides/rawmangaz/)** - List of Raw Manga Sites
|
||||
* ↪️ **[Manga Readers / Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_readers)**
|
||||
* ↪️ **[Manga Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_downloaders)**
|
||||
* ⭐ **[MangaDex](https://mangadex.org/)** / [Downloader](https://mangadex-dl.mansuf.link/) / [Script](https://github.com/frozenpandaman/mangadex-dl) / [Subreddit](https://www.reddit.com/r/mangadex/) / [Discord](https://discord.gg/mangadex)
|
||||
* ⭐ **[Weeb Central](https://weebcentral.com/)**
|
||||
* ⭐ **[BATO.TO](https://bato.to/)**, [2](https://fto.to/) / [Mirrors](https://batotomirrors.pages.dev/) / [Discord](https://discord.com/invite/batoto)
|
||||
* ⭐ **[MangaDex](https://mangadex.org/)** / [Downloader](https://mangadex-dl.mansuf.link/) / [Script](https://github.com/frozenpandaman/mangadex-dl) / [Subreddit](https://www.reddit.com/r/mangadex/) / [Discord](https://discord.gg/mangadex)
|
||||
* ⭐ **[MangaPark](https://mangapark.net/)** / [Proxies](https://mangaparkmirrors.pages.dev/) / [Discord](https://discord.gg/jctSzUBWyQ)
|
||||
* ⭐ **[Comix](https://comix.to/)** / [Subreddit](https://reddit.com/r/comix) / [Discord](https://discord.com/invite/kZgWWHUj22)
|
||||
* ⭐ **[MangaFire](https://mangafire.to/)** / [Subreddit](https://www.reddit.com/r/Mangafire/) / [Discord](https://discord.com/invite/KRQQKzQ6CS)
|
||||
* ⭐ **[MangaNato](https://www.manganato.gg/)**, [2](https://www.nelomanga.net/), [3](https://www.mangakakalot.gg), [4](https://www.natomanga.com/) / [Discord](https://discord.gg/Qhz84GGvE9)
|
||||
* ⭐ **[BATO.TO](https://bato.to/)**, [2](https://fto.to/) / [Mirrors](https://batotomirrors.pages.dev/) / [Discord](https://discord.com/invite/batoto)
|
||||
* ⭐ **[Kagane](https://kagane.org/)** / [Discord](https://discord.com/invite/kBPYVSzwUE)
|
||||
* ⭐ **[Nyaa Manga / LNs](https://nyaa.si/?f=0&c=3_0&q=)** - Torrents
|
||||
* [MangaHaven](https://mangahaven.net/)
|
||||
* [MangaKatana](https://mangakatana.com/)
|
||||
* [MangaFire](https://mangafire.to/) / [Subreddit](https://www.reddit.com/r/Mangafire/) / [Discord](https://discord.com/invite/KRQQKzQ6CS)
|
||||
* [The Manga Library](https://rentry.co/FMHYB64#the-manga-library)
|
||||
* [MangaHub](https://mangahub.io/)
|
||||
* [MangaNato](https://www.manganato.gg/), [2](https://www.nelomanga.net/), [3](https://www.mangakakalot.gg), [4](https://www.natomanga.com/) / [Discord](https://discord.gg/Qhz84GGvE9)
|
||||
* [Cubari Proxy](https://proxy.cubari.moe/) - Multi Site Web Client / [Discord](https://discord.com/invite/SavdUC45MS)
|
||||
* [Rive Manga](https://rivestream.org/manga)
|
||||
* [Great Discord Links](https://discord.gg/xAsyVb52a9) or [MangaDex Groups](https://mangadex.org/groups) - Manga Scanlation Groups
|
||||
* [Madokami](https://wotaku.wiki/guides/manga/madokami) - Makokami Download Guide / [Archive](https://rentry.co/FMHYB64#madokami)
|
||||
* [Atsumaru](https://atsu.moe/) / [Discord](https://discord.gg/Tj4QmEF4uV)
|
||||
* [MangaBuddy](https://mangabuddy.com), [MangaForest](https://mangaforest.me/) or [MangaMirror](https://mangamirror.com/)
|
||||
* [MangaBall](https://mangaball.net/)
|
||||
* [mangapill](https://mangapill.com/)
|
||||
* [Like Manga](https://likemanga.in/)
|
||||
* [MangaHere](https://www.mangahere.cc/) or [MangaFox](https://fanfox.net/)
|
||||
* [MangaBuddy](https://mangabuddy.com), [MangaForest](https://mangaforest.me/) or [MangaMirror](https://mangamirror.com/)
|
||||
* [Webtoon](https://www.webtoons.com/) / [Discord](https://discord.com/invite/webtoonofficial)
|
||||
* [MangaTaro](https://mangataro.org/)
|
||||
* [Rive Manga](https://rivestream.org/manga)
|
||||
* [MangaHaven](https://mangahaven.net/)
|
||||
* [The Manga Library](https://rentry.co/FMHYB64#the-manga-library)
|
||||
* [MangaHub](https://mangahub.io/)
|
||||
* [Cubari Proxy](https://proxy.cubari.moe/) - Multi Site Web Client / [Discord](https://discord.com/invite/SavdUC45MS)
|
||||
* [MangaBerri](https://mangaberri.com/) - Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [Webtoon](https://www.webtoons.com/) - Manhwa / [Discord](https://discord.com/invite/webtoonofficial)
|
||||
* [Toonily](https://toonily.com/) - Manhwa
|
||||
* [ManhwaClan](https://manhwaclan.com/) - Manhwa
|
||||
* [AquaReader](https://aquareader.net/) - Manhua
|
||||
* [Great Discord Links](https://discord.gg/xAsyVb52a9) or [MangaDex Groups](https://mangadex.org/groups) - Manga Scanlation Groups
|
||||
* [Madokami](https://wotaku.wiki/guides/manga/madokami) - Makokami Download Guide / [Archive](https://rentry.co/FMHYB64#madokami)
|
||||
* [MediaBang](https://medibang.com/mpc/) or [NamiComi](https://namicomi.com/en) - User-Created Manga
|
||||
* [MP4DIRECTS](https://mp4directs.com/) - Manga / Light Novels Download Forum
|
||||
* [MangaUpdates](https://www.mangaupdates.com/) - Manga Database / Releases Updates
|
||||
* [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
|
||||
* [PlayTorrio](https://playtorrio.pages.dev/) - Manga App / Windows / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
* [Seanime](https://seanime.app/) - Self-Hosted Manga App
|
||||
* [Kaizoku](https://github.com/lucy-goblin/kaizoku-next) - Self-Hosted Manga Downloader
|
||||
* [Webcomic Reader](https://openuserjs.org/scripts/anka-213/Webcomic_Reader) - Preloads Images, Remembers Progress and Keyboard Support
|
||||
* [BallonsTranslator](https://github.com/dmMaze/BallonsTranslator/blob/master/README_EN.md), [Cotrans](https://cotrans.touhou.ai/) or [Scanlate](https://scanlate.io/) - Manga Translators
|
||||
* [Manga-Manager](https://github.com/MangaManagerORG/Manga-Manager) - Manga Managers
|
||||
|
|
@ -538,18 +540,17 @@
|
|||
|
||||
# ► Educational Books
|
||||
|
||||
* 🌐 **[IvyPanda](https://ivypanda.com/blog/1000-open-textbooks-and-learning-resources-for-all-subjects/)** - Educational Book Site Index
|
||||
* ↪️ **[Language Learning Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25BA_language_learning)**
|
||||
* ↪️ **[Dictionaries / Thesaurus'](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_dictionaries_.2F_thesaurus)**
|
||||
* ↪️ **[Encyclopedias](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_encyclopedias)**
|
||||
* ⭐ **[Openstax](https://openstax.org/)** or [OpenStax College Textbooks](https://philschatz.com/books/)
|
||||
* ⭐ **[Openstax](https://openstax.org/)**
|
||||
* ⭐ **[AcademicTorrents](https://academictorrents.com/)**
|
||||
* [Institutional Access](https://www.facebook.com/groups/850609558335839) - Request Institutional Access PDFs
|
||||
* [Online Books Page](https://onlinebooks.library.upenn.edu/)
|
||||
* [The Literature Network](https://www.online-literature.com/)
|
||||
* [Memory of the World](https://www.memoryoftheworld.org/)
|
||||
* [Taleem360](https://www.taleem360.com/)
|
||||
* [LibreTexts](https://one.libretexts.org/home), [2](https://libretexts.org/platforms/libraries/), [3](https://libretexts.org/)
|
||||
* [LibreTexts](https://commons.libretexts.org), [2](https://libretexts.org/platforms/libraries/), [3](https://libretexts.org/)
|
||||
* [PDFBooksWorld](https://www.pdfbooksworld.com/)
|
||||
* [Monoskop](https://monoskop.org/log/)
|
||||
* [LibertyFund](https://oll.libertyfund.org/)
|
||||
|
|
@ -577,14 +578,7 @@
|
|||
* [JSTor](https://www.jstor.org/) - Books / Journals
|
||||
* [UCL Press](https://www.uclpress.co.uk/) - Books / Journals
|
||||
* [Dummies Store](https://t.me/dummiesbook) - Books for Dummies Collection
|
||||
* [Textbook Search Engine](https://cse.google.com/cse/publicurl?cx=011394183039475424659:5bfyqg89ers), [2](https://cse.google.com/cse?cx=001639227550064093264:dznewka3cca) - Search for Textbooks
|
||||
* [Open Textbook Library](https://open.umn.edu/opentextbooks/) - Textbooks
|
||||
* [ReadYourFlow](https://readyourflow.com/) - Textbooks
|
||||
* [TextBookGo](http://textbookgo.com/) - TextBooks
|
||||
* [Wikibooks](https://en.wikibooks.org/) - Open-Content Texbooks
|
||||
* [2012books](https://2012books.lardbucket.org/) - Creative Commons Books
|
||||
* [Pearson](https://redd.it/smm6ib) - Pearson Textbook Download Guide
|
||||
* [JEEBooksPDF](https://m.youtube.com/c/JEEBooksPDF) - JEE Material / [Telegram](https://telegram.me/jeebookspdf) / Downloads in Descriptions
|
||||
* [ck12](https://www.ck12.org/) - Interactive CK-12
|
||||
* [Bookishfrenzy](https://t.me/premium_ebooks) - Books / Exam Books
|
||||
* [Digital Libraries / Archives](https://oedb.org/ilibrarian/250-plus-killer-digital-libraries-and-archives/) - Online University Libraries
|
||||
|
|
@ -597,7 +591,21 @@
|
|||
* [MedicalStudyZone](https://medicalstudyzone.com/) - Medical
|
||||
* [VetBooks](https://vetbooks.ir/) - Veterinary
|
||||
* [Brill](https://brill.com/) - International Law Books / Free for Students Only
|
||||
* [Sewing8](https://t.me/sewing8) - Sewing / Pattern Making Books
|
||||
|
||||
***
|
||||
|
||||
## ▷ Textbooks
|
||||
|
||||
* ↪️ **[JEE / NEET Textbooks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_jee_.2F_neet)**
|
||||
* 🌐 **[IvyPanda](https://ivypanda.com/blog/1000-open-textbooks-and-learning-resources-for-all-subjects/)** - Open-Source Textbooks
|
||||
* [Textbook Search Engine](https://cse.google.com/cse/publicurl?cx=011394183039475424659:5bfyqg89ers), [2](https://cse.google.com/cse?cx=001639227550064093264:dznewka3cca) - Search for Textbooks
|
||||
* [Open Textbook Library](https://open.umn.edu/opentextbooks/) - Textbooks
|
||||
* [OpenStax College Textbooks](https://philschatz.com/books/) - Textbooks
|
||||
* [ReadYourFlow](https://readyourflow.com/) - Textbooks
|
||||
* [TextBookGo](http://textbookgo.com/) - TextBooks
|
||||
* [Wikibooks](https://en.wikibooks.org/) - Open-Content Texbooks
|
||||
* [CLP](https://personal.math.ubc.ca/~CLP/) - Calculus Textbooks
|
||||
* [Pearson](https://redd.it/smm6ib) - Pearson Textbook Download Guide
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -624,7 +632,6 @@
|
|||
## ▷ History Books
|
||||
|
||||
* 🌐 **[r/AskHistorians Recommended](https://www.reddit.com/r/AskHistorians/wiki/books)** - Recommended History Books
|
||||
* ⭐ **[Media History](https://mediahistoryproject.org/)** - Books / Magazines
|
||||
* ⭐ **[EarlyModernTexts](https://www.earlymoderntexts.com)** - Historical Texts
|
||||
* ⭐ **[World History](https://www.worldhistory.org/)** or [Livius](https://www.livius.org/) - History Encyclopedias
|
||||
* [Duke University Library](https://repository.duke.edu/catalog?utf8=%E2%9C%93&search_scope=https%3A%2F%2Frepository.duke.edu%2Fcatalog&q=&search_field=all_fields) - Historical Books
|
||||
|
|
@ -642,9 +649,9 @@
|
|||
* [The National Archives](https://nationalarchives.gov.uk/) - UK Historical Documents
|
||||
* [ToposText](https://topostext.org/) - Historical Greek Documents
|
||||
* [Jewish Virtual Library](https://www.jewishvirtuallibrary.org/) - Encyclopedia of Jewish / Israeli History
|
||||
* [History Newsboys of 1899](https://rentry.co/FMHYB64#history-newsboys-of-1899) - Books / Documents
|
||||
* [WorldRadioHistory](https://worldradiohistory.com/) - Radio History Archive
|
||||
* [The Morgan Library Museum](https://www.themorgan.org/music) or [DIAMM](https://www.diamm.ac.uk/) - Musical Manuscripts
|
||||
* [Tank Archives](https://www.tankarchives.com/) - World War II Armoured Warfare Documents / [X](https://x.com/Tank_Archives)
|
||||
* [HornTip](https://www.horntip.com/) - Military Songbooks
|
||||
* [De Re Militari](https://deremilitari.org/articles/) - Medieval Military History
|
||||
* [ByzantineMilitary](https://byzantinemilitary.blogspot.com/) - Byzantine Military History
|
||||
|
|
@ -664,7 +671,6 @@
|
|||
* [BrainyQuote](https://www.brainyquote.com/)
|
||||
* [AZQuotes](https://www.azquotes.com/)
|
||||
* [QuoteGarden](https://www.quotegarden.com/)
|
||||
* [QuoteMaster](https://www.quotemaster.org/)
|
||||
* [TheOtherPages](https://theotherpages.org/quote.html)
|
||||
* [Quote Collections](https://rentry.co/zeoemsh9)
|
||||
* [Poetry In Translation](https://www.poetryintranslation.com/)
|
||||
|
|
@ -682,7 +688,6 @@
|
|||
|
||||
* 🌐 **[Free-Programming-Books](https://github.com/EbookFoundation/free-programming-books)** - Programming Book Index
|
||||
* ⭐ **[O'Reilly](https://www.oreilly.com/)** - Tech / Programming / [Downloader](https://github.com/lorenzodifuccia/safaribooks) / Infinite trial by clearing cookies & making a new account
|
||||
* ⭐ **[Best-Books.dev](https://www.best-books.dev/)** - Developer Book Recommendations
|
||||
* ⭐ **[ScanLibs](https://scanlibs.com/)**, [2](https://forcoder.net/), [3](https://coderprog.com/)
|
||||
* ⭐ **[EbookFoundation Programming Books](https://ebookfoundation.github.io/free-programming-books/)**
|
||||
* [IT eBooks](https://it-ebooks.info/)
|
||||
|
|
@ -707,6 +712,7 @@
|
|||
|
||||
## ▷ Academic Papers
|
||||
|
||||
* ↪️ **[Research Paper Chatbots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_specialized_chatbots)**
|
||||
* ⭐ **[Sci-Hub](https://sci-hub.se/)** - Science Articles / Research Papers / [Mirrors](https://vertsluisants.fr/index.php?article4/where-scihub-libgen-server-down) / [VK](https://vk.com/sci_hub) / [Subreddit](https://reddit.com/r/scihub)
|
||||
* ⭐ **Sci-Hub Tools** - [Official TG Bot](https://t.me/scihubot), [2](https://t.me/freescience) / [Extension](https://addons.mozilla.org/en-US/firefox/addon/sci-hub-scholar/) / [DL Button](https://greasyfork.org/zh-CN/scripts/370246-sci-hub-button), [2](https://github.com/gchenfc/sci-hub-now) / [PDF Download](https://gagarine.medium.com/use-sci-hub-with-zotero-as-a-fall-back-pdf-resolver-cf139eb2cea7) / [Dumps](https://redd.it/edwi9b) / [DOI Redirect](https://greasyfork.org/en/scripts/412498)
|
||||
* ⭐ **[arXiv](https://arxiv.org/)** - Research Papers
|
||||
|
|
@ -810,6 +816,7 @@
|
|||
* [The Uncensored Library](https://www.uncensoredlibrary.com/en) - Uncensored / Declassified Documents
|
||||
* [FBI Vault](https://vault.fbi.gov/) - Declassified Documents
|
||||
* [The Black Vault](https://www.theblackvault.com/) - Declassified Documents
|
||||
* [Archives.gov/](https://www.archives.gov/) - Declassified Documents
|
||||
* [DDOS](https://ddosecrets.com/) - Transparency Collective
|
||||
* [Open Payments](https://openpaymentsdata.cms.gov/) - Medical Device Company Payment Reports
|
||||
* [NSA Archive](https://nsarchive.gwu.edu/) - Reports
|
||||
|
|
@ -820,7 +827,7 @@
|
|||
* [Google Leaks](https://www.zachvorhies.com/google_leaks/) - Leaked Google Documents
|
||||
* [Constitute Project](https://www.constituteproject.org/) - World Constitutions Database
|
||||
* [The American Presidency Project](https://www.presidency.ucsb.edu/) - Presidential Documents
|
||||
* [MCPEL](https://www.marines.mil/News/Publications/MCPEL/), [Army Pubs](https://armypubs.army.mil/) or [LiberatedManuals](https://www.liberatedmanuals.com/) - Military Documents / Manuals
|
||||
* [Marine Corps Pubs](https://www.marines.mil/News/Publications/MCPEL/), [Air Force Pubs](https://www.e-publishing.af.mil/product-index/), [Army Pubs](https://armypubs.army.mil/) or [LiberatedManuals](https://www.liberatedmanuals.com/) - Military Documents / Manuals
|
||||
* [NASA NTRS](https://ntrs.nasa.gov/collections/pubspace) or [STI](https://sti.nasa.gov/) - NASA Documents
|
||||
* [PapalEncyclicals](https://www.papalencyclicals.net/) - Catholic Church Documents
|
||||
* [Aesthetics Archive](https://contempaesthetics.org/) - Aesthetics Articles / Notes Contemporary
|
||||
|
|
@ -850,14 +857,17 @@
|
|||
|
||||
# ► Tracking / Database
|
||||
|
||||
* ⭐ **[GoodReads](https://www.goodreads.com/)** - Tracking / Database / Reviews / Recommendations / [Ratings Filter](https://www.book-filter.com/) / [Frontend](https://github.com/nesaku/BiblioReads)
|
||||
* ⭐ **[GoodReads](https://www.goodreads.com/)** - Tracking / Database / Reviews / Recommendations / [Frontend](https://github.com/nesaku/BiblioReads)
|
||||
* ⭐ **[StoryGraph](https://www.thestorygraph.com/)** - Tracking / Recommendations
|
||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Manga / Light Novels / Tracking / Database / Reviews / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||
* ⭐ **[Anilist](https://anilist.co/)** - Manga / Light Novels / Manhwa / Manhua / Tracking / Databsase / Reviews [Wrapper](https://github.com/AurelicButter/AniList-Node) / [Extras](https://greasyfork.org/en/scripts/370473-automail)
|
||||
* ⭐ **[MangaBaka](https://mangabaka.dev/)** - Multi-Site Manga + Novel Rating Aggregator / Tracking / [Discord](https://mangabaka.dev/discord)
|
||||
* ⭐ **[MangaBaka](https://mangabaka.org/)** - Multi-Site Manga + Novel Rating Aggregator / Tracking / [Discord](https://mangabaka.dev/discord)
|
||||
* ⭐ **[Novel Updates](https://www.novelupdates.com/)** or [RanobeDB](https://ranobedb.org/) - Light Novel Tracking / Databases
|
||||
* ⭐ **[LeagueOfComicGeeks](https://leagueofcomicgeeks.com/)** - Comic Tracking / Database / Releases
|
||||
* [Listal](https://www.listal.com/) - Book Database
|
||||
* [Books Search](https://books-search.typesense.org/) - Book Database
|
||||
* [LibraryThing](https://www.talpasearch.com/) - Find Books by Describing Them
|
||||
* [Ratings Filter](https://www.book-filter.com/) - Goodreads / Storygraph Rating Aggregator + Filter
|
||||
* [ISFDB](https://isfdb.org/) - Speculative Fiction
|
||||
* [nooSFere](https://www.noosfere.org/) - Science Fiction
|
||||
* [Romance.io](https://www.romance.io/) - Romance Database
|
||||
|
|
@ -869,7 +879,7 @@
|
|||
* [LibraryThing](https://www.librarything.com/) - Book Cataloguing Community
|
||||
* [CandlApp](https://www.candlapp.com/) - Book Tracking / Recommendations
|
||||
* [Anobii](https://www.anobii.com/) - Book Cataloguing / Reviews
|
||||
* [rate.house](https://rate.house/) - Media Tracker
|
||||
* [rate.house](https://rate.house/) or [Yamtrack](https://github.com/FuzzyGrim/Yamtrack) - Media Trackers
|
||||
* [libib](https://www.libib.com/) - Desktop Media Catalog
|
||||
|
||||
***
|
||||
|
|
@ -879,6 +889,7 @@
|
|||
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Algorithmic Books List
|
||||
* ⭐ **[Five Books](https://fivebooks.com/)** - Expert Recommended Books
|
||||
* ⭐ **[TasteDive](https://tastedive.com/books)** - Discovery and Recommendations
|
||||
* ⭐ **[ComicBookRoundup](https://comicbookroundup.com/)** - Comic Rating Aggregator
|
||||
* ⭐ **[MangaUpdates](https://www.mangaupdates.com/)** - Manga Database / Releases Updates
|
||||
* [Charts and Culture](https://pastebin.com/uRDJVGkL) - Books / Comics / Manga Recommendation Directory
|
||||
* [r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Personalized Recommendation Subreddit
|
||||
|
|
@ -887,7 +898,6 @@
|
|||
* [Gnooks](https://www.gnooks.com/) - Book Discovery / Recommendations
|
||||
* [RecommendMeABook](https://recommendmeabook.com/) - First Page Book Teasers
|
||||
* [WhichBook](https://www.whichbook.net/) - Mood-Based Book Discovery
|
||||
* [En](https://en.app/) - Vibe-Based Book Search
|
||||
* [r/TrueLit Top 100 Lists](https://www.reddit.com/r/TrueLit/wiki/top100lists) - Book Recommendations
|
||||
* [Readow](https://readow.ai/) - Book Recommendations
|
||||
* [Shepherd](https://shepherd.com/) - Book Recommendations
|
||||
|
|
@ -904,17 +914,17 @@
|
|||
* [Bookmarks Review](https://bookmarks.reviews/) - Book Review Aggregator
|
||||
* [5000 Best](http://5000best.com/books/) - Top 5000 Books
|
||||
* [BookStash](https://bookstash.io/), [Sobrief](https://sobrief.com/), [Summrize](https://www.summrize.com/) or [Glimbay](https://glimbay.netlify.app/) - Book Summaries
|
||||
* [ComicBookCanon](https://www.comicbookcanon.com/) - Comics / Manga Top Lists
|
||||
* [r/Marvel Recommended](https://www.reddit.com/r/Marvel/wiki/faq) - Marvel Comic Recommendations
|
||||
* [r/DCcomics Recommended](https://www.reddit.com/r/DCcomics/wiki/recommended) - DC Comic Recommendations
|
||||
* [Comic Book Reading Orders](https://comicbookreadingorders.com/) - Comic Book Reading Orders
|
||||
* [ComicBookCanon](https://www.comicbookcanon.com/) - Comics / Manga Top Lists
|
||||
* [Nevix](https://nevix.com/) - Manga / Social Media
|
||||
* [Kitsu](https://kitsu.io/) - Manga
|
||||
* [Mangaki](https://mangaki.fr/) - Manga Recommendations
|
||||
* [Spin.moe](https://spin.moe/) - Find Random Manga
|
||||
* [Anime-Planet](https://anime-planet.com/) - Manga
|
||||
* [Kenmei](https://www.kenmei.co/) - Manga / [Discord](https://discord.gg/XeTFtYW)
|
||||
* [AllManga](https://allmanga.to/) - Manga / [Discord](https://discord.gg/YbuYYUwhpP)
|
||||
* [AllManga](https://allmanga.to/) - Manga / [Discord](https://discord.com/invite/6nce6cyJyM)
|
||||
* [Manga Codex](https://mangacodex.com/) - Manga Infographics & Sales Stats
|
||||
* [VNDB](https://vndb.org/) - Visual Novels
|
||||
* [r/VisualNovel Recs](https://sites.google.com/view/rvisualnovels-recs/) or [VN Recs](https://vnrecs.github.io/) - Visual Novel Recommendations
|
||||
|
|
@ -930,7 +940,7 @@
|
|||
* ⭐ **[Spreeder](https://www.spreeder.com/app.php?intro=1)**, [BR Script](https://greasyfork.org/en/scripts/465635), [PlayText](https://playtext.app/), [AccelaReader](https://accelareader.com/), [SwiftRead](https://swiftread.com/), [Notation](https://github.com/numanzamandipuu/Notation), [Tailwind BR](https://crisanlucid.github.io/vite-react-tailwind-bionic-reading/) or [SpeedRead](https://github.com/pasky/speedread) - Speed Reading Tools
|
||||
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter
|
||||
* ⭐ **[Papeer](https://papeer.tech/)** / [GitHub](https://github.com/lapwat/papeer) or [epub-creator](https://github.com/NiklasGollenstede/epub-creator) - Webpage to EPUB Converter
|
||||
* [Scribd DL](https://github.com/rkwyu/scribd-dl), [Scribd Download Script](https://greasyfork.org/en/scripts/535783) or [ScribdVPDF](https://scribdvpdf.blogspot.com/) / [2](https://docdownloader.com/) / [3](https://scribd.vpdfs.com/) / [4](https://scribd.downloader.tips/) / [5](https://scribd.vdownloaders.com/) - [Scribd](https://www.scribd.com/) Document Downloaders
|
||||
* [Scribd DL](https://github.com/rkwyu/scribd-dl), [Scribd PDF](https://scribd.pdfdownloaders.com/) or [ScribdVPDF](https://scribdvpdf.blogspot.com/) / [2](https://docdownloader.com/) / [3](https://scribd.vpdfs.com/) / [4](https://scribd.downloader.tips/) / [5](https://scribd.vdownloaders.com/) - Scribd Downloaders
|
||||
* [eBook Converter Bot](https://t.me/ebook_converter_bot) - Telegram Ebook Converter / [GitHub](https://github.com/yshalsager/ebook-converter-bot)
|
||||
* [CrowBook](https://github.com/crowdagger/crowbook) - Markdown to EPUB Converter
|
||||
* [Libby](https://libbyapp.com/) - Library Search / [Downloader](https://github.com/PsychedelicPalimpsest/LibbyRip)
|
||||
|
|
@ -938,7 +948,7 @@
|
|||
* [BookInfo](https://lordgnomembe.github.io/BookInfo/) - Get Book Info via ISBN
|
||||
* [FiveFilters](https://www.fivefilters.org/) - Multiple Article Accessibility Tools
|
||||
* [IPDL](https://ipdl.cat/) - Monitor Digital Library Torrent Health
|
||||
* [Readarr](https://readarr.com/) or [LazyLibrarian](https://gitlab.com/LazyLibrarian/LazyLibrarian) - Book Torrent Autodownload / Manager / [GitHub](https://github.com/Readarr/Readarr)
|
||||
* [Readarr](https://readarr.com/) or [LazyLibrarian](https://gitlab.com/LazyLibrarian/LazyLibrarian) - Book Torrent Autodownload / Manager
|
||||
* [FicHub](https://fichub.net/) or [FanFictionDownloader](https://fanfictiondownloader.net/) - Fanfiction Downloader
|
||||
* [Sigil Ebook](https://sigil-ebook.com/) - EPUB Editor
|
||||
* [EPUB Translator](https://github.com/quantrancse/epub-translator) or [epub-translator](https://github.com/sharplab/epub-translator) - EPUB Translators
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# ► Social Media Tools
|
||||
|
||||
* 🌐 **[Farside](https://farside.link/)** / [2](https://cf.farside.link/), [PrivacyRedirect](https://privacyredirect.com/) or [alternative-frontends](https://github.com/ParniDEO/alternative-front-ends-unofficial) - Frontend Indexes
|
||||
* 🌐 **[Farside](https://farside.link/)** / [2](https://cf.farside.link/), [canine.tools](https://canine.tools/services/), [PrivacyRedirect](https://privacyredirect.com/) or [alternative-frontends](https://github.com/ParniDEO/alternative-front-ends-unofficial) - Frontend Indexes
|
||||
* ↪️ **[Android](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)** - Mobile Social Media Apps
|
||||
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
||||
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
||||
|
|
@ -14,6 +14,7 @@
|
|||
* ⭐ **[LibRedirect](https://libredirect.github.io/)** / [GitHub](https://github.com/libredirect/browser_extension), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions
|
||||
* [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect
|
||||
* [Proxitok](https://github.com/pablouser1/ProxiTok), [Urlebird](https://urlebird.com/) or [OffTikTok](https://www.offtiktok.com/) - TikTok Frontends
|
||||
* [Binternet](https://github.com/Ahwxorg/Binternet) or [Pinvibe](https://www.pinvibe.com/) - Pinterest Frontends
|
||||
* [Social-Searcher](https://www.social-searcher.com/) or [WeVerify](https://cse.google.com/cse?cx=006976128084956795641:ad1xj14zfap) - Social Media Search Engines
|
||||
* [Social Media Hacker List](https://github.com/MobileFirstLLC/social-media-hacker-list) - Social Media Apps / Tools
|
||||
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments
|
||||
|
|
@ -31,7 +32,7 @@
|
|||
***
|
||||
|
||||
* ⭐ **[x266.mov](https://x266.mov/discord-embed/)**, **[embeds.video](https://embeds.video/)**, [stolen.shoes](https://stolen.shoes/) or [npf.is](https://discord.nfp.is/) - Discord Video Embedders
|
||||
* ⭐ **[embedez](https://embedez.com/)** - Social Link Embedder / [X](https://twitter.com/embedez) / [Discord](https://discord.gg/FmW9c8gtCp)
|
||||
* ⭐ **[embedez](https://embedez.com/)** / [X](https://x.com/embedez) / [Discord](https://discord.gg/FmW9c8gtCp) or [FxEmbed](https://github.com/FxEmbed/FxEmbed) - Social Link Embedders
|
||||
* ⭐ **[Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin)** or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Ads
|
||||
* ⭐ **[Stoat](https://stoat.chat/)** - Discord Alternative / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/revoltchat/awesome-revolt)
|
||||
* ⭐ **[OpenAsar](https://openasar.dev/)** - Better Performance with Improved `app.asar` / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#openasar) / [Discord](https://discord.gg/YDMptE8u2b) / [GitHub](https://github.com/GooseMod/OpenAsar)
|
||||
|
|
@ -46,16 +47,16 @@
|
|||
* [instaparty](https://instaparty.gg/) - Temporary Discord Servers
|
||||
* [Discord Templates](https://discordtemplates.me/) - Discord Server Templates
|
||||
* [discord-badges](https://github.com/mezotv/discord-badges) - Discord Badge Info
|
||||
* [Discord Lookup](https://discord.id/) or [Toolscord](https://toolscord.com/) - Look up a Discord User or Bot ID
|
||||
* [Discord Previews](https://discordpreviews.com/) - Get Early Access to Discord Features / [X](https://x.com/discordpreviews)
|
||||
* [GiveMeBadge](https://givemebadge.alexflipnote.dev/) - Unlock Discord Dev Badges
|
||||
* [GiveMeBadge](https://givemebadge.alexflipnote.dev/) - Unlock Discord Dev Badges
|
||||
* [Discord-Api](https://discord.gg/discord-api) - Discord API Chat
|
||||
* [Discord-Datamining](https://github.com/Discord-Datamining/Discord-Datamining) - Discord Datamining via JS Files
|
||||
* [Discord TTS Bot](https://docs.moonstar-x.dev/discord-tts-bot/) - Text to Speech for Discord
|
||||
* [Embed Visualizer](https://embed.discord.website/) or [EB](https://eb.nadeko.bot/) - Preview Embeds
|
||||
* [BetterTwitFix](https://github.com/dylanpdx/BetterTwitFix) - Fix X.com / Telegram Embeds
|
||||
* [InstagramEmbed](https://www.vxinstagram.com/) - Fix Instagram Embeds
|
||||
* [Discord Packages](https://github.com/peterhanania/discord-package) - View Discord Packages / Self Host for Privacy / [Discord](https://discordpackage.com/discord)
|
||||
* [Hammertime](https://hammertime.cyou/), [Dank.tools](https://dank.tools/discord-timestamp), [discordtimestampgenerator.net](https://discordtimestampgenerator.net/), [discord-timestamps](https://r.3v.fi/discord-timestamps/) or [discordtimestampgenerator](https://discordtimestampgenerator.netlify.app/) - Discord Timestamp Generators
|
||||
* [Hammertime](https://hammertime.cyou/), [Dank.tools](https://dank.tools/discord-timestamp), [discordtimestampgenerator.net](https://discordtimestampgenerator.net/) or [discord-timestamps](https://r.3v.fi/discord-timestamps/) - Discord Timestamp Generators
|
||||
* [haystackfs](https://github.com/dhrumilp15/haystackfs) - Discord File Search
|
||||
* [TagMap](https://tagmap.io/) - Meet People with Similar Interests
|
||||
|
||||
|
|
@ -69,9 +70,10 @@
|
|||
* [Replugged](https://replugged.dev/) - Discord Client Mod / [Discord](https://discord.gg/HnYFUhv4x4) / [GitHub](https://github.com/replugged-org/replugged)
|
||||
* [Legcord](https://legcord.app/) - Discord Client / Lightweight / [Privacy-Fork](https://github.com/Milkshiift/GoofCord) / [Discord](https://discord.gg/TnhxcqynZ2) / [GitHub](https://github.com/Legcord/Legcord)
|
||||
* [BetterDiscord](https://betterdiscord.app/) - Discord Client Mod / [Plugins](https://betterdiscord.app/plugins) / [Banned Plugins](https://rentry.co/BDBannedPlugins) / [Discord](https://discord.gg/0Tmfo5ZbORCRqbAd) / [GitHub](https://github.com/BetterDiscord/BetterDiscord)
|
||||
* [Equicord](https://equicord.org/ or [Equibop](https://github.com/Equicord/Equibop) - Discord Client Mod / [Plugins](https://equicord.org/plugins) / [Discord](https://discord.gg/5Xh2W87egW) / [GitHub](https://github.com/Equicord/Equicord)
|
||||
* [abaddon](https://github.com/uowuo/abaddon) - Discord Client Mod / Lightweight / [Discord](https://discord.gg/wkCU3vuzG5)
|
||||
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
||||
* [Vesktop](https://github.com/Vencord/Vesktop) - Web Client w/ Vencord Preinstalled
|
||||
* [Vesktop](https://vesktop.dev/) - Web Client w/ Vencord Preinstalled / [GitHub](https://github.com/Vencord/Vesktop)
|
||||
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-Hostable Discord Compatible 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
|
||||
|
|
@ -89,7 +91,6 @@
|
|||
* [BeautifulDiscord](https://github.com/leovoel/BeautifulDiscord) - Custom CSS Support
|
||||
* [Coloured-Text-Generator](https://rebane2001.com/discord-colored-text-generator/) - Discord ANSI Text Generator
|
||||
* [Auto Creavite](https://auto.creavite.co/icons) - Animated Icon / Banner Generator
|
||||
* [Discord Decorations](https://discord-decorations.vercel.app/) - Free Discord Avatar Decorations
|
||||
* [Discord Avatar Maker](https://discord-avatar-maker.app/) - Discord Avatar Creator
|
||||
* [Better Default Discord](https://better-default-discord.netlify.app/) - Improved Default Discord Avatars
|
||||
* [Pfps.gg](https://pfps.gg/) - Find Discord Avatars
|
||||
|
|
@ -147,7 +148,6 @@
|
|||
* [Bots on Discord](https://bots.ondiscord.xyz/) - Bot Index
|
||||
* [Discord Bots](https://discord.bots.gg/) - Bot Index
|
||||
* [Discord Services](https://discordservices.net/) - Bot Index
|
||||
* [DiscordBots](https://discordbots.co/) - Bot Index
|
||||
* [Discord Bot List](https://discordbotlist.com/) - Bot Index
|
||||
* [Botlist.me](https://botlist.me/) - Bot Index
|
||||
* [Void Bots](https://voidbots.net/) - Bot Index
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
# ► Reddit Tools
|
||||
|
||||
* ⭐ **[Reddit Stream](https://reddit-stream.com/)** - Live Thread Viewer
|
||||
* ⭐ **[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
|
||||
* ⭐ **[Redlib](https://redlib.fmhy.net)** / [Instances](https://github.com/redlib-org/redlib-instances/blob/main/instances.md) / [2](https://github.com/libreddit/libreddit-instances/blob/master/instances.md), [Photon](https://photon-reddit.com/) or [RDX](https://rdx.overdevs.com/) - Reddit Frontends
|
||||
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)** / [GitHub](https://github.com/honestbleeps/Reddit-Enhancement-Suite), [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
|
||||
* ⭐ **[Redlib](https://github.com/redlib-org/redlib-instances/blob/main/instances.md)** / [2](https://github.com/libreddit/libreddit-instances/blob/master/instances.md), [Photon](https://photon-reddit.com/) or [RDX](https://rdx.overdevs.com/) - Reddit Frontends
|
||||
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
|
||||
* ⭐ **[Newsit](https://newsit.benwinding.com/)** - Webpage Comments Widget / [GitHub](https://github.com/benwinding/newsit)
|
||||
* [Redditp](https://redditp.com/) or [Reddit Viewer](https://reddit-viewer.com/) - Reddit TikTok Style Viewers
|
||||
|
|
@ -168,7 +168,6 @@
|
|||
* [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts
|
||||
* [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System
|
||||
* [SubHarbor](https://subharbor.com/) - Subreddit Backup Pages
|
||||
* [SubTransfer](https://subtransfer.ploomberapp.io/) - Export / Transfer Subreddits
|
||||
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
||||
* [SnooSnoop](https://snoosnoop.com/) - Reddit Account Analyzer
|
||||
* [Reddit Emojis](https://greasyfork.org/en/scripts/443011) - Emojis for Old Reddit
|
||||
|
|
@ -176,7 +175,6 @@
|
|||
* [Reddit Comment Highlights](https://github.com/aesy/reddit-comment-highlights) - Highlight New Comments
|
||||
* [infini.wtf](https://infini.wtf/) - Reddit Image Search
|
||||
* [Load Reddit Images Directly](https://github.com/nopperl/load-reddit-images-directly) - Direct Image Viewer
|
||||
* [When to Post](https://andreasbm.github.io/when-to-post-on-reddit/) - Best Reddit Posting Times
|
||||
* [UniversalScammerList](https://www.universalscammerlist.com/) - List of Reddit Scammers
|
||||
|
||||
***
|
||||
|
|
@ -207,13 +205,12 @@
|
|||
|
||||
## ▷ Reddit Search
|
||||
|
||||
* ⭐ **[TheGigaBrain](https://thegigabrain.com/)** - Reddit Search Engines
|
||||
* [Reveddit](https://www.reveddit.com/) or [Reddit Uncensored](https://github.com/Fubs/reddit-uncensored) - View Deleted Reddit Posts / Comments
|
||||
* [New PullPush](https://ihsoyct.github.io/) or [Better Reddit Search](https://betterredditsearch.web.app/) - Advanced Reddit Search
|
||||
* [New PullPush](https://ihsoyct.github.io/), [Reddit Search](https://samac.io/), [PullPush Search](https://search.pullpush.io/) or [Better Reddit Search](https://betterredditsearch.web.app/) - Advanced Reddit Search
|
||||
* [Redditle](https://redditle.com/) - Reddit-Only Google Search
|
||||
* [Arctic Shift](https://arctic-shift.photon-reddit.com/) - Reddit Archive Dump Search / [GitHub](https://github.com/ArthurHeitmann/arctic_shift)
|
||||
* [Reddit Dump Files](https://academictorrents.com/browse.php?search=stuck_in_the_matrix%2C+Watchful1%2C+RaiderBDev&sort_field=added&sort_dir=DESC) - Reddit Comment Archives
|
||||
* [redarcs](https://the-eye.eu/redarcs/) or [Rareddit](https://www.rareddit.com/) - Reddit Post Archive Tools / [Note](https://www.reddit.com/r/stupidpol/comments/13aaacn/psa_reddit_killed_pushshift_all_reddit_threads/)
|
||||
* [redarcs](https://the-eye.eu/redarcs/) - Reddit Post Archive Tools / [Note](https://www.reddit.com/r/stupidpol/comments/13aaacn/psa_reddit_killed_pushshift_all_reddit_threads/)
|
||||
* [RedditMetis](https://redditmetis.com/), [Reddit-User-Analyser](https://reddit-user-analyser.netlify.app/) or [Redective](https://www.redective.com/) - Reddit Profile Information
|
||||
* [rComments](https://github.com/iampueroo/rComments) - Explore Comments / Replies without Clicking a Post
|
||||
* [ScrollDrop](https://scrolldrop.com/) - Reddit Media Crawler
|
||||
|
|
@ -239,7 +236,7 @@
|
|||
|
||||
# ► Telegram Tools
|
||||
|
||||
* 🌐 **[TDirectory](https://tdirectory.me/)**, [Telemetr](https://telemetr.io/en), [Telegram Channels](https://telegramchannels.me/), [Awesome Telegram](https://github.com/ebertti/awesome-telegram) - Telegram Channel Indexes
|
||||
* 🌐 **[TDirectory](https://tdirectory.me/)**, [Telemetr](https://telemetr.io/en), [Awesome Telegram](https://github.com/ebertti/awesome-telegram) or [TelegramChannels](https://telegramchannels.me/) - Telegram Channel Indexes
|
||||
* 🌐 **[ComBot Groups](https://combot.org/top/telegram/groups)** - Top Telegram Groups Index
|
||||
* [Telegago](https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0), [2](https://cse.google.com/cse?cx=006249643689853114236:a3iibfpwexa), [Lyzem](https://lyzem.com/), [xTea](https://xtea.io/ts_en.html) or [TG-ME](https://www.tg-me.com/) - Telegram CSEs
|
||||
* [SaveRestrictedContentBot](https://github.com/vasusen-code/SaveRestrictedContentBot) - Save Restricted Content
|
||||
|
|
@ -271,7 +268,7 @@
|
|||
* [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
|
||||
* [Musvkrobot](https://t.me/musvkrobot) - Video Downloader
|
||||
* [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
|
||||
* [GdriveXbot](https://t.me/TheGdriveXBot) or [google-drive-telegram-bot](https://github.com/viperadnan-git/) - Google Drive Upload Bots
|
||||
* [MEGA Uploader X](https://t.me/MegaUploadXbot) or [Mega-Bot](https://github.com/Itz-fork/Mega.nz-Bot) - Remote Mega File Upload Bot
|
||||
* [OneDrive X](https://t.me/onedrivexbot) - Remote OneDrive File Upload Bot
|
||||
* [telegram-download-daemon](https://github.com/alfem/telegram-download-daemon/) - Download Large Telegram Files
|
||||
|
|
@ -283,7 +280,6 @@
|
|||
## ▷ Telegram Bots
|
||||
|
||||
* 🌐 **[BotsArchive](https://t.me/BotsArchive)**, [TelegramBotsList](https://danyspin97.github.io/TelegramBotsList/) or [borodutch.eth](https://borodutch.com/) - Telegram Bots Indexes
|
||||
* [Now Playing](https://t.me/nowplaybot) - Now Playing Audio Bot
|
||||
* [Searchee Bot](https://t.me/SearcheeBot) - Telegram Channel Search Bot
|
||||
* [Rose](https://t.me/MissRose_bot) or [GroupHelpBot](https://t.me/GroupHelpBot) - Telegram Group Managers
|
||||
* [TediCross](https://github.com/TediCross/TediCross) - Telegram to Discord Bridge
|
||||
|
|
@ -296,7 +292,6 @@
|
|||
* [ShortUrlBot](https://t.me/ShortUrlBot) - Link Shortener Bots
|
||||
* [AiImageBot](https://t.me/AiImageBot) - Text to Image
|
||||
* [Shieldy Bot](https://t.me/shieldy_bot) - Spam Protection Bot / [GitHub](https://github.com/1inch/shieldy)
|
||||
* [ProxyBot](https://t.me/vamproxy_bot), [proxy_socks5_bot](https://t.me/BestMTProxyBot) or [ShadowSocks_bot](https://t.me/ShadowSocks_bot) - Telegram Proxy Bots
|
||||
* [r/TelegramBots](https://www.reddit.com/r/TelegramBots/) - Telegram Bots Discussion
|
||||
|
||||
***
|
||||
|
|
@ -331,8 +326,8 @@
|
|||
* ⭐ **[Return YouTube Dislike](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
||||
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** or [Clickbait Remover](https://github.com/pietervanheijningen/clickbait-remover-for-youtube) - Reduce Sensationalism / Clickbait
|
||||
* ⭐ **[UnTrap](https://untrap.app/)**, [TubeMod](https://github.com/Pedro-Gregorio/TubeMod) or [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) - Distraction-Free YouTube
|
||||
* ⭐ **[VORAPIS](https://vorapis.pages.dev/)** - Classic YouTube Layout / Increased Performance / [Extra Themes](https://github.com/lightbeam24/StarTube) / [Discord](https://discord.com/invite/tBBZQMscag)
|
||||
* [ImprovedTube](https://improvedtube.com/), [YouTube Alchemy](https://greasyfork.org/en/scripts/521686), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/), [YouTube Tweaks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#youtube-tweaks) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#enhancer-for-yt-note) - YouTube Enhancement Extensions
|
||||
* ⭐ **[VORAPIS](https://vorapis.pages.dev/)** - Classic YouTube Layout / Increased Performance / [Extra Themes](https://github.com/lightbeam24/StarTube) / [Discord](https://discord.com/invite/tBBZQMscag)
|
||||
* [ImprovedTube](https://improvedtube.com/), [YouTube Alchemy](https://greasyfork.org/en/scripts/521686), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/), [YouTube Tweaks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#youtube-tweaks) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) - YouTube Enhancement Extensions
|
||||
* [PKGA](https://greasyfork.org/en/scripts/442089) or [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Theater Mode
|
||||
* [YouTube Hide Watched](https://github.com/EvHaus/youtube-hide-watched) - Toggle Visibility of Watched Videos / Shorts
|
||||
* [Fast Forward YT Shorts](https://greasyfork.org/en/scripts/466438) - Add Seek Hotkeys to Shorts
|
||||
|
|
@ -354,16 +349,17 @@
|
|||
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)** - Mobile YouTube Apps
|
||||
* ⭐ **[FreeTube](https://freetubeapp.io/)** - Local YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialious](https://materialio.us/) - YouTube Frontend / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
||||
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
||||
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
|
||||
* [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
|
||||
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple YouTube Videos
|
||||
* [YouTube Clone KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
|
||||
* [Piped](https://piped.video/), [2](https://piped.kavin.rocks/), [3](https://piped-material.১.net/) - YouTube Frontend / Sign-Up Required / [GitHub](https://github.com/TeamPiped/Piped)
|
||||
* [Piped](https://piped.private.coffee/) - YouTube Frontend / Sign-Up Required / [GitHub](https://github.com/TeamPiped/Piped)
|
||||
* [youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
|
||||
* [YouT-ube](https://www.yout-ube.com/) - YouTube Frontend
|
||||
* [YouT-ube](https://www.yout-ube.com/) or [MUI](https://muitube.com/) - Use YouTube Full Window Player
|
||||
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
|
||||
* [VacuumTube](https://github.com/shy1132/VacuumTube) - Console Version of YouTube on Desktop / Works for Steam Deck, HTPCs, etc
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -412,6 +408,7 @@
|
|||
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [Social Saver](https://socialsaver.site/) / [GitHub](https://github.com/VishalKaleria/social-saver/), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface) or [Vividl](https://github.com/Bluegrams/Vividl) - YT-DLP GUIs
|
||||
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - YouTube-DL GUI
|
||||
* [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YouTube CLI Downloader / YT-DLP Fork
|
||||
* [YTDown](https://ytdown.io/) - YouTube Downloader / Online
|
||||
* [CNVMP3](https://cnvmp3.com/) - YouTube Downloader / Online / [Subreddit](https://www.reddit.com/r/cnvmp3)
|
||||
* [Wayback YouTube](https://www.waybackyt.download/) - Download Deleted YouTube Videos via Wayback Machine
|
||||
* [Pinchflat](https://github.com/kieraneglin/pinchflat), [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
|
||||
|
|
@ -432,9 +429,9 @@
|
|||
* [yt-fts](https://github.com/NotJoeMartinez/yt-fts) - Full-Text Search of Subtitles from Channels / Videos
|
||||
* [Icono](https://www.icono-search.com/) - Description-Based Video Search / [Discord](https://discord.gg/RWv7bGKwHr)
|
||||
* [MW Geofind](https://mattw.io/youtube-geofind/location) or [TubeTrotter](https://www.tubetrotter.live/) - Find Geotagged Videos
|
||||
* [YT Comment Viewer](https://commentviewer.com/), [CommentShark](https://www.commentshark.com/youtube-comment-searcher), [Hadzy](https://hadzy.com/) or [YCF](https://ytcomment.kmcat.uk/) - YouTube Comment Search
|
||||
* [YT Comment Viewer](https://commentviewer.com/) / [GitHub](https://github.com/sameerdash2/comment-viewer), [CommentShark](https://www.commentshark.com/youtube-comment-searcher), [Hadzy](https://hadzy.com/) or [YCF](https://ytcomment.kmcat.uk/) - Comment Search / View Censored Comments
|
||||
* [Tokin](https://tokin.tv/) - Find Trending / Hidden Gem Videos
|
||||
* [IMG_0001](https://walzr.com/IMG_0001) or [Random Video](https://random-video.com/) - Find Random YouTube Videos
|
||||
* [IMG_0001](https://walzr.com/IMG_0001), [YTStalker](https://ytstalker.mov/), [Gloria o Devoto](https://gloriaodevoto.vercel.app/) or [Random Video](https://random-video.com/) - Find Random YouTube Videos
|
||||
* [YTBin](https://rentry.co/ytbin) / [Image](https://i.imgur.com/h2A19Pd.png), [2](https://i.ibb.co/pv38kCj6/GTw-ILYb-XAAADWa-Q.png) / [Video](https://youtu.be/zYmkOInF6Us), [Project Random](https://0xbeef.co.uk/random), [ObscureTube](https://obscuretube.com/) or [petittube](https://petittube.com/fullscreen.php) - Find Videos with <100 Views
|
||||
* [Find-Unfinished-YT](https://rentry.co/find-unfinished-yt) - Find Partially Watched Videos
|
||||
|
||||
|
|
@ -577,7 +574,7 @@
|
|||
* [Graph.tips](https://graph.tips/beta/) - Advanced Facebook Search Tool
|
||||
* [WhoPostedWhat](https://whopostedwhat.com/) - Facebook Post Search
|
||||
* [FB.Zone](https://fb.zone/) - Color Themes for Facebook
|
||||
* [Kill Fbclid](https://chromewebstore.google.com/detail/kill-fbclid/jlmdkcaiejonohbmkgickmkgbpceokmn) or [Remove FBclid](https://chromewebstore.google.com/detail/remove-fbclid-and-utm/ehkdoijaaigomfliimepliikhjkoipob) - Removes fbclid and utm_ Query Parameters in URLs
|
||||
* [Remove FBclid](https://chromewebstore.google.com/detail/remove-fbclid-and-utm/ehkdoijaaigomfliimepliikhjkoipob) - Removes fbclid and utm_ Query Parameters in URLs
|
||||
* [News Feed Eradicator](https://west.io/news-feed-eradicator/) - Hide Facebook News Feed
|
||||
* [Lookup ID](https://lookup-id.com/) - Find Facebook ID
|
||||
* [Unlike-Everything](https://github.com/tlorien/Unlike-Everything-on-Facebook) - Remove All Facebook Likes
|
||||
|
|
@ -608,9 +605,8 @@
|
|||
|
||||
# ► Blogging Tools
|
||||
|
||||
* ⭐ **[Bear Blog](https://bearblog.dev/)**, **[TinyBones](https://tinybones.pages.dev/)** / [GitHub](https://github.com/itzcozi/tinybones), [Mataroa](https://mataroa.blog/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||
* ⭐ **[Bear Blog](https://bearblog.dev/)** / [GitHub](https://github.com/HermanMartinus/bearblog), **[TinyBones](https://tinybones.pages.dev/)** / [GitHub](https://github.com/itzcozi/tinybones), [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
|
||||
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
|
||||
|
|
@ -689,7 +685,6 @@
|
|||
* ⭐ **[Lemmy Apps](https://join-lemmy.org/apps)** - Lemmy Client List
|
||||
* ⭐ **[Divisions by zero](https://lemmy.dbzer0.com/)** - Piracy Focused Instance
|
||||
* [Quiblr](https://quiblr.com/) - Lemmy Instance Browser / [GitHub](https://github.com/Technicolor-Dreamcoat/Quiblr)
|
||||
* [Fediverser](https://portal.alien.top/) - Reddit to Lemmy Community Auto-Sync
|
||||
* [LemmyTools](https://github.com/howdy-tsc/LemmyTools) - Lemmy Improvement Extension
|
||||
|
||||
***
|
||||
|
|
@ -719,6 +714,7 @@
|
|||
|
||||
* ⭐ **[4chan XT](https://github.com/TuxedoTako/4chan-xt)**, [4chan X](https://www.4chan-x.net/), [SpookyX](https://github.com/Fiddlekins/SpookyX) or [Dollchan](https://dollchan.net/) - Enhancement Extensions
|
||||
* [Lurka](https://github.com/AdamSalma/Lurka) - Desktop Client
|
||||
* [Kuroba](https://github.com/Adamantcheese/Kuroba) or [Chan](https://github.com/moffatman/chan) - 4chan Mobile Apps
|
||||
* [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Web Client
|
||||
* [4Webm](https://www.4webm.org/) - Load All Webm Videos in 4chan Thread
|
||||
* [4stats](https://4stats.io/) - 4chan Board / Thread Stats
|
||||
|
|
|
|||
102
docs/storage.md
102
docs/storage.md
|
|
@ -10,27 +10,7 @@
|
|||
* [Really Good Emails](https://reallygoodemails.com/) - Product Email Mobile Designs and Templates
|
||||
* [Screen from Traction](https://screen.traction.one/) - Create App Screenshots
|
||||
|
||||
[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)
|
||||
|
||||
***
|
||||
|
||||
## Browser Startpages
|
||||
|
||||
* 🌐 **[Awesome Startpage](https://github.com/jnmcfly/awesome-startpage)** - Startpage Resources
|
||||
* 🌐 **[Startpage Emporium](https://startpages.github.io/)** - Startpage Index
|
||||
* ⭐ **[WebOasis](https://weboasis.su/)**, [2](https://behu.io/), [3](https://ndsamuelson.github.io/weboas-is/) / [GitHub](https://github.com/ParrotDevelopers/WebOasis/)
|
||||
* ⭐ **[MONKNOW](https://www.monknow.com/)**
|
||||
|
||||
[FMHY Startpage](https://fmhy.net/startpage), [r/startpages](https://www.reddit.com/r/startpages/), [8bitdash](https://www.8bitdash.com/), [8 Bit Dashboard](https://8bitdashboard.com/), [Clippingmini](https://www.clippingmini.com/), [Draggo](https://draggo.com/), [Pearltrees](https://www.pearltrees.com/), [Nextcloud](https://apps.nextcloud.com/apps/bookmarks), [Cling](https://cling.com/), [Symbaloo](https://www.symbaloo.com/), [Tixio](https://tixio.io/), [Bento](https://github.com/migueravila/Bento), [nightly](https://github.com/damnitharshit/nightly), [Protopage](https://www.protopage.com/), [tilde](https://github.com/xvvvyz/tilde), [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity), [AllMyFaves](https://allmyfaves.com/), [start.me](https://start.me/start/int/startpage), [Combobox](https://combobox.me)
|
||||
|
||||
### Customizable New Tab Page
|
||||
|
||||
* ⭐ **[Anori](https://anori.app/)** - Customizable New Tab
|
||||
* ⭐ **[Mue](https://muetab.com/)** - Customizable New Tab / [GitHub](https://github.com/mue/mue)
|
||||
* ⭐ **[Bonjourr](https://bonjourr.fr/)** - Minimalist Startpage / [GitHub](https://github.com/victrme/Bonjourr)
|
||||
* [Renewed Tab](https://renewedtab.com/) - Customizable New Tab / [Discord](https://discord.gg/zYjR54b) / [GitLab](https://gitlab.com/renewedtab/renewedtab/)
|
||||
|
||||
[mtab](https://github.com/maxhu08/mtab), [nightTab](https://github.com/zombieFox/nightTab), [hexagonTab](https://github.com/zombieFox/hexagonTab), [Perfect Home](https://github.com/perfect-things/perfect-home), [Yet Another Speed Dial](https://github.com/conceptualspace/yet-another-speed-dial), [Infinity New Tab](https://en.infinitynewtab.com/), [Momentum](https://momentumdash.com/)
|
||||
[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/), [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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -72,7 +52,7 @@
|
|||
* [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/), [histogrammaker](https://histogrammaker.net/), [flowgorithm](http://flowgorithm.org/), [Chart Builder](https://textquery.app/tools/chart-builder/), [JSON Crack](https://jsoncrack.com/) / [GitHub](https://github.com/AykutSarac/jsoncrack.com)
|
||||
[DGM](https://dgm.sh/), [MakeGraph](https://makegraph.app/), [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), [text2diagram](https://text2diagram.com/), [SankeyMATIC](https://sankeymatic.com/), [histogrammaker](https://histogrammaker.net/), [flowgorithm](http://flowgorithm.org/), [Chart Builder](https://textquery.app/tools/chart-builder/), [JSON Crack](https://jsoncrack.com/) / [GitHub](https://github.com/AykutSarac/jsoncrack.com)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -107,6 +87,40 @@
|
|||
|
||||
***
|
||||
|
||||
## Dynamic DNS Services / Subdomains
|
||||
|
||||
* ⭐ **[Cloudflare DNS](https://www.cloudflare.com/application-services/products/dns/)**
|
||||
* ⭐ **[deSEC](https://desec.io/)**
|
||||
|
||||
[DuckDNS](https://www.duckdns.org/), [ClouDNS](https://www.cloudns.net/), [FreeDNS](https://freedns.afraid.org/) / [Warning](https://freedns.afraid.org/queue/explanation.php), [dynu](https://dynu.com/), [NoIP](https://www.noip.com/), [myaddr](https://myaddr.tools/), [nsupdate](https://www.nsupdate.info/) / [GitHub](https://github.com/nsupdate-info/nsupdate.info)
|
||||
|
||||
### Subdomains Services
|
||||
|
||||
[DigitalPlat](https://domain.digitalplat.org/) / [GitHub](https://github.com/DigitalPlatDev/FreeDomain), [is-a.dev](https://www.is-a.dev/), [JS.ORG](https://js.org/), [TheDev](https://thedev.id/), [GetFreeDomain](https://www.getfreedomain.name/)
|
||||
|
||||
***
|
||||
|
||||
## EmulatorJS / NeptunJS
|
||||
|
||||
* **Note** - These serve as frontends for the EmulatorJS + NeptunJS emulator APIs.
|
||||
|
||||
***
|
||||
|
||||
* [PlayRetroGames](https://playretrogames.net/) - Retro Consoles / EmulatorJS / [Discord](https://discord.gg/qw9caq2qEg)
|
||||
* [RetroGames.cc](https://www.retrogames.cc/) - Retro Consoles / EmulatorJS
|
||||
* [OldGameShelf](https://oldgameshelf.com/) - Retro Consoles / EmulatorJS
|
||||
* [RetroGamesNexus](https://retrogamesnexus.com/) - Retro Consoles / EmulatorJS
|
||||
* [LetsPlayGB](https://www.letsplaygb.com/) - Game Boy / EmulatorJS
|
||||
* [Play NES](https://www.playnesonline.com/) - NES Browser Emulator / EmulatorJS
|
||||
* [Let's Play Sega](https://www.letsplaysega.com/) - Sega Genesis Browser Emulator / EmulatorJS
|
||||
* [Mega Drive Emulator](https://megadrive-emulator.com/) - Sega Megadrive Browser Emulator / EmulatorJS
|
||||
* [PlayRetroGames](https://www.playretrogames.com/) - Retro Consoles / NeptunJS
|
||||
* [PlayEmulator](https://playemulator.online/) - Retro Consoles / NeptunJS
|
||||
* [8bbit](https://www.8bbit.com/) - NES Browser Emulator / NeptunJS
|
||||
* [NeoGeoFun](https://www.neogeofun.com/) - Neo Geo Browser Emulator / NeptunJS
|
||||
|
||||
***
|
||||
|
||||
## Free DNS Resolvers
|
||||
|
||||
* 🌐 **[Public DNS indexes](https://www.publicdns.xyz/)** / [2](https://www.bestdns.org/) / [3](https://acavalin.com/p/free_dns) / [4](https://publicdnsserver.com/) / [5](https://public-dns.info/)
|
||||
|
|
@ -119,7 +133,6 @@
|
|||
* [AdGuard](https://adguard-dns.io/en/public-dns.html)
|
||||
* [DNS for Family](https://dnsforfamily.com/)
|
||||
* [Hurricane Electric](https://dns.he.net/)
|
||||
* [dns0.eu](https://www.dns0.eu/)
|
||||
* [UncensoredDNS](https://blog.uncensoreddns.org/dns-servers/)
|
||||
* [dns.sb](https://dns.sb/)
|
||||
|
||||
|
|
@ -149,6 +162,8 @@
|
|||
* [Mytunneling](https://www.mytunneling.com/)
|
||||
* [OpenTunnel](https://opentunnel.net/)
|
||||
* [Howdy](https://howdy.id/)
|
||||
* [ProxyBot](https://t.me/vamproxy_bot) - Telegram Proxy Bot
|
||||
* [proxy_socks5_bot](https://t.me/BestMTProxyBot) or [ShadowSocks_bot](https://t.me/ShadowSocks_bot) - Telegram Shadowsocks Bots
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -212,11 +227,11 @@
|
|||
|
||||
## LibGen Mirrors
|
||||
|
||||
* https://librarygenesis.net/ - site list
|
||||
* https://libgen.li/ - clone
|
||||
* https://libgen.gs/ - clone
|
||||
* https://libgen.la/ - clone
|
||||
* https://rentry.co/m2hkqhwb - Differences between the mirrors
|
||||
* <https://librarygenesis.net/> - site list
|
||||
* <https://libgen.li/> - clone
|
||||
* <https://libgen.gs/> - clone
|
||||
* <https://libgen.la/> - clone
|
||||
* <https://rentry.co/m2hkqhwb> - Differences between the mirrors
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -236,6 +251,7 @@
|
|||
|
||||
## Manga Readers
|
||||
|
||||
* ↪️ **[Android Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_manga)** / **[iOS Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_reading)**
|
||||
* ⭐ **[Suwayomi](https://github.com/Suwayomi)**
|
||||
* ⭐ **Suwayomi Tools** - [Extensions](https://keiyoushi.github.io/), [2](https://discord.gg/3FbCpdKbdY) / [Desktop Client](https://github.com/Suwayomi/Suwayomi-Server)
|
||||
* ⭐ **[Houdoku](https://houdoku.org/)** / [GitHub](https://github.com/xgi/houdoku)
|
||||
|
|
@ -260,7 +276,7 @@
|
|||
|
||||
### MyAnimeList Tools
|
||||
|
||||
[Redesign](https://hritikvaishnav.github.io/Project-Redesign/public/mal.html) / [Extension](https://anime.plus/) / [Scripts](https://myanimelist.net/forum/?topicid=1849731) / [Badges](https://www.mal-badges.com/) / [Search Helper](https://greasyfork.org/en/scripts/429784) / [Hide Seen](https://greasyfork.org/en/scripts/17961) / [Export](https://malscraper.azurewebsites.net/) / [Site Sync](https://malsync.moe/) / [MALSync Discord](https://discord.com/invite/cTH4yaw) / [API](https://jikan.moe/)
|
||||
[Redesign](https://hritikvaishnav.github.io/Project-Redesign/public/mal.html) / [Extension](https://anime.plus/) / [Scripts](https://myanimelist.net/forum/?topicid=1849731) / [Stats / Badges](https://www.mal-badges.com/) / [Stats](https://anime.plus/) / [Search Helper](https://greasyfork.org/en/scripts/429784) / [Hide Seen](https://greasyfork.org/en/scripts/17961) / [Export](https://malscraper.azurewebsites.net/) / [Site Sync](https://malsync.moe/) / [MALSync Discord](https://discord.com/invite/cTH4yaw) / [API](https://jikan.moe/)
|
||||
|
||||
### AniList Tools
|
||||
|
||||
|
|
@ -275,10 +291,10 @@
|
|||
* ⭐ **[Modrinth](https://modrinth.com/)** / [Redirector](https://github.com/devBoi76/modrinthify) / [Discord](https://discord.com/invite/EUHuJHt) / [GitHub](https://github.com/modrinth/code)
|
||||
* ⭐ **[UsefulMods](https://github.com/TheUsefulLists/UsefulMods)** - Optimization & Enhancement Mods / [Discord](https://discord.gg/8nzHYhVUQS)
|
||||
* [ModBay](https://modbay.org/) - Bedrock Edition Content / [Discord](https://discord.com/invite/DpNJ5fApJM)
|
||||
* [CurseForge](https://www.curseforge.com/minecraft) / [QOL Fixes](https://greasyfork.org/en/scripts/389255-curseforge-qol-fixes)
|
||||
* [Planet Minecraft](https://www.planetminecraft.com/)
|
||||
* [MC Archive](https://mcarchive.net/) - Old Mods
|
||||
* [FiberMC](https://www.fibermc.com/) - Fabric Mods Index
|
||||
* [CurseForge](https://www.curseforge.com/minecraft) / [QOL Fixes](https://greasyfork.org/en/scripts/389255-curseforge-qol-fixes) / [Discord](https://discord.com/invite/curseforge)
|
||||
* [Planet Minecraft](https://www.planetminecraft.com/) / [Discord](https://discord.com/invite/QQSWwyg)
|
||||
* [MC Archive](https://mcarchive.net/) - Old Mods / [Discord](https://discord.com/invite/WuexGpP)
|
||||
* [FiberMC](https://www.fibermc.com/) - Fabric Mods Index / [Discord](https://discord.com/invite/dwh9y7D)
|
||||
* [ModpackIndex](https://www.modpackindex.com/) / [Discord](https://discord.com/invite/9QfENvm)
|
||||
* [Minecraft Forum](https://www.minecraftforum.net/) / [Discord](https://discord.com/invite/wGrQNKX)
|
||||
|
||||
|
|
@ -336,7 +352,7 @@
|
|||
|
||||
## Poll Sites
|
||||
|
||||
[PollCode](https://pollcode.com/), [Polls.fr](https://polls.fr/), [minipoll](https://minipoll.co/), [PickVote](https://pickvote.web.app/), [StrawPoll](https://strawpoll.com/), [framadate](https://framadate.org/), [mobpoll](https://quick.mobpoll.org/), [polltab](https://www.polltab.com/), [polling-app](https://xoyondo.com/polling-app), [poal.me](https://poal.me/), [poll.ly](https://poll.ly/), [matepoll](https://www.matepoll.com/index.html), [typeform](https://typeform.com/examples/polls/)
|
||||
[PollCode](https://pollcode.com/), [minipoll](https://minipoll.co/), [PickVote](https://pickvote.web.app/), [StrawPoll](https://strawpoll.com/), [framadate](https://framadate.org/), [polltab](https://www.polltab.com/), [polling-app](https://xoyondo.com/polling-app), [poal.me](https://poal.me/), [poll.ly](https://poll.ly/), [typeform](https://typeform.com/examples/polls/)
|
||||
|
||||
### Live Polling
|
||||
|
||||
|
|
@ -363,7 +379,13 @@
|
|||
|
||||
* ⭐ **[PROXY List](https://github.com/TheSpeedX/PROXY-List)**
|
||||
|
||||
[Free-Proxy-List](https://free-proxy-list.net/), [OpenProxyList](https://openproxylist.com/), [ProxyScrape](https://www.proxyscrape.com/free-proxy-list), [proxy-list](https://github.com/mmpx12/proxy-list), [hide.my proxy list](https://hide.mn/en/proxy-list/), [ProxyNations](https://www.proxynations.com/), [spys.one](https://spys.one/en/free-proxy-list/), [cyber-gateway](https://cyber-gateway.net/get-proxy/free-proxy), [ree-proxy-list](https://free-proxy-list.net/web-proxy.html), [geonode](https://geonode.com/free-proxy-list/), [freeproxyupdate](https://freeproxyupdate.com/), [proxydocker](https://www.proxydocker.com/en/proxylist/), [proxyhub](https://proxyhub.me/), [proxy-list](https://proxy-list.download/), [proxydb](https://proxydb.net/), [advanced.name](https://advanced.name/freeproxy), [monosans list](https://github.com/monosans/proxy-list), [premiumproxy](https://premiumproxy.net/), [Proxynova](https://www.proxynova.com/proxy-server-list)
|
||||
[Free-Proxy-List](https://free-proxy-list.net/), [OpenProxyList](https://openproxylist.com/), [ProxyScrape](https://www.proxyscrape.com/free-proxy-list), [proxy-list](https://github.com/mmpx12/proxy-list), [hide.my proxy list](https://hide.mn/en/proxy-list/), [ProxyNations](https://www.proxynations.com/), [spys.one](https://spys.one/en/free-proxy-list/), [cyber-gateway](https://cyber-gateway.net/get-proxy/free-proxy), [Free-proxy-list](https://free-proxy-list.net/web-proxy.html), [geonode](https://geonode.com/free-proxy-list/), [freeproxyupdate](https://freeproxyupdate.com/), [proxydocker](https://www.proxydocker.com/en/proxylist/), [proxyhub](https://proxyhub.me/), [proxy-list](https://proxy-list.download/), [proxydb](https://proxydb.net/), [advanced.name](https://advanced.name/freeproxy), [monosans list](https://github.com/monosans/proxy-list), [premiumproxy](https://premiumproxy.net/), [Proxynova](https://www.proxynova.com/proxy-server-list), [GetFreeProxy](https://getfreeproxy.com/) / [GitHub](https://github.com/gfpcom/free-proxy-list)
|
||||
|
||||
***
|
||||
|
||||
## Self-Hosted Wiki Alts
|
||||
|
||||
[WikiDocs](https://www.wikidocs.app/) / [GitHub](https://github.com/Zavy86/WikiDocs), [Media Wiki](https://www.mediawiki.org/) / [GitHub](https://github.com/Wikia/mediawiki), [xWiki](https://www.xwiki.org/xwiki/bin/view/Main/), [DokuWiki](https://www.dokuwiki.org/dokuwiki) / [GitHub](https://github.com/dokuwiki/dokuwiki), [Archivy](https://github.com/archivy/archivy/), [Miraheze](https://miraheze.org/), [wikmd](https://linbreux.github.io/wikmd/), [Fandom](https://www.fandom.com/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -372,11 +394,11 @@
|
|||
* ⭐ **[SMSCodeOnline](https://smscodeonline.com/)**
|
||||
* ⭐ **[receive-sms-online](https://www.receive-sms-online.info/)** - Sign-Up Required
|
||||
* ⭐ **[mianfeijiema](https://mianfeijiema.com/)** or [us-phone-number](https://us-phone-number.com/)
|
||||
* ⭐ **[sms24](https://www.sms24.me/)**
|
||||
* ⭐ **[sms24](https://www.sms24.me/)**, [2](https://receive-sms.com/)
|
||||
* ⭐ **[receive-sms](https://receive-sms.cc/)**
|
||||
* ⭐ **[tempsmss](https://tempsmss.com/)**
|
||||
|
||||
[TemporaryNumber](https://temporarynumber.com/), [Yunjisms](https://yunjisms.xyz/), [2ndline](https://www.2ndline.co/), [TextNow](https://www.textnow.com/), [GetFreeSMSNUmber](https://getfreesmsnumber.com/), [Smser](https://smser.net/), [SMS Receive](https://sms-receive.net/), [Receive SMS Online](https://www.receivesmsonline.net/), [My Trash Mobile](https://www.mytrashmobile.com/), [temp-sms](https://temp-sms.org/), [temporary-phone-number](https://temporary-phone-number.com/), [storytrain](https://www.storytrain.info/), [Temp Number](https://temp-number.com/), [receive-smss](https://receive-smss.com), [receive-sms-free](https://receive-sms-free.cc/), [quackr](https://quackr.io/), [smsnator](https://smsnator.online/), [InboxSMS](https://inboxsms.me/), [anonymsms](https://anonymsms.com/temporary-phone-number/), [receivesmsonline](https://receivesmsonline.in/), [jiemadi](https://www.jiemadi.com/en), [ReceiveSMSOnline](https://receivesmsonline.me/), [7sim](https://7sim.cc/), [yunjiema](https://yunjiema.net/), [supercloudsms](https://supercloudsms.com/en), [us-phone-number](https://us-phone-number.com/), [shownumber](https://lothelper.com/en/shownumber), [yunduanxin](https://yunduanxin.net/), [bestsms](https://bestsms.xyz/), [smsget](https://smsget.net/), [free-sms-receive](https://www.free-sms-receive.com/), [free-sms-receive](https://free-sms-receive.co/), [receivefreesms](https://receivefreesms.co.uk/), [SMS Activate](https://sms-activate.io/freeNumbers), [smspinverify](https://smspinverify.com/)
|
||||
[TemporaryNumber](https://temporarynumber.com/), [Yunjisms](https://yunjisms.xyz/), [2ndline](https://www.2ndline.co/), [TextNow](https://www.textnow.com/), [GetFreeSMSNUmber](https://getfreesmsnumber.com/), [Smser](https://smser.net/), [SMS Receive](https://sms-receive.net/), [Receive SMS Online](https://www.receivesmsonline.net/), [My Trash Mobile](https://www.mytrashmobile.com/), [temp-sms](https://temp-sms.org/), [temporary-phone-number](https://temporary-phone-number.com/), [storytrain](https://www.storytrain.info/), [Temp Number](https://temp-number.com/), [receive-smss](https://receive-smss.com), [receive-sms-free](https://receive-sms-free.cc/), [quackr](https://quackr.io/), [smsnator](https://smsnator.online/), [InboxSMS](https://inboxsms.me/), [anonymsms](https://anonymsms.com/temporary-phone-number/), [receivesmsonline](https://receivesmsonline.in/), [jiemadi](https://www.jiemadi.com/en), [ReceiveSMSOnline](https://receivesmsonline.me/), [7sim](https://7sim.net/), [yunjiema](https://yunjiema.net/), [supercloudsms](https://supercloudsms.com/en), [us-phone-number](https://us-phone-number.com/), [shownumber](https://lothelper.com/en/shownumber), [yunduanxin](https://yunduanxin.net/), [bestsms](https://bestsms.xyz/), [smsget](https://smsget.net/), [free-sms-receive](https://www.free-sms-receive.com/), [free-sms-receive](https://free-sms-receive.co/), [receivefreesms](https://receivefreesms.co.uk/), [SMS Activate](https://sms-activate.io/freeNumbers), [smspinverify](https://smspinverify.com/), [receivefreesms.net](https://receivefreesms.net/), [receivesmsonline](https://www.receivesmsonline.net/), [smspool](https://www.smspool.net/free-sms-verification)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -401,7 +423,7 @@
|
|||
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
|
||||
* [HealthIcons](https://healthicons.org/) - Medical Icons
|
||||
|
||||
[Icofont](https://icofont.com/icons), [VisualPharm](https://visualpharm.com/), [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/), [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/), [Orion](https://www.orioniconlibrary.com/), [Flaticon](https://www.flaticon.com/) / [Premium Unlock](https://github.com/Kyutefox/Iconify), [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/), [svgsilh](https://svgsilh.com/), [pictogrammers](https://pictogrammers.com/), [svgstack](https://svgstack.com/), [iconshelf](https://iconshelf.com/)
|
||||
[Icofont](https://icofont.com/icons), [VisualPharm](https://visualpharm.com/), [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/), [Ant Design](https://ant.design/components/icon/), [IconPacks](https://www.iconpacks.net/), [Iconbuddy](https://iconbuddy.com/), [Noun Project](https://thenounproject.com/), [Orion](https://www.orioniconlibrary.com/), [Flaticon](https://www.flaticon.com/) / [Premium Unlock](https://github.com/Kyutefox/Iconify), [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/), [svgsilh](https://svgsilh.com/), [pictogrammers](https://pictogrammers.com/), [svgstack](https://svgstack.com/), [iconshelf](https://iconshelf.com/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -409,7 +431,7 @@
|
|||
|
||||
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** or **[Simple Tab Groups](https://github.com/drive4ik/simple-tab-groups)** - Firefox
|
||||
|
||||
[OneTab](https://www.one-tab.com/), [Tab Center Reborn](https://framagit.org/ariasuni/tabcenter-reborn), [Tab Stash](https://josh-berry.github.io/tab-stash/), [Tab Butler](https://tabbutler.netlify.app/), [One Tab Group](https://www.tabdeck.so/), [TreeStyleTabs](https://github.com/piroor/treestyletab)
|
||||
[OneTab](https://www.one-tab.com/), [Tab Stash](https://josh-berry.github.io/tab-stash/), [Tab Butler](https://tabbutler.netlify.app/), [One Tab Group](https://www.tabdeck.so/), [TreeStyleTabs](https://github.com/piroor/treestyletab)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -450,4 +472,4 @@
|
|||
* [udemy-downloader](https://github.com/Puyodead1/udemy-downloader) - Udemy Downloader
|
||||
* [Udemy Download Guide](https://docs.google.com/document/d/1W91OS9rj7h9DBp5UwR68lA2zMEtqNmxdGaNVmBktIaw/) / [Discord](https://discord.gg/tMzrSxQ)
|
||||
|
||||
[discudemy](https://www.discudemy.com/), [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/), [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)
|
||||
[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.com/), [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)
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
* ⭐ **[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
|
||||
* ⭐ **[Bulk Crap Uninstaller](https://www.bcuninstaller.com/)**, [Revo Uninstaller](https://www.revouninstaller.com/products/revo-uninstaller-free/) or [GeekUninstaller](https://geekuninstaller.com/) - Bulk Uninstallation Tools
|
||||
* [VCRedist](https://github.com/abbodi1406/vcredist) - AIO Repack for Microsoft Visual C++ Redists
|
||||
* [NanaRun](https://github.com/M2Team/NanaRun) - System Admin Tools
|
||||
* [BleachBit](https://www.bleachbit.org/) - Clean System Storage
|
||||
* [PolicyPlus](https://github.com/Fleex255/PolicyPlus) - Local Group Policy Editor
|
||||
|
|
@ -28,7 +27,6 @@
|
|||
* [ThrottleStop](https://www.techpowerup.com/download/techpowerup-throttlestop/) - Laptop CPU Monitor / Optimizer
|
||||
* [RegExp](https://github.com/zodiacon/TotalRegistry), [RegScanner](https://www.nirsoft.net/utils/regscanner.html), [ripgrep-all](https://github.com/phiresky/ripgrep-all) or [Registry-Finder](https://registry-finder.com/) - Registry Explorers / Scanners
|
||||
* [WinbIndex](https://winbindex.m417z.com/) - Windows System Files / Binaries
|
||||
* [OfflineInsiderEnroll](https://github.com/abbodi1406/offlineinsiderenroll) - Enable Windows Insider without Account
|
||||
* [Rhasspy](https://rhasspy.readthedocs.io/en/latest/) - Voice Assistant
|
||||
* [OpenRecall](https://github.com/openrecall/openrecall) or [Windrecorder](https://github.com/yuka-friends/Windrecorder/) - Memory Search App / System Recorders
|
||||
* [Time.is](https://time.is/) - Check Accuracy of System Clock
|
||||
|
|
@ -39,22 +37,23 @@
|
|||
## ▷ System Tweaks
|
||||
|
||||
* ⭐ **[SophiaScript](https://github.com/farag2/Sophia-Script-for-Windows)**, **[Windhawk](https://windhawk.net/)**, [MajorGeeks Windows Tweaks](https://www.majorgeeks.com/files/details/majorgeeks_registry_tweaks.html) or [Winaero](https://winaero.com/) / [2](https://winaerotweaker.com/) - System Tweaking Tools / **[Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#general-tweak-warning)**
|
||||
* ⭐ **[StartAllBack](https://www.startallback.com/)** - Tweaked Start Menu & Taskbar / Windows 11 / [Unlock](https://rentry.co/FMHYB64#startxback) / [Install Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#startallback)
|
||||
* ⭐ **[EverythingToolbar](https://github.com/srwi/EverythingToolbar)** or [yasb](https://github.com/amnweb/yasb) - Tweaked Taskbars
|
||||
* ⭐ **[StartAllBack](https://www.startallback.com/)** - Tweaked Start Menu & Taskbar / Windows 11 / [Unlock](https://rentry.co/FMHYB64#startxback)
|
||||
* ⭐ **[EverythingToolbar](https://github.com/srwi/EverythingToolbar)** - Everything Search in Taskbar
|
||||
* ⭐ **[Open Shell](https://open-shell.github.io/Open-Shell-Menu/)** - Tweaked Start Menu / [Start Skin](https://github.com/bonzibudd/Fluent-Metro)
|
||||
* ⭐ **[EarTrumpet](https://eartrumpet.app/)**, [Volumey](https://github.com/G-Stas/Volumey) or [Volume2](https://github.com/irzyxa/Volume2) - Tweaked Volume Mixer
|
||||
* ⭐ **[AltSnap](https://github.com/RamonUnch/AltSnap)** - Tweaked Windows Dragging
|
||||
* ⭐ **[Edge-Uninstall](https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6)** - Microsoft Edge Removal Script
|
||||
* [abbodi1406](https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/), [BatUtil](https://github.com/abbodi1406/BatUtil) or [TechNet-Gallery](https://github.com/MScholtes/TechNet-Gallery) - System Scripts
|
||||
* [TechNet-Gallery](https://github.com/MScholtes/TechNet-Gallery) - System Scripts
|
||||
* [Wintoys](https://apps.microsoft.com/store/detail/wintoys/9P8LTPGCBZXD) - System App Tweaking
|
||||
* [Wox](https://github.com/Wox-launcher/Wox), [Listary](https://www.listary.com/), [FlowLauncher](https://www.flowlauncher.com/), [Ueli](https://ueli.app/) / [GitHub](https://github.com/oliverschwendener/ueli) - Keystroke / App Launchers
|
||||
* [Kando](https://kando.menu/) - App Launcher / Pie Menu / [Discord](https://discord.gg/hZwbVSDkhy) / [GitHub](https://github.com/kando-menu/kando)
|
||||
* [Cerebro App](https://cerebroapp.com/) - Tweaked System Navigation
|
||||
* [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Tweaked System Menu
|
||||
* [Shell](https://nilesoft.org/) / [GitHub](https://github.com/moudey/shell) or [RCWM](https://github.com/GChuf/RCWM) - Tweaked / Custom Context Menus
|
||||
* [Explorer Tab Utility](https://github.com/w4po/ExplorerTabUtility) - Tweaked File Explorer
|
||||
* [Explorer Tab Utility](https://github.com/w4po/ExplorerTabUtility) - Improved / Tweaked File Explorers
|
||||
* [Quick Access Popup](https://www.quickaccesspopup.com/) - File Manager
|
||||
* [Spencer](https://www.the-sz.com/products/spencer/) - Classic Start Menu
|
||||
* [yasb](https://github.com/amnweb/yasb) - Tweaked Taskbar
|
||||
* [Taskbar Tweaker](https://ramensoftware.com/7-taskbar-tweaker) - Taskbar Advanced Features / Win 10
|
||||
* [AppGroup](https://github.com/iandiv/AppGroup) - Create Taskbar App Groups / Folders
|
||||
* [RBTray](https://github.com/benbuck/rbtray) - Minimize any App to Tray
|
||||
|
|
@ -91,7 +90,7 @@
|
|||
* [MacroRecorder](https://www.macrorecorder.com/)
|
||||
* [sikulix](http://sikulix.com/)
|
||||
* [ChoEazyCopy](https://github.com/Cinchoo/ChoEazyCopy)
|
||||
* [Organize](http://organize.readthedocs.io) - Automated File Manager
|
||||
* [Organize](https://organize.readthedocs.io) - Automated File Manager
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -122,6 +121,7 @@
|
|||
* ⭐ **[Aspia](https://aspia.org/)** - Desktop Client / [Telegram](https://t.me/aspia_talks) / [GitHub](https://github.com/dchapyshev/aspia)
|
||||
* ⭐ **[Sunshine](https://app.lizardbyte.dev/Sunshine/)** or [Apollo](https://github.com/ClassicOldSong/Apollo) - Remote Server for Moonlight / [Mobile](https://github.com/ClassicOldSong/moonlight-android) / [Discord](https://discord.com/invite/d6MpcrbYQs) / [GitHub](https://github.com/LizardByte/Sunshine)
|
||||
* [Moonlight](https://moonlight-stream.org/) - Gaming Remote Desktop Client / [Discord](https://discord.com/invite/CGg5JxN) / [GitHub](https://github.com/moonlight-stream)
|
||||
* [Kasm](https://kasm.com/) - Container Streaming Platform / Resource Intensive / [Guide](https://cbg.fmhy.bid/Server/Kasm/) / [GitHub](https://github.com/kasmtech/KasmVNC)
|
||||
* [Arcane](https://github.com/PhrozenIO/Arcane) - Desktop Client
|
||||
* [HopToDesk](https://www.hoptodesk.com/) - Desktop Client / [GitLab](https://gitlab.com/hoptodesk/hoptodesk)
|
||||
* [CoScreen](https://www.coscreen.co/) - Desktop Client
|
||||
|
|
@ -154,8 +154,10 @@
|
|||
|
||||
## ▷ Window Managers
|
||||
|
||||
* ⭐ **[GlazeWM](https://github.com/glzr-io/glazewm)** - Tiling Window Manager Inspired by i3wm
|
||||
* ⭐ **[Komorebi](https://github.com/LGUG2Z/komorebi)** or **[WorkSpacer](https://workspacer.org/)** / [GitHub](https://github.com/workspacer/workspacer) - Tiling Window Managers
|
||||
* ⭐ **[GlazeWM](https://github.com/glzr-io/glazewm)** - Tiling Window Manager
|
||||
* ⭐ **[Komorebi](https://github.com/LGUG2Z/komorebi)** - Tiling Window Manager
|
||||
* ⭐ **[WorkSpacer](https://workspacer.org/)** / [GitHub](https://github.com/workspacer/workspacer) - Tiling Window Manager
|
||||
* [Seelen UI](https://github.com/eythaann/Seelen-UI) - Tiling Window Manager / [Discord](https://discord.gg/ABfASx5ZAJ)
|
||||
* [Whim](https://github.com/dalyIsaac/Whim/) - Pluggable Dynamic Window Manager
|
||||
* [DWM](https://github.com/prabirshrestha/dwm-win32) - Port of X11 dwm to Windows
|
||||
|
||||
|
|
@ -164,11 +166,11 @@
|
|||
## ▷ Virtual Machines
|
||||
|
||||
* 🌐 **[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)**
|
||||
* ↪️ **[Emulators on Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||
* ⭐ **[VMware Workstation](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html)** - Virtual Machine / [macOS VM](https://rentry.co/FMHYB64#vmware-workstation)
|
||||
* ⭐ **[VirtualBox](https://www.virtualbox.org/)** - Virtual Machine / [Portable](https://www.vbox.me/)
|
||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** / [GitHub](https://github.com/virt-manager/virt-manager) 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)
|
||||
* [Looking Glass](https://looking-glass.io/) - Kernel-Based Virtual Machine for VGA PCI Pass-Through / [GitHub](https://github.com/gnif/LookingGlass)
|
||||
* [QEMU](https://www.qemu.org/) / [GitLab](https://gitlab.com/qemu-project/qemu), [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/) or [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machines
|
||||
* [OSBoxes](https://www.osboxes.org/) - Preinstalled Virtual Machine
|
||||
* [JSLinux](https://bellard.org/jslinux/) - Online Linux Virtual Machines
|
||||
|
|
@ -216,7 +218,7 @@
|
|||
## ▷ Hardware Monitors
|
||||
|
||||
* ⭐ **[HWiNFO](https://www.hwinfo.com/)** - System Info & Monitoring
|
||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - Network & Hardware Monitor
|
||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - Network & Hardware Monitor / Use Lite Version
|
||||
* [CoolerControl](https://docs.coolercontrol.org/) - Cooling Device Monitor / [Discord](https://discord.gg/MbcgUFAfhV) / [GitLab](https://gitlab.com/coolercontrol/coolercontrol)
|
||||
* [BatteryMode](https://en.bmode.tarcode.ru/) - System Tray Battery Percentage / Managers / [GitHub](https://github.com/tarcode-apps/BatteryMode)
|
||||
* [HWMonitor](https://www.cpuid.com/softwares/hwmonitor.html) - Hardware Monitor
|
||||
|
|
@ -249,9 +251,9 @@
|
|||
|
||||
* 🌐 **[Awesome Storage](https://github.com/okhosting/awesome-storage)** - File Storage Resources
|
||||
* 🌐 **[Awesome DataHoarding](https://github.com/simon987/awesome-datahoarding)** - Data Hoarding Resources
|
||||
* ⭐ **[WizTree](https://www.diskanalyzer.com/)** or [WinDirStat](https://windirstat.net/) / [GitHub](https://github.com/windirstat/windirstat/) - Disk Usage Analyzers
|
||||
* ⭐ **[WizTree](https://www.diskanalyzer.com/)**, [TreeSize](https://www.jam-software.com/treesize) or [WinDirStat](https://windirstat.net/) / [GitHub](https://github.com/windirstat/windirstat/) - Disk Usage Analyzers
|
||||
* ⭐ **[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://rentry.co/FMHYB64#minitool-partition-wizard) or [AOMEI Partition Assistant](https://www.diskpart.com/) / [Unlocker](https://rentry.co/FMHYB64#aomei-partition) - Partition Managers
|
||||
* ⭐ **[GParted](https://gparted.org/)** / [GitLab](https://gitlab.gnome.org/GNOME/gparted/), [MiniTool Partition Wizard](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites) (Search) or [AOMEI Partition Assistant](https://www.diskpart.com/) / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites) (search) - Partition Managers
|
||||
* ⭐ **[Validrive](https://www.grc.com/validrive.htm)** - Check True Storage Size of USB Devices
|
||||
* [TrueNAS](https://www.truenas.com/) - Storage System
|
||||
* [QDirStat](https://github.com/shundhammer/qdirstat) - Directory Statistics
|
||||
|
|
@ -275,14 +277,16 @@
|
|||
* [TestUFO](https://www.testufo.com/) - Monitor Framerate Test
|
||||
* [LittleBigMouse](https://github.com/mgth/LittleBigMouse) - DPI Test
|
||||
* [Scalizer](https://github.com/wonmor/Scalizer-Windows) - Auto DPI Scaling / [YouTube](https://youtu.be/f_3XWlmyat4)
|
||||
* [ICM](https://rentry.co/ICM)- ICC Profiles and Monitor Calibration
|
||||
* [ICM](https://claraiscute.neocities.org/Guides/ICM/), [2](https://claraiscute.pages.dev/Guides/ICM/) - ICC Profiles and Monitor Calibration
|
||||
* [Display Calc](https://www.tools.rodrigopolo.com/display_calc/) - Display Distance / Dimension Calculator
|
||||
* [Multi-Monitor Calculator](https://multimonitorcalculator.com/) - Dual-Monitor Setup Planning / Tests
|
||||
* [Wide Gamut](https://www.wide-gamut.com/) - Color Compatibility Test
|
||||
* [novideo_srgb](https://github.com/ledoge/novideo_srgb) - Restrict NVIDIA GPUs to sRGB / Prevent Oversaturation
|
||||
* [Dead.Pixel](https://lcdtech.info/en/tests/dead.pixel.htm) - Dead Pixel Test
|
||||
* [JScreenFix](https://www.jscreenfix.com/) - Repair Stuck Pixels
|
||||
* [CenterOfMyScreen](https://centerofmyscreen.com/) - Find Center of Monitor
|
||||
* [ShowDesktopOneMonitor](https://github.com/ruzrobert/ShowDesktopOneMonitor) - Show Desktop for Only One Monitor
|
||||
* [Virtual Display Driver](https://github.com/VirtualDrivers/Virtual-Display-Driver) - Virtual Display Driver
|
||||
* [Deskreen](https://deskreen.com/) / [GitHub](https://github.com/pavlobu/deskreen) or [SpaceDesk](https://www.spacedesk.net/) - Use Mobile Device as Monitor
|
||||
* [ShaderGlass](https://github.com/mausimus/ShaderGlass) - Custom Screen Shaders
|
||||
* [DaltonLens](https://daltonlens.org/) or [Toptal](https://www.toptal.com/designers/colorfilter) - Color Blindness Filters
|
||||
|
|
@ -310,7 +314,7 @@
|
|||
* [Deskhop](https://github.com/hrvach/deskhop) - Quickly Switch Devices between Computers
|
||||
* [Is this good?](https://wiki.keyboard.gay/) - Custom Keyboard Guides
|
||||
* [DreyMaR's](https://dreymar.colemak.org/) - Keyboard Tips and Resources
|
||||
* [Keyboard University](https://keyboard.university/) or [KDB](http://xahlee.info/kbd/keyboarding.html) - Mechanical Keyboard Building Guides
|
||||
* [KDB](http://xahlee.info/kbd/keyboarding.html) - Mechanical Keyboard Building Guides
|
||||
* [Cosmos](https://ryanis.cool/cosmos/) - Create Custom Keyboards
|
||||
* [Keyboard Simulator](https://keyboardsimulator.xyz/) - Design & Test Virtual Keyboards
|
||||
* [Key Test](https://en.key-test.ru/) - Keyboard Tester
|
||||
|
|
@ -328,14 +332,14 @@
|
|||
* [DigitalFeed](https://abx.digitalfeed.net/) - Lossless Audio Sound System Test
|
||||
* [Online Mic Test](https://onlinemictest.com/) or [Check Mic](https://webcammictest.com/check-mic.html) - Mic Test
|
||||
* [Sound Meter](https://mybrowseraddon.com/sound-meter.html) or [REW](https://www.roomeqwizard.com) - Measure Surrounding Sound Level
|
||||
* [Krisp](https://krisp.ai/) or [noise-suppression-for-voice](https://github.com/werman/noise-suppression-for-voice) - Noise Suppression Tools
|
||||
* [noise-suppression-for-voice](https://github.com/werman/noise-suppression-for-voice) - Noise Suppression Tools
|
||||
* [AirPods Dirty Secret](https://docs.kenp.io/) - AirPods Repair Directory
|
||||
|
||||
***
|
||||
|
||||
# ► Windows ISOs
|
||||
|
||||
* ⭐ **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** - Windows ISOs / [Clean Install Guide](https://gravesoft.dev/clean_install_windows)
|
||||
* ⭐ **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** - Windows ISOs / [Clean Install Guide](https://massgrave.dev/clean_install_windows)
|
||||
* ⭐ **[Windows Install / Debloat Guide](https://wispydocs.pages.dev/windows/)**
|
||||
* [files.rg-adguard](https://files.rg-adguard.net/) or [MVS dump](https://awuctl.github.io/mvs/) - Verify ISO Legitimacy
|
||||
* [OS.click](https://os.click/en) - Windows ISOs
|
||||
|
|
@ -344,7 +348,7 @@
|
|||
* [Old School OS](https://www.oldschoolos.com/), [OS Vault](https://osvault.weebly.com/directory.html), [VETUSWARE](https://vetusware.com/) or [WinWorldPC](https://winworldpc.com/) - Oldschool ISOs
|
||||
* [Fido](https://github.com/pbatard/Fido) - ISO Powershell Script
|
||||
* [NetBoot](https://netboot.xyz/) - iPXE Network Boot
|
||||
* [CoolStar](https://coolstar.org/chromebook/windows-install.html) - Install Windows on Chromebook
|
||||
* [MrChromebox](https://docs.mrchromebox.tech/), [Chrultrabook](https://docs.chrultrabook.com/) or [CoolStar](https://coolstar.org/chromebook/windows-install.html) - Install Windows / Linux on Chromebook
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -361,7 +365,6 @@
|
|||
## ▷ Windows Activation
|
||||
|
||||
* ⭐ **[MAS](https://rentry.co/FMHYB64#mas)** - Windows & Office Activation / [Discord](https://discord.gg/gjJEfq7ux8)
|
||||
* [KMS_VL_ALL_AIO](https://rentry.co/FMHYB64#kms-vl) - Windows & Office Activation / Offline
|
||||
* [OfficeRTool](https://rentry.co/FMHYB64#officertool-project) - Office Activation / Offline
|
||||
|
||||
***
|
||||
|
|
@ -389,13 +392,14 @@
|
|||
|
||||
# ► 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)
|
||||
* 🌐 **[Windows-Ricing](https://github.com/winthemers/wiki)**, [Frutiger Aero Archive](https://frutigeraeroarchive.org/) or [Heliohost Guide](https://ninjasr.varesia.com/w/lb/windows) - Windows Ricing Resources
|
||||
* ⭐ **[Rainmeter](https://www.rainmeter.net/)** / [Discord](https://discord.com/invite/rainmeter) or [Seelen UI](https://github.com/eythaann/Seelen-UI) / [Discord](https://discord.gg/ABfASx5ZAJ) - Desktop Customization Environments
|
||||
* ⭐ **[OpenRGB](https://openrgb.org/)** / [Beta](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#openrgb-beta), **[WLED](https://kno.wled.ge/)**, [Aurora](https://www.project-aurora.com/), [LiquidCTL](https://github.com/liquidctl/liquidctl), [Artemis](https://artemis-rgb.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)
|
||||
* Styled Themes - [Anime](https://winmoes.com/) / [Modern Style](https://www.vinstartheme.com/) / [macOS Style](https://redd.it/pd5ha6) / [Old School Style](https://winclassic.boards.net/), [2](https://forum.spacehey.com/topic?id=94545)
|
||||
* [VirtualCustoms](https://virtualcustoms.net/), [WinClassic](https://winclassic.net/) or [winthemers](https://discord.com/invite/8FFWAqdtc4) - Customization Communities
|
||||
* [Desktops](https://deskto.ps/) - Customization Showcases
|
||||
* [ExplorerPatcher](https://github.com/valinet/ExplorerPatcher) - Win 10 Style Customization App for Win 11
|
||||
* [SecureUxTheme](https://github.com/namazso/SecureUxTheme) or [UltraUXThemePatcher](https://mhoefs.eu/software_uxtheme.php?ref=syssel&lang=en) - UX Patcher
|
||||
* [Cursormania Archive](https://archive.org/details/cursormania) - Cursors
|
||||
* [MacOS Cursors for Windows](https://www.deviantart.com/jimmyxd2/art/MacOS-Cursors-for-Windows-980049964), [CursorOS](https://cursor.design/) or [macOS-cursors-for-Windows](https://github.com/antiden/macOS-cursors-for-Windows) - macOS Style Cursors
|
||||
|
|
@ -414,7 +418,7 @@
|
|||
* [QTTabBar](https://github.com/indiff/qttabbar) - Windows File Explorer Enhancement
|
||||
* [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views
|
||||
* [MicaForEveryone](https://github.com/MicaForEveryone/MicaForEveryone) - Title Bar Effects
|
||||
* [ModernFlyouts](https://modernflyouts-community.github.io) - Modern Flyouts / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
||||
* [ModernFlyouts](https://modernflyouts-community.github.io) - Modern Flyouts
|
||||
* [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
|
||||
|
|
@ -435,25 +439,23 @@
|
|||
|
||||
## ▷ Wallpapers
|
||||
|
||||
* 🌐 **[WallSync](https://moddingstuff.site/)**, [2](https://wallsync.pages.dev/) - Wallpaper Site Index / [GitHub](https://github.com/leroiduflow/Wallsync)
|
||||
* 🌐 **[WallSync](https://roigoatzzz.github.io/Wallsync/)**, [2](https://wallsync.pages.dev/) - Wallpaper Site Index / [GitHub](https://github.com/leroiduflow/Wallsync)
|
||||
* ⭐ **[wallhaven.cc](https://wallhaven.cc/)** - Search Wallpapers / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader)
|
||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)** - 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/FMHYB64#ghibli-upscaled) - Studio Ghibli Wallpapers
|
||||
* ⭐ **[Ultimate Windows Wallpack](https://rentry.co/FMHYB64#windows-wallpapers)** / [Wiki](https://windowswallpaper.miraheze.org/wiki/Main_Page), [Spotlight](https://windows10spotlight.com/) - Windows Wallpapers
|
||||
* ⭐ **[Studio Ghibli Wallpapers](https://www.ghibli.jp/info/013772)** - Studio Ghibli Wallpapers
|
||||
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)**, [DesktopHut](https://www.desktophut.com/) / [Discord](https://discord.com/invite/QzgnQtJdfs), [r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Live Wallpapers
|
||||
* [WallpaperCave](https://wallpapercave.com/) - Search Wallpapers
|
||||
* [WallsCloud](https://wallscloud.net/en/) - Search Wallpapers
|
||||
* [WallpapersCraft](https://wallpaperscraft.com/) - Search Wallpapers
|
||||
* [VSThemes](https://vsthemes.org/en/) - Search Wallpapers
|
||||
* [r/Wallpaper](https://www.reddit.com/r/wallpaper/) - Wallpapers Community
|
||||
* [Frutiger Aero Archive](https://frutigeraeroarchive.org/) - 2000s Style Wallpapers
|
||||
* [Kawaii Hoshi](https://kawaiihoshi.com/) - Cute Wallpapers
|
||||
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) - Dual Monitor 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
|
||||
* [Simple Desktops](https://simpledesktops.com/), [Minimalistic Wallpaper](https://minimalistic-wallpaper.demolab.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalist Wallpapers
|
||||
* [Aesthetic Wallpapers](https://github.com/D3Ext/aesthetic-wallpapers) - Aesthetic 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
|
||||
* [Anime Pictures](https://anime-pictures.net/), [WallpaperWaifu](https://wallpaperwaifu.com/), [TheOtaku](https://theotaku.com/wallpapers/) 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
|
||||
|
|
@ -464,12 +466,12 @@
|
|||
|
||||
## ▷ Wallpaper Tools
|
||||
|
||||
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYB64#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/game-tools#wiki_.25B7_steam_workshop_downloaders) - Wallpaper / Live Wallpaper Manager
|
||||
* ⭐ **[Wallpaper Engine](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games/#wiki_.25BA_download_games)** / [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/) (search) - Wallpaper / Live Wallpaper Manager
|
||||
* ⭐ **Wallpaper Engine Tools** - [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/game-tools#wiki_.25B7_steam_workshop_downloaders)
|
||||
* ⭐ **[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
|
||||
* [wallhaven-desktop](https://github.com/luisflorido/wallhaven-desktop) - Wallhaven 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
|
||||
* [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
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* ⭐ **[Goblin.tools](https://goblin.tools/Formalizer/)** - Transform Text with Spiciness Levels
|
||||
* [OpenPaper](https://openpaper.work/en/), [papis](https://github.com/papis/papis), [PaperMerge](https://www.papermerge.com/), [Paperless-ngx](https://docs.paperless-ngx.com) / [Doc Analyzer](https://github.com/clusterzx/paperless-ai/), [Docspell](https://docspell.org/) / [GitHub](https://github.com/eikek/docspell), [Papra](https://github.com/papra-hq/papra) or [DataShare](https://datashare.icij.org/) - Document Managers
|
||||
* [SmartDoc](https://killytoronto.github.io/textanalyzer/) - Document Analyzer
|
||||
* [diffr](https://loilo.github.io/diffr/), [Diffchecker](https://www.diffchecker.com/), [TextCompare](https://www.textcompare.org/), [Text-Compare](https://text-compare.com/), [OnlineTextCompare](https://onlinetextcompare.com/), [CompareText](https://www.comparetext.io/) or [DiffNow](https://www.diffnow.com/) - Compare Text
|
||||
* [Diffr](https://loilo.github.io/diffr/), [Diffchecker](https://www.diffchecker.com/), [TextCompare](https://www.textcompare.org/), [Text-Compare](https://text-compare.com/), [OnlineTextCompare](https://onlinetextcompare.com/), [CompareText](https://www.comparetext.io/) or [DiffNow](https://www.diffnow.com/) - Compare Text
|
||||
* [Count Duplicates](https://www.somacon.com/p568.php) or [DuplicateWord](https://duplicateword.com/) - Count / Remove Duplicates in a List
|
||||
* [WindowTextExtractor](https://github.com/AlexanderPro/WindowTextExtractor) - Extract Text from Any Window
|
||||
* [Textify](https://ramensoftware.com/textify) - Copy Text from Any Dialog
|
||||
|
|
@ -29,26 +29,24 @@
|
|||
|
||||
## ▷ Pastebins
|
||||
|
||||
* ⭐ **[Rentry](https://rentry.co/)**, [2](https://rentry.org/) - Markdown Support / [CLI](https://github.com/radude/rentry) / [Styling](https://rentry.co/rentryarchived)
|
||||
* ⭐ **[GitHub Gists](https://gist.github.com/)** or [GitLab Snippets](https://docs.gitlab.com/user/snippets/) - Multi-Syntax / Sign-Up Required
|
||||
* ⭐ **[pastes.dev](https://pastes.dev/)** - Multi-Syntax / Markdown Support / [GitHub](https://github.com/lucko/paste)
|
||||
* ⭐ **[PrivateBin](https://privatebin.net/)**, [2](https://notebin.de/) - Markdown Support / Syntax Highlighting / [Instances](https://privatebin.info/directory) / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
||||
* ⭐ **[Rentry](https://rentry.co/)**, [2](https://rentry.org/) - Markdown Support / [CLI](https://github.com/radude/rentry) / [Styling](https://rentry.co/rentryarchived)
|
||||
* ⭐ **[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)
|
||||
* [fluffle](https://fluffle.cc/) - Markdown Support / [Source](https://git.0x8e.net/t/fluffle)
|
||||
* [Text.is](https://text.is/) - Markdown Support / Rentry Clone
|
||||
* [Stellular](https://stellular.net/), [2](https://bundlrs.cc/), [3](https://www.sentrytwo.com/) - Markdown Support
|
||||
* [bpa.st](https://bpa.st/) - Multi-Syntax / Markdown Support
|
||||
* [snowbin](https://pastes.fmhy.net/), [2](https://paste.fmhy.net/) - Markdown Support / [GitHub](https://github.com/fmhy/snowbin)
|
||||
* [Ghostbin](https://ghostbin.co/) - 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
|
||||
* [pst.moe](https://pst.moe/) - Multi-Syntax / Markdown Support
|
||||
* [Pastee](https://pastee.dev/) - Multi-Syntax / Markdown Support
|
||||
* [dpaste.com](https://dpaste.com/) - Multi-Syntax / Markdown Support
|
||||
* [NoPaste](https://nopaste.boris.sh/) - Multi-Syntax / [GitHub](https://github.com/bokub/nopaste)
|
||||
* [Pastebin.com](https://pastebin.com/) - Multi-Syntax
|
||||
* [pastebin.pl](https://pastebin.pl/) - Multi-Syntax
|
||||
* [CentOS Pastebin](https://paste.centos.org/) - Multi-Syntax
|
||||
* [Microbin](https://pub.microbin.eu/) - Multi-Syntax
|
||||
* [snippet.host](https://snippet.host/) - Multi-Syntax
|
||||
* [ProtectedText](https://www.protectedtext.com/) - Multi-Tab
|
||||
* [bin](https://basedbin.fly.dev/) - Minimal Pastebin
|
||||
|
|
@ -56,8 +54,8 @@
|
|||
* [MarkdownPastebin](https://markdownpastebin.com/) - Markdown Support
|
||||
* [Sparked Paste](https://paste.sparked.host/) - Plain Text / Syntax Highlighting
|
||||
* [Riseup Pad](https://pad.riseup.net/) - WYSIWYG Pastebin
|
||||
* [WriteXO](https://writexo.com/) - WYSIWYG Pastebin
|
||||
* [itty.bitty](https://itty.bitty.site/) - Site / Pastebin
|
||||
* [Pastry](https://pastry.diy/) - HTML / CSS Based Pastebin
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -67,17 +65,17 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[Google Translate](https://translate.google.com/)** / [Extension](https://chromewebstore.google.com/detail/google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb)
|
||||
* ⭐ **[DeepL](https://www.deepl.com/translator)** or [Qwen-MT](https://huggingface.co/spaces/Qwen/Qwen3-MT-Demo) / [Docs](https://qwenlm.github.io/blog/qwen-mt/) - AI-Based Translation
|
||||
* ⭐ **[Kagi Translate](https://translate.kagi.com/)**
|
||||
* ⭐ **[Google Translate](https://translate.google.com/)** / [Extension](https://chromewebstore.google.com/detail/google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb) or [SimplyTranslate](https://st.privacydev.net/) / [.onion](http://st.g4c3eya4clenolymqbpgwz3q3tawoxw56yhzk4vugqrl6dtu3ejvhjid.onion/) - Online
|
||||
* ⭐ **[DeepL](https://www.deepl.com/translator)** - Online AI-Based Translation
|
||||
* ⭐ **[Kagi Translate](https://translate.kagi.com/)** - Online
|
||||
* ⭐ **[Translate Web Pages](https://github.com/FilipePS/Traduzir-paginas-web)** (firefox) or [Linguist Translator](https://github.com/translate-tools/linguist) - Browser Extensions
|
||||
* ⭐ **[r/Translator](https://www.reddit.com/r/translator/)** - Translation Request Community
|
||||
* [LibreTranslate](https://libretranslate.com/) - FOSS Translator / Self-Hosted / Offline / [GitHub](https://github.com/LibreTranslate/LibreTranslate)
|
||||
* [Translate Shell](https://www.soimort.org/translate-shell/) - Translation CLI / [GitHub](https://github.com/soimort/translate-shell)
|
||||
* [Bing Translator](https://www.bing.com/translator)
|
||||
* [Yandex Translator](https://translate.yandex.com/)
|
||||
* [Bing Translator](https://www.bing.com/translator) - Online
|
||||
* [Yandex Translator](https://translate.yandex.com/) - Online
|
||||
* [Reverso](https://context.reverso.net/translation/) - Online In-Context Translations
|
||||
* [Nice Translator](https://nicetranslator.com/) - Batch Multi-Language Translation
|
||||
* [Reverso](https://context.reverso.net/translation/) - Translations In Context
|
||||
* [Translator++](https://dreamsavior.net/) or [Renpy Translator](https://github.com/anonymousException/renpy-translator) - CAT For Games
|
||||
* [Poedit](https://poedit.net/) - Software Translation / [GitHub](https://github.com/vslavik/poedit)
|
||||
* [Morsecode World](https://morsecode.world/) - Morse Code Translation Tools
|
||||
|
|
@ -97,6 +95,8 @@
|
|||
* [Revoldiv](https://revoldiv.com/) or [Turboscribe](https://turboscribe.ai/) - AI-Based Transcriptions
|
||||
* [Vibe](https://thewh1teagle.github.io/vibe/) - Audio Transcription Software
|
||||
* [Buzz](https://github.com/chidiwilliams/buzz) - Audio Transcription Tool
|
||||
* [Handy](https://handy.computer/) - Audio Transcription Tool / [Discord](https://discord.gg/WVBeWsNXK4) / [GitHub](https://github.com/cjpais/Handy)
|
||||
* [TransPocket](https://transpocket.com/) - Audio Transcription Tool
|
||||
* [WhisperX](https://github.com/m-bain/whisperX) - Audio Transcription Tool
|
||||
* [Parakeet](https://huggingface.co/spaces/nvidia/parakeet-tdt-0.6b-v2) - Audio Transcription / HuggingFace
|
||||
* [SpeechNotes](https://speechnotes.co/) - Speech Recognition Notes App
|
||||
|
|
@ -130,15 +130,17 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[LanguageTool](https://languagetool.org/)**
|
||||
* [Grammarly](https://www.grammarly.com/grammar-check) - Sign-Up Required / [Extension](https://www.grammarly.com/browser)
|
||||
* [Writing Tools](https://github.com/theJayTea/WritingTools) - Desktop App
|
||||
* [DeepL Write](https://www.deepl.com/write)
|
||||
* [QuillBot](https://quillbot.com/grammar-check)
|
||||
* [Scribens](https://www.scribens.com/)
|
||||
* [EditGPT](https://www.editgpt.app/) - Sign-Up Required
|
||||
* [ProWritingAid](https://prowritingaid.com/grammar-checker) - Sign-Up Required
|
||||
* [Outwrite](https://www.outwrite.com/) - Sign-Up Required
|
||||
* ⭐ **[LanguageTool](https://languagetool.org/)** - Web App
|
||||
* [Grammarly](https://www.grammarly.com/grammar-check) - Web App / [Extension](https://www.grammarly.com/browser)
|
||||
* [Writing Tools](https://github.com/theJayTea/WritingTools) - Desktop App - Sign-Up Required
|
||||
* [Harper](https://writewithharper.com/) - Web App / Extension / [Discord](https://discord.com/invite/JBqcAaKrzQ) / [GitHub](https://github.com/automattic/harper)
|
||||
* [DeepL Write](https://www.deepl.com/write) - Web App
|
||||
* [Kagi Proofread](https://translate.kagi.com/proofread) - Web App
|
||||
* [QuillBot](https://quillbot.com/grammar-check) - Web App / [Features](https://rentry.co/FMHYB64#quill)
|
||||
* [Scribens](https://www.scribens.com/) - Web App
|
||||
* [EditGPT](https://www.editgpt.app/) - Web App / Sign-Up Required
|
||||
* [ProWritingAid](https://prowritingaid.com/grammar-checker) - Web App / Sign-Up Required
|
||||
* [Outwrite](https://www.outwrite.com/) - - Web App / Sign-Up Required
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -175,14 +177,12 @@
|
|||
* ⭐ **[keybr](https://www.keybr.com/)** - Custom Touch Typing Practice / [GitHub](https://github.com/aradzie/keybr.com)
|
||||
* [Typing Guide](https://docs.google.com/document/d/1W0jhfqJI2ueJ2FNseR4YAFpNfsUM-_FlREHbpNGmC2o) - In-Depth Typing Guide
|
||||
* [Typ.ing](https://typ.ing/), [Typings](https://typings.gg/) or [typing.works](https://typing.works/) - Typing Tests
|
||||
* [CyberType](https://cybertype.app/) - Touch Typing Practice / [GitHub](https://github.com/MananTank/cybertype)
|
||||
* [Typing.com](https://www.typing.com/) - Touch Typing Lessons
|
||||
* [Typing Club](https://www.typingclub.com/) - Touch Typing Lessons
|
||||
* [typing.academy](https://www.typing.academy/) - Typing Lessons / Requires JavaScript Enabled
|
||||
* [TypeRacer](https://play.typeracer.com/), [ZType](https://zty.pe/), [TypeRush](https://www.typerush.com/) or [ARRRType](https://www.arrrtype.com/) - Typing Games
|
||||
* [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
|
||||
* [Typersguild](https://typersguild.com/), [TypeLit.io](https://www.typelit.io/) or [Entertrained](https://entertrained.app/) - Book Typing Tests
|
||||
* [Colemak Academy](https://www.colemak.academy/) - Alt / Custom Keyboard Tests
|
||||
* [TypingStudy](https://www.typingstudy.com/) or [TypeFast](https://typefast.io/) - Multilingual Touch Typing Tests
|
||||
* [10fastfingers](https://10fastfingers.com/) - Typing Competitions
|
||||
|
||||
|
|
@ -190,7 +190,7 @@
|
|||
|
||||
## ▷ LaTeX Tools
|
||||
|
||||
* ⭐ **[Overleaf](https://www.overleaf.com/) or [TeXStudio](https://texstudio.org/)** - LaTeX Editors
|
||||
* ⭐ **[Overleaf](https://www.overleaf.com/), [Crixet](https://crixet.com/) / [Discord](https://discord.gg/ffMZrSxUQa) or [TeXStudio](https://texstudio.org/)** - LaTeX Editors
|
||||
* [Learn LaTeX](https://www.learnlatex.org/) - LaTeX Guide
|
||||
* [Typst](https://typst.app/home) / [Resources](https://github.com/qjcg/awesome-typst) / [GitHub](https://github.com/typst/typst) - LaTeX Alternative
|
||||
* [Tables Generator](https://www.tablesgenerator.com/) - Create LaTeX Tables
|
||||
|
|
@ -220,14 +220,15 @@
|
|||
|
||||
* ↪️ **[Android Note-Taking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_text_tools)**
|
||||
* ⭐ **[Obsidian](https://obsidian.md/)** - Markdown Note-Taking / [Discord](https://discord.gg/obsidianmd)
|
||||
* ⭐ **Obsidian Tools** - [Resources](https://github.com/kmaasrud/awesome-obsidian) / [Publish Notes](https://dg-docs.ole.dev/) / [Web Clipper](https://github.com/obsidianmd/obsidian-clipper) / [Google Drive Sync](https://github.com/stravo1/obsidian-gdrive-sync) / [Guides](https://help.obsidian.md/Home) / [Forum](https://forum.obsidian.md/)
|
||||
* ⭐ **Obsidian Tools** - [Publish Notes](https://dg-docs.ole.dev/) / [Web Clipper](https://github.com/obsidianmd/obsidian-clipper) / [Google Drive Sync](https://github.com/stravo1/obsidian-gdrive-sync) / [Guides](https://help.obsidian.md/Home) / [Forum](https://forum.obsidian.md/)
|
||||
* ⭐ **[Notion](https://www.notion.com/)** - Note-Taking
|
||||
* ⭐ **Notion Tools** - [Themes](https://notionthemes.yudax.me/) / [Templates](https://notionpages.com/) / [Resources](https://www.notioneverything.com/notion-world), [2](https://chief-ease-8ab.notion.site/List-of-200-Notion-Resources-e1b46cd365094265bd47b8a2b25bb41e) / [Guide](https://easlo.notion.site/Notion-Beginner-to-Advanced-8a492960b049433289c4a8d362204d20) / [Markdown Extractor](https://notionconvert.com/)
|
||||
* ⭐ **[Notesnook](https://notesnook.com/)** - Note-Taking / [GitHub](https://github.com/streetwriters/notesnook)
|
||||
* ⭐ **Notion Tools** - [Templates](https://notionpages.com/) / [Resources](https://www.notioneverything.com/notion-world), [2](https://chief-ease-8ab.notion.site/List-of-200-Notion-Resources-e1b46cd365094265bd47b8a2b25bb41e) / [Guide](https://easlo.notion.site/Notion-Beginner-to-Advanced-8a492960b049433289c4a8d362204d20) / [Markdown Extractor](https://notionconvert.com/)
|
||||
* ⭐ **[AnyType](https://anytype.io/)** - Note-Taking / [GitHub](https://github.com/anyproto/anytype-ts)
|
||||
* ⭐ **[Logseq](https://logseq.com/)** - Outlining / [GitHub](https://github.com/logseq/logseq)
|
||||
* ⭐ **[Notesnook](https://notesnook.com/)** - Note-Taking / [Discord](https://discord.com/invite/notesnook-796015620436787241) / [GitHub](https://github.com/streetwriters/notesnook)
|
||||
* [AppFlowy](https://appflowy.com/) - Note-Taking / [GitHub](https://github.com/AppFlowy-IO/AppFlowy)
|
||||
* [AFFiNE](https://affine.pro/) - Note-Taking / [GitHub](https://github.com/toeverything/AFFiNE)
|
||||
* [Lokus](https://www.lokusmd.com/) - Markdown Note-Taking / [GitHub](https://github.com/lokus-ai/lokus)
|
||||
* [Trilium](https://github.com/TriliumNext/Trilium) - Info Manager
|
||||
* [Mochi Cards](https://mochi.cards/) or [Silicon](https://github.com/cu/silicon) - Note-Taking / Study Tools
|
||||
* [Flotes](https://flotes.app/) - Markdown Note-Taking
|
||||
|
|
@ -238,6 +239,7 @@
|
|||
* [Desklamp](https://desklamp.io/) - Reading / Note-Taking / Highlighting Tool / [Guide](https://app.desklamp.io/read?id=46b203c6-d8df-453d-b546-95a8fa7a44b9&mode=explore)
|
||||
* [Memos](https://usememos.com/) - Note-Taking / [Discord](https://discord.gg/tfPJa4UmAv) / [GitHub](https://github.com/usememos/memos)
|
||||
* [Papers.IM](https://papers.im/) - Note-Taking
|
||||
* [Janta](https://app.janta.dev/) - Note-Taking
|
||||
* [Joplin](https://joplinapp.org/) - Note-Taking / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/joplin-web-clipper/) / [Chrome](https://chrome.google.com/webstore/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfek?hl=en-GB) / [GitHub](https://github.com/laurent22/joplin)
|
||||
* [MicroPad](https://getmicropad.com/) - Note-Taking
|
||||
* [WriteDown](https://writedown.app/) - Note-Taking
|
||||
|
|
@ -245,7 +247,8 @@
|
|||
* [KeyNote NF](https://github.com/dpradov/keynote-nf) - Note-Taking
|
||||
* [SilentNotes](https://www.martinstoeckli.ch/silentnotes/) - Note-Taking / [GitHub](https://github.com/martinstoeckli/SilentNotes)
|
||||
* [Google Keep](https://keep.google.com/) - Simple Notes
|
||||
* [StandardNotes](https://standardnotes.com/) - Encrypted Notes
|
||||
* [Crypt.ee](https://crypt.ee/) - Encrypted Notes
|
||||
* [Standard Notes](https://standardnotes.com/) - Encrypted Notes / [Discord](https://discord.com/invite/9VNW3kK554) / [GitHub](https://github.com/standardnotes/app)
|
||||
* [Saber](https://saber.adil.hanney.org/) - Handwritten Notes
|
||||
* [Butterfly](https://butterfly.linwood.dev/) - Handwritten Notes / [Discord](https://discord.com/invite/97zFtYN) / [GitHub](https://github.com/LinwoodDev/Butterfly)
|
||||
* [Xournal++](https://xournalpp.github.io/) - Handwritten Notes / [GitHub](https://github.com/xournalpp/xournalpp)
|
||||
|
|
@ -255,10 +258,10 @@
|
|||
|
||||
## ▷ Office Suites
|
||||
|
||||
* ↪️ **[Office Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** / [Custom Install Guide](https://gravesoft.dev/office_c2r_custom)
|
||||
* ↪️ **[Office Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** / [Custom Install Guide](https://massgrave.dev/office_c2r_custom)
|
||||
* ⭐ **[LibreOffice](https://www.libreoffice.org/)** - FOSS Office Suite
|
||||
* ⭐ **[OnlyOffice](https://www.onlyoffice.com/)** - FOSS Office Suite
|
||||
* ⭐ **[Microsoft Office](https://gravesoft.dev/office_c2r_links)** - Office Suite / [Removal Tool](https://github.com/abbodi1406/WHD/blob/master/scripts/OfficeScrubber_13.zip) / [Hotkeys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd)
|
||||
* ⭐ **[Microsoft Office](https://massgrave.dev/office_c2r_links)** - Office Suite / [Hotkeys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd)
|
||||
* [Calligra](https://calligra.org/) - FOSS Office Suite
|
||||
* [Office365Version](https://www.office365versions.com/) - Office 365 Version History
|
||||
|
||||
|
|
@ -346,7 +349,7 @@
|
|||
## ▷ Spreadsheet Editors
|
||||
|
||||
* 🌐 **[MTEB Leaderboard](https://huggingface.co/spaces/mteb/leaderboard)** - Text Embedding AI Leaderboard
|
||||
* [tad](https://github.com/antonycourtney/tad), [Tree Sheets](https://strlen.com/treesheets/), [VisiData](https://www.visidata.org/), [Gnumeric](http://www.gnumeric.org/) or [Quadratic](https://www.quadratichq.com/) - Spreadsheet Viewers / CSV Editors
|
||||
* [tad](https://github.com/antonycourtney/tad), [Tree Sheets](https://strlen.com/treesheets/), [VisiData](https://www.visidata.org/), [Gnumeric](https://gnome.pages.gitlab.gnome.org/gnumeric-web/) or [Quadratic](https://www.quadratichq.com/) - Spreadsheet Viewers / CSV Editors
|
||||
* [Baserow](https://baserow.io/) / [GitLab](https://gitlab.com/baserow/baserow), [Framacalc](https://framacalc.org/), [EtherCalc](https://ethercalc.net/), [NocoDB](https://github.com/nocodb/nocodb) or [AirTable](https://airtable.com/) - Collaborative Spreadsheets
|
||||
* [Jamovi](https://www.jamovi.org/) - Statistical Spreadsheets
|
||||
* [Excel Practice Online](https://excel-practice-online.com/) - Excel Practice / Guides
|
||||
|
|
@ -363,7 +366,6 @@
|
|||
|
||||
## ▷ Writing Tools
|
||||
|
||||
* 🌐 **[Author Stash](https://authorstash.com/)** - Writing Tools / Resources
|
||||
* ↪️ **[AI Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_ai_writing_tools)**
|
||||
* ↪️ **[RPG / Fantasy Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools/#wiki_.25B7_rpg_worldbuilding)**
|
||||
* ⭐ **[Writer](https://www.gibney.org/writer)**, [FocusWriter](https://gottcode.org/focuswriter/), [Writemonkey](https://writemonkey.com/), [blank.page](https://blank.page/), [Telegra.ph](https://telegra.ph/), [Aurelius](https://aurelius.ink), [ZenPen](https://zenpen.io/), [Write.as](https://write.as/), [Owri](https://owri.netlify.app/), [WriteSpace](https://www.writespace.app/) or [WriteNext](https://www.writenext.io/) - Distraction-Free Writing
|
||||
|
|
@ -375,6 +377,7 @@
|
|||
* [RenPy](https://www.renpy.org/) - Visual Novel Editor / [GitHub](https://github.com/renpy/renpy)
|
||||
* [Fortelling](https://www.fortelling.app/) or [Novelist](https://beta.novelist.app) - Novel Plotting / Editing Workspaces
|
||||
* [Infinite Story](https://infinite-story.com/), [Strand](https://strand.jinay.dev/), [Agora](https://www.agorawriter.com/) or [WriteAlong](https://www.writealong.io/) - Collaborative Writing / Feedback
|
||||
* [Gateway Forge](https://gatewayforge.com/) / [Modules](https://gatewayforge.com/resources) / [Discord](https://discord.gg/c3PEQxxKfn) or [Chronicler](https://chronicler.pro/) / [Discord](https://discord.gg/cXJwcbe2b7) / [GitHub](https://github.com/mak-kirkland/chronicler) - Worldbuilding / Story Writing Apps
|
||||
* [LanguageIsAVirus](https://www.languageisavirus.com/) or [MDWA](https://www.squibler.io/dangerous-writing-prompt-app) - Writing Prompts
|
||||
* [Twinery](https://twinery.org/) - Interactive Non-Linear Story Creator
|
||||
* [TextUSM](https://textusm.com/) - User Story Map Generator / [GitHub](https://github.com/harehare/textusm)
|
||||
|
|
@ -393,7 +396,7 @@
|
|||
|
||||
* ↪️ **[Android To-Do Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_to-do_apps)**
|
||||
* ⭐ **[Goblin.tools](https://goblin.tools/)** - Automatic Task Breakdown
|
||||
* ⭐ **[TickTick](https://www.ticktick.com/)** / [Premium](https://rentry.co/FMHYB64#ticktick)
|
||||
* ⭐ **[TickTick](https://www.ticktick.com/)** / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites2) (search)
|
||||
* ⭐ **[Super Productivity](https://super-productivity.com/)**
|
||||
* [Columns](https://columns.app/) - Checklists
|
||||
* [YearCompass](https://yearcompass.com/) - New Years Resolution Booklet
|
||||
|
|
@ -421,7 +424,7 @@
|
|||
* [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
|
||||
* [shabzefilters](https://shabzefilters.netlify.app/), [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/), [ascii-exploration](https://ascii-exploration.vercel.app/), [text-image](https://www.text-image.com/) 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
|
||||
* [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](https://www.roysac.com/sitemap.html) - Browse / Copy ASCII Art
|
||||
* [Image to Braille](https://505e06b2.github.io/Image-to-Braille/) - Convert Images to Braille
|
||||
* [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
|
||||
|
|
@ -453,8 +456,10 @@
|
|||
* [Bunny Fonts](https://fonts.bunny.net/) - Open Source
|
||||
* [Google Fonts](https://fonts.google.com/) - Commercial Use / [Privacy-Friendly API](https://fonts.coollabs.io/)
|
||||
* [FontShare](https://fontshare.com/) - Commercial Use
|
||||
* [OnlineWebFonts](https://www.onlinewebfonts.com/) - Commercial Use
|
||||
* [Fontlot](https://fontlot.com/) - Freeware
|
||||
* [Fontsly](https://fontsly.com/) - Freeware
|
||||
* [FOSSFonts](https://fossfonts.com/) - Freeware
|
||||
* [Fonts4Free](https://www.fonts4free.net/) - Freeware
|
||||
* [FontSpace](https://www.fontspace.com/) - Freeware
|
||||
* [Online Fonts](https://online-fonts.com/) - Freeware
|
||||
|
|
@ -477,7 +482,6 @@
|
|||
|
||||
* ⭐ **[Fonts CSE](https://cse.google.com/cse?cx=82154ebab193e493d)** - Multi-Site Font Search
|
||||
* ⭐ **[Font Piracy 101](https://rentry.co/FontPiracy)** - Font Download Guide
|
||||
* ⭐ **[Font Drives](https://rentry.co/FMHYB64#font-collections)**
|
||||
* ⭐ **[BeFonts](https://befonts.com/)**
|
||||
* [Windows Fonts](https://wfonts.com/)
|
||||
* [Free Fonts Family](https://freefontsfamily.org/)
|
||||
|
|
@ -551,8 +555,10 @@
|
|||
* ⭐ **[FSymbols](https://fsymbols.com/generators/)**
|
||||
* ⭐ **[Fancy Text](https://fancy-text.net/)**
|
||||
* [Cool Fonts Online](https://coolfont.org/)
|
||||
* [Discord Fonts](https://discord-fonts.com/)
|
||||
* [FontMaker.io](https://fontmaker.io/)
|
||||
* [Aesthetic Font Generator](https://www.tesms.net/)
|
||||
* [Text-Generator](https://text-generator.app/)
|
||||
* [BoldTextGenerator](https://boldtextgenerator.org/)
|
||||
* [Font Generator Online](https://www.fontgeneratoronline.com/)
|
||||
* [FontGenerator.cc](https://fontgenerator.cc/)
|
||||
|
|
|
|||
|
|
@ -10,11 +10,11 @@
|
|||
|
||||
# ► Torrent Sites
|
||||
|
||||
* ⭐ **[RuTracker](https://rutracker.org/)** - Video / Audio / Comics / Magazines / Software / Sign-Up Required
|
||||
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.net/) - Video / Audio / Comics / Magazines / Software / Sign-Up Required
|
||||
* ⭐ **RuTracker Tools** - [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* ⭐ **[m0nkrus](https://vk.com/monkrus)** - Adobe / Autodesk Software / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus)
|
||||
* ⭐ **[m0nkrus](https://rentry.co/FMHYB64#m0nkrus)** - Adobe / Autodesk Software
|
||||
* ⭐ **Adobe Tools** - [GenP](https://rentry.co/FMHYB64#genp) / [Block Adobe](https://rentry.co/FMHYB64#a-dove-is-dumb) / [Adobe Guide](https://rentry.co/FMHYB64#adobe-guide)
|
||||
* [1337x](https://1337x.to/) - Video / Audio / NSFW / [Mirrors](https://1337x-status.org/) / [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/)
|
||||
* [1337x](https://1337x.to/), [2](https://x1337x.cc/) - Video / Audio / NSFW / [Mirrors](https://1337x-status.org/) / [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/)
|
||||
* 1337x Tools - [Telegram Bot](https://t.me/search_content_bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Display Magnets](https://greasyfork.org/en/scripts/373230) / [Timestamp 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
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
* [PiratesParadise](https://piratesparadise.org/)
|
||||
* [snowfl](https://snowfl.com/)
|
||||
* [Torlock](https://www.torlock.com/)
|
||||
* [YourBittorrent](https://yourbittorrent.com/)
|
||||
* [uIndex](https://uindex.org/)
|
||||
* [BTSearch](https://btsearch.19950817.xyz/en)
|
||||
* [Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj) / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
|
||||
* [0Mag](https://www.0mag.net/), [2](https://16mag.net/) - Magnet Link Sharing Platform
|
||||
|
|
@ -109,24 +109,24 @@
|
|||
* 🌐 **[QBT Plugins](https://github.com/qbittorrent/search-plugins)** - Plugins Index
|
||||
* 🌐 **[QBT Themes](https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-qBittorrent-themes)** - Themes Index
|
||||
* [qBitMF](https://github.com/qBitMF/qBitMF) - Multi-Connection Tool
|
||||
* [VueTorrent](https://github.com/VueTorrent/VueTorrent) - Web Client
|
||||
* [qui](https://github.com/autobrr/qui) or [VueTorrent](https://github.com/VueTorrent/VueTorrent) - Web Clients / WebUIs
|
||||
* [rqBit](https://github.com/ikatson/rqbit/) - Rust Client
|
||||
* [qBit Manage](https://github.com/StuffAnThings/qbit_manage) - Manager / Automation Tool
|
||||
* [qBitController](https://github.com/Bartuzen/qBitController) - Mobile Controllers
|
||||
* [Docker QBT](https://github.com/linuxserver/docker-qbittorrent) or [QBT VPN](https://github.com/binhex/arch-qbittorrentvpn) - Docker Builds
|
||||
* [Dark Theme](https://draculatheme.com/qbittorrent) or [iOS Style](https://github.com/ntoporcov/iQbit/) - QBT Themes
|
||||
* [qBitEndpoints](https://rentry.co/qBitEndpoints) - API Endpoints
|
||||
* [qBitEndpoints](https://claraiscute.neocities.org/Guides/qBitEndpoints/), [2](https://claraiscute.pages.dev/Guides/qBitEndpoints/) - API Endpoints
|
||||
* [Quantum](https://github.com/UHAXM1/Quantum) - Auto Port Updater for Proton
|
||||
|
||||
***
|
||||
|
||||
## ▷ Remote Torrenting
|
||||
|
||||
* ⭐ **[Seedr](https://www.seedr.cc/)** - 2GB / Sign-Up Required / [Telegram Bot](https://t.me/TorrentSeedrBot) / [API Wrapper](https://github.com/theabbie/seedr-api), [2](https://github.com/AnjanaMadu/SeedrAPI)
|
||||
* ⭐ **[TorBox](https://torbox.app/)** - Freemium / 10GB / 10 Monthly Downloads / Sign-Up Required / [Unofficial Mobile Client](https://github.com/93Pd9s8Jt/atba) / [Subreddit](https://www.reddit.com/r/TorBoxApp/) / [Discord](https://discord.com/invite/wamy) / [GitHub](https://github.com/TorBox-App)
|
||||
* ⭐ **[TorBox](https://torbox.app/)** - Freemium / 10GB / 10 Monthly Downloads / [Unofficial Mobile Client](https://github.com/93Pd9s8Jt/atba) / [Subreddit](https://www.reddit.com/r/TorBoxApp/) / [Discord](https://discord.com/invite/wamy) / [GitHub](https://github.com/TorBox-App)
|
||||
* ⭐ **[Seedr](https://www.seedr.cc/)** - 2GB / [Telegram Bot](https://t.me/TorrentSeedrBot) / [API Wrapper](https://github.com/AnjanaMadu/SeedrAPI)
|
||||
* [Torrent_To_Google_Drive_Downloader](https://colab.research.google.com/github/FKLC/Torrent-To-Google-Drive-Downloader/blob/master/Torrent_To_Google_Drive_Downloader.ipynb) - Google Colab
|
||||
* [webtor](https://webtor.io/) - No Limit / Download Speed Limited / No Sign-Up
|
||||
* [Multi-Up](https://multiup.io/en/upload/from-torrent) - 10 GB / Sign-Up Required
|
||||
* [Multi-Up](https://multiup.io/en/upload/from-torrent) - 10 GB
|
||||
* [BitPlay](https://github.com/aculix/bitplay) - Torrent to Stream / Self-Hosted
|
||||
|
||||
***
|
||||
|
|
@ -137,13 +137,14 @@
|
|||
|
||||
# ► Private Trackers
|
||||
|
||||
* 🌐 **[Private Trackers General](https://rentry.co/private-trackers)**, **[r/TrackersInfo](https://www.reddit.com/r/TrackersInfo/wiki/official_recruitments/)**, [The Sheet](https://inviteroute.github.io/sheet/), [Invite.icu](https://invite.icu/) or [Graph](https://inviteroute.github.io/graph/) - Private Tracker Guides
|
||||
* 🌐 **[Private Trackers General](https://claraiscute.neocities.org/Guides/private-trackers)**, [2](https://claraiscute.pages.dev/Guides/private-trackers/), **[r/TrackersInfo](https://www.reddit.com/r/TrackersInfo/wiki/official_recruitments/)**, [Private_Trackers](https://igwiki.lyci.de/wiki/Private_trackers), [The Sheet](https://inviteroute.github.io/sheet/), [Graph](https://inviteroute.github.io/graph/) or [Invite.icu](https://invite.icu/) - Private Tracker Guides
|
||||
* 🌐 **[Scene Related](https://opentrackers.org/links/warez-scene/#scenerelated)** - Warez / Scene Site Index
|
||||
* ⭐ **[TrackerStatus](https://trackerstatus.info/)** or [TrackerHub](https://hdvinnie.github.io/TrackerHub/) - Tracker Status Updates
|
||||
* [r/trackers](https://reddit.com/r/trackers) - Tracker Discussion
|
||||
* [r/OpenSignups](https://www.reddit.com/r/OpenSignups/) or [r/OpenedSignups](https://www.reddit.com/r/OpenedSignups/) - Open Tracker Signup Subs
|
||||
* [Private_Trackers](https://igwiki.lyci.de/wiki/Private_trackers) or [hdvinnie](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - Private Tracker Lists
|
||||
* [Private Tracker Spreadsheet](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - Private Tracker Lists
|
||||
* [OpenSignups](https://t.me/trackersignup) - Open Signups Private Trackers / Telegram
|
||||
* [cross-seed](https://www.cross-seed.org/) - Cross-Seeding Tool / Seed Same Torrent Across Multiple Sites
|
||||
* [Upload-Assistant](https://github.com/L4GSP1KE/Upload-Assistant) - Private Tracker Auto-Upload
|
||||
* [TrackerScreenshot](https://github.com/KlevGG/TrackerScreenshot) - Auto Screenshot Tracker Stats
|
||||
|
||||
|
|
@ -154,7 +155,7 @@
|
|||
* 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [GitHub](https://github.com/ngosang/trackerslist), [TrackersList.com](https://trackerslist.com/) / [GitHub](https://github.com/XIU2/TrackersListCollection) or [newTrackon](https://newtrackon.com/list) - Tracker Lists
|
||||
* ↪️ **[Auto Torrent Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps)**
|
||||
* ⭐ **[Milkie](https://milkie.cc)** / [Discord](https://discord.com/invite/E4khNy5dz3) or [Scnlog](https://scnlog.me) - Scene Release Download
|
||||
* ⭐ **[PreDB.net](https://predb.net/)**, **[PreDataBA](https://predataba.se)**, [Xrel](https://www.xrel.to), [NGP](https://ngp.re/), [Archiv.pw](https://archiv.pw/), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release Info
|
||||
* ⭐ **[PreDB.net](https://predb.net/)**, **[Pre Database](https://predataba.se)**, [Xrel](https://www.xrel.to), [NG Pre](https://ngp.re/), [Archiv.pw](https://archiv.pw/), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release Info
|
||||
* ⭐ **[T2M](https://nutbread.github.io/t2m/)** / [2](https://github.com/nutbread/t2m) or [Torrent Kitty](https://www.torrentkitty.tv/) / [2](https://www.torrentkitty.net/) / [3](https://www.torrentkitty.lol/) - Torrent to Magnet Converters
|
||||
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
|
||||
* [PeerBanHelper](https://github.com/PBH-BTN/PeerBanHelper/blob/master/README.EN.md) - Block Unwanted Leeches / Peers
|
||||
|
|
@ -167,7 +168,7 @@
|
|||
* [AutoDL-Irssi](https://autodl-community.github.io/autodl-irssi/) - IRC Channel Monitor / Autodownload / [Slack Notifications](https://gist.github.com/Igglybuff/00d5e91274a562ac724d358bbbc8bc7b)
|
||||
* [PrivTracker](https://privtracker.com/) - Private BitTorrent Tracker Generator / [GitHub](https://github.com/meehow/privtracker)
|
||||
* [AnonSeed](https://www.anonseed.com/) - Anonymous Torrent Sharing
|
||||
* [TorrentTools](https://github.com/fbdtemme/torrenttools), [mkbrr](https://mkbrr.com/) / [GitHub](https://github.com/autobrr/mkbrr) or [Torrent-Creator](https://kimbatt.github.io/torrent-creator/) / [GitHub](https://github.com/Kimbatt/torrent-creator) - Torrent Creators
|
||||
* [mkbrr](https://mkbrr.com/) / [GitHub](https://github.com/autobrr/mkbrr), [Torf GUI](https://github.com/SavageCore/torf-gui), [DotTorrentGUI](https://github.com/kz26/dottorrent-gui) or [Torrent-Creator](https://kimbatt.github.io/torrent-creator/) / [GitHub](https://github.com/Kimbatt/torrent-creator) - Torrent Creators
|
||||
* [Torrent Parts](https://torrent.parts/) / [GitHub](https://github.com/leoherzog/TorrentParts) or [Torrent File Editor](https://torrent-file-editor.github.io/) / [GitHub](https://github.com/torrent-file-editor/torrent-file-editor) - Edit Torrents Files
|
||||
* [r/torrents](https://reddit.com/r/torrents) - Torrenting Discussion
|
||||
* [IKnowWhatYouDownload](https://iknowwhatyoudownload.com/) - View Torrents Downloaded by your IP (can be inaccurate)
|
||||
|
|
@ -9,16 +9,16 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
|||
***
|
||||
|
||||
* 🌐 **[Untrusted Sites](https://rentry.org/pgames#untrusted-sites)** / **[Uploaders](https://rentry.org/pgames#untrusted-uploaders)** - More Complete Lists
|
||||
* 🌐 **[Fake FitGirl Sites](https://rentry.co/FakeFitgirlwebsites)**
|
||||
* 🌐 **[Fake FitGirl Sites](https://claraiscute.neocities.org/Guides/FakeFitgirlwebsites/)**, [2](https://claraiscute.pages.dev/Guides/FakeFitgirlwebsites/)
|
||||
* OceanOfGames - Caught with malware multiple times
|
||||
* CrackingPatching - Caught with [malware](https://redd.it/qy6z3c)
|
||||
* xGIROx - Caught with malware
|
||||
* BBRepacks - Caught with malware
|
||||
* Seyter / Qoob - Caught with malware, tried to [switch names](https://rentry.co/qoobrepacker)
|
||||
* Seyter / Qoob - Caught with malware, tried to [switch names](https://claraiscute.neocities.org/Announcements/qoob/), [2](https://claraiscute.pages.dev/Announcements/qoob/)
|
||||
* cracked-games - Caught with malware
|
||||
* Wifi4Games - Caught with malware
|
||||
* IGG Games / Load Games - Highly distrusted for [doxxing another sites owner](https://i.ibb.co/3sHJb6R/image.png) / [2](https://i.ibb.co/kBVkW7s/image.png) / [3](https://i.ibb.co/fGF6PJ5/GHnCVKi.png) / [4](https://imgur.com/a/jg9mLIa), click hijack ads, and getting [demoted on 1337x](https://i.imgur.com/MwAYARu.png) / [2](https://i.ibb.co/39WDrb0m/image.png) / [3](https://www.reddit.com/r/PiratedGames/comments/muc5wz/comment/gv4wfqq/) for malware
|
||||
* GameFabrique - IGG uploads + [adware installers](https://rentry.co/GameFabrique_Adware/)
|
||||
* GameFabrique - IGG uploads + [adware installers](https://claraiscute.neocities.org/Announcements/gamefabrique_adware), [2](https://claraiscute.pages.dev/Announcements/gamefabrique_adware/)
|
||||
* SteamUnlocked - [IGG / NosTeam uploads](https://i.ibb.co/VgW2ymY/YUnRNpN.png) + very slow file host
|
||||
* game-repack - Shady [fake DL buttons](https://i.ibb.co/tqZSG9M/image.png) / [2](https://i.imgur.com/fbJ16Yq.png) + they remove comments [asking about it](https://i.ibb.co/2qGQQjT/40hzLVh.png) / [2](https://i.imgur.com/40hzLVh.png)
|
||||
|
||||
|
|
@ -34,12 +34,12 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
|||
* SadeemPC / SadeemAPK - Caught with malware multiple times
|
||||
* KaranPC - Caught with malware multiple times
|
||||
* AliTPB / AliPak / b4tman - Caught with malware multiple times
|
||||
* FileCR - Caught with malware [multiple times](https://pastebin.com/ky5KMGz2)
|
||||
* FileCR - Caught with malware [multiple times](https://ibb.co/FkZKZmXS) + [unsafe extension](https://gist.github.com/Th3w33knd/06b15b0df1b08ab371c392cc75be4f53)
|
||||
* FTUApps - Caught with [malware](https://redd.it/120xk62)
|
||||
* S0ft4PC / Portable4PC - Caught with malware
|
||||
* CrackingCity - Caught with [malware](https://tria.ge/241021-kfvhhsydpl/behavioral1)
|
||||
* CracksHash - Caught with [malware](https://redd.it/lklst7)
|
||||
* haxNode - Caught with [malware](https://claraiscute.github.io/Guides/scurvy_malware/) / [2](https://www.virustotal.com/gui/file/e6318aa4432c304b234df65f5d87bf2577b930ed68ac7e68efcb76b465dc0784)
|
||||
* haxNode - Caught with scurvy malware / [vt](https://www.virustotal.com/gui/file/e6318aa4432c304b234df65f5d87bf2577b930ed68ac7e68efcb76b465dc0784)
|
||||
* IGI30 - Caught with malware
|
||||
* 4Download / Download93 - Caught with [malware](https://tria.ge/250116-pcl47azkfw)
|
||||
* MicroTech - Caught with [malware](https://tria.ge/250116-qxj11atmdl)
|
||||
|
|
@ -79,7 +79,6 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
|||
### Software / Apps
|
||||
|
||||
* Downloadly (video downloader) - Crypto miner
|
||||
* Opera (browser) - Poor [privacy practices](https://www.kuketz-blog.de/opera-datensendeverhalten-desktop-version-browser-check-teil13/), [2](https://stellular.net/noopera) / [Predatory Loan Apps](https://www.androidpolice.com/2020/01/21/opera-predatory-loans/)
|
||||
* McAfee - Preinstalled Bloatware
|
||||
* Avast - Known for selling user data
|
||||
* AVG - Owned by Avast
|
||||
|
|
@ -91,8 +90,9 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
|||
* Kik (messaging app) - App used by mostly [predators / scammers](https://youtu.be/9sPaJxRmIPc)
|
||||
* Flix Vision - Malicious app that [remotely enables TraffMonetizer](https://github.com/fmhy/edit/issues/2835)
|
||||
* TLauncher (minecraft launcher) - [Shady](https://redd.it/zmzzrt) business practices / Note that TLauncher Legacy and ATLauncher are unrelated
|
||||
* GShade (ReShade mod) - Dev added code that can trigger unwanted [reboots](https://claraiscute.github.io/Guides/gshade_notice/)
|
||||
* GShade (ReShade mod) - Dev added code that can trigger unwanted [reboots](https://claraiscute.neocities.org/Announcements/gshade_notice/), [2](https://claraiscute.pages.dev/Announcements/gshade_notice/)
|
||||
* TotalAV / PC Protect / Protected - Antivirus Software [Scam](https://www.malwarebytes.com/blog/detections/pup-optional-totalav) / [2](https://www.malwarebytes.com/blog/detections/pup-optional-pcprotect) / [3](https://youtu.be/PcS3EozgyhI)
|
||||
* 360 Total Security - Apps give [constant popups](https://en.wikipedia.org/wiki/Criticism_of_Qihoo_360#Malicious_promotion) to install "toolbox," which itself modifies default apps (like browser) and switches them all to 360 options. The toolbox will also be installed without consent if the repair, optimize, or clean options are used.
|
||||
* Watchug / Watchugofficial - Scammers that pretend their domain is for sale, then just block users after they've paid
|
||||
|
||||
***
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
* [ImgBurn](https://www.majorgeeks.com/files/details/imgburn.html), [CDBurnerXP](https://cdburnerxp.se/), [DVDStyler](https://www.dvdstyler.org/en/), [DeepBurner](https://www.deepburner.com/) or [Alcohol Soft](https://www.alcohol-soft.com/) - CD / DVD Burning
|
||||
* [VidCoder](https://vidcoder.net/) or [XReveal](https://www.xreveal.com/) - DVD / Blu-ray Ripping
|
||||
* [MakeMKV](https://www.makemkv.com/) - Create MKV from Blu-ray / DVD / [Beta Keys](https://rentry.co/FMHYB64#makemkv-beta)
|
||||
* [MakeMKV](https://www.makemkv.com/) - Create MKV from Blu-ray / DVD / [Beta Version](https://forum.makemkv.com/forum/viewtopic.php?f=5&t=1053), [2](https://cable.ayra.ch/makemkv/)
|
||||
* [DGDemux](https://www.rationalqm.us/dgdemux/dgdemux.html) - Blu-ray/UHD Disk Demuxer
|
||||
* [PgcDemux](https://www.videohelp.com/software/PgcDemux) - DVD Disk Demuxer
|
||||
* [BatchGuy](https://github.com/yaboy58/BatchGuy) - Blu-ray Ripping
|
||||
|
|
@ -70,6 +70,7 @@
|
|||
* [Shinobi](https://shinobi.video/) - Network Video Recorder / Mac, Linux / [Discord](https://discord.com/invite/mdhmvuH) / [GitLab](https://gitlab.com/Shinobi-Systems/Shinobi)
|
||||
* [MythTV](https://www.mythtv.org/) - Digital Video Recorder (DVR) / Windows, Mac, Linux / [GitHub](https://github.com/MythTV/mythtv)
|
||||
* [FFmpeg](https://ffmpeg.org/) / Windows, Mac, Linux / [GitHub](https://github.com/FFmpeg/FFmpeg) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_ffmpeg_tools)
|
||||
* [Openscreen](https://openscreen.vercel.app/) / Windows, Mac / [GitHub](https://github.com/siddharthvaddem/openscreen)
|
||||
* [ShareX](https://getsharex.com/) / Windows / [Discord](https://discord.com/invite/ShareX) / [GitHub](https://github.com/ShareX/ShareX)
|
||||
* [vokoscreenNG](https://linuxecke.volkoh.de/vokoscreen/vokoscreen.html) / Windows, Linux / [GitHub](https://github.com/vkohaupt/vokoscreenNG)
|
||||
* [Cap](https://cap.so/) / Windows, Mac / [GitHub](https://github.com/CapSoftware/Cap)
|
||||
|
|
@ -83,12 +84,12 @@
|
|||
|
||||
## ▷ Processing / Encoding
|
||||
|
||||
* ⭐ **[HandBrake](https://handbrake.fr/)** - Video Encoding Software / Windows, Mac, Linux / [GitHub](https://github.com/HandBrake/HandBrake) / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake)
|
||||
* ⭐ **[HandBrake](https://handbrake.fr/)** or [VidCoder](https://vidcoder.net/) - Video Encoding Software / Windows, Mac, Linux / [GitHub](https://github.com/HandBrake/HandBrake) / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake)
|
||||
* ⭐ **[FFmpeg](https://ffmpeg.org/)** - Multimedia Processors / Windows, Mac, Linux / [GitHub](https://github.com/FFmpeg/FFmpeg) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_ffmpeg_tools)
|
||||
* ⭐ **[Shutter Encoder](https://www.shutterencoder.com/)** - Video Encoding Software / Windows, Mac, Linux / [GitHub](https://github.com/paulpacifico/shutter-encoder)
|
||||
* ⭐ **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools / Windows, Mac, Linux
|
||||
* ⭐ **[archived-things](https://sometimes-archives-things.github.io/archived-things/)**, [Codec Wiki](https://wiki.x266.mov/) / [Discord](https://discord.gg/bbQD5MjDr3) / [GitHub](https://github.com/av1-community-contributors/codec-wiki), [JET Guide](https://jaded-encoding-thaumaturgy.github.io/JET-guide/master/), [The Encoding Guide](https://encoding-guide.neocities.org/) or [Silentaperture](https://silentaperture.gitlab.io/mdbook-guide/) - Video Encoding Guides
|
||||
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/remuxing)** - Learn How to Remux Videos
|
||||
* ⭐ **[Basics to the Art of Remuxing](https://claraiscute.neocities.org/Guides/remuxing/)**, [2](https://claraiscute.pages.dev/Guides/remuxing/) - Learn How to Remux Videos
|
||||
* [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing
|
||||
* [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos / Windows, Linux
|
||||
* [IFME](https://github.com/Anime4000/IFME) - Video Encoding / Windows, Linux
|
||||
|
|
@ -125,7 +126,7 @@
|
|||
* [FFmpeg-Builds](https://github.com/BtbN/FFmpeg-Builds) or [media-autobuild_suite](https://github.com/m-ab-s/media-autobuild_suite) - Autobuild Tools
|
||||
* [ffmpeg-web](https://ffmpeg-web.netlify.app/) or [ffmpegwasm](https://ffmpegwasm.netlify.app/) / [2](https://ffmpeg.gcc.ac.cn/) - FFmpeg Web App / [GitHub](https://github.com/Dinoosauro/ffmpeg-web)
|
||||
* [FFmpeg Libav](https://github.com/leandromoreira/ffmpeg-libav-tutorial) or [ffmprovisr](https://amiaopensource.github.io/ffmprovisr/) - FFmpeg Guides
|
||||
* [ASM Lessons](https://github.com/FFmpeg/asm-lessons) - FFmpeg Assembly Language Lessons / Multiple Langauges
|
||||
* [ASM Lessons](https://github.com/FFmpeg/asm-lessons) - FFmpeg Assembly Language Lessons / Multiple Languages
|
||||
* [FFmpeg Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730), [FFmpeg Commander](https://alfg.dev/ffmpeg-commander/) or [FFmpeg Buddy](https://evanhahn.github.io/ffmpeg-buddy/) - Command Lists
|
||||
* [WebMConverter](https://argorar.github.io/WebMConverter/) - WebM Converter
|
||||
* [PureMPV](https://github.com/4ndrs/PureMPV) - Info Copy Tool
|
||||
|
|
@ -139,6 +140,7 @@
|
|||
* 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)** or [StreamerFreebies](https://streamerfreebies.com/) - Live Streaming Resources
|
||||
* ⭐ **[OBS Studio](https://obsproject.com/)** - Live Stream Manager / Windows, Mac, Linux / [GitHub](https://github.com/obsproject/obs-studio)
|
||||
* ⭐ **OBS Tools** - [Tweaks](https://discord.gg/CTT) / [Background Remover](https://github.com/locaal-ai/obs-backgroundremoval) / [Web App](https://github.com/Niek/obs-web) / [Phone Controller](https://github.com/Kounex/obs_blade) / [Plugin Updater](https://ko-fi.com/s/0b5bd4536d) / [Guide](https://www.nvidia.com/en-us/geforce/guides/broadcasting-guide/)
|
||||
* ⭐ **[Streamer.bot](https://streamer.bot/)** - Live Stream Manager / [X](https://x.com/streamerdotbot) / [Subreddit](https://www.reddit.com/r/streamerbot) / [Discord](https://discord.com/invite/hYqQGG3puC) / [GitHub](https://github.com/Streamerbot)
|
||||
* [StreamLabs](https://streamlabs.com/) - Live Stream Manager / Windows, Mac / [GitHub](https://github.com/streamlabs/desktop)
|
||||
* [Stream Elements](https://streamelements.com/) - Streaming Service Manager
|
||||
* [Restream](https://restream.io/) - Multi-Platform Streams
|
||||
|
|
@ -220,7 +222,7 @@
|
|||
* ⭐ **[WatchParty](https://www.watchparty.me/)** - Online / Virtual Browser
|
||||
* ⭐ **[neko](https://neko.m1k1o.net/)** - Docker Virtual Browser / [GitHub](https://github.com/m1k1o/neko)
|
||||
* [HyperBeam](https://hyperbeam.com/) / [VIP](https://greasyfork.org/en/scripts/457795) - Virtual Computer Embed
|
||||
* [Trast](https://trast.live/), [OpenTogetherTube](https://opentogethertube.com/), [TurtleTV](https://turtletv.app/) or [twoseven](https://twoseven.xyz/) - Online Player
|
||||
* [OpenTogetherTube](https://opentogethertube.com/), [TurtleTV](https://turtletv.app/) or [twoseven](https://twoseven.xyz/) - Online Player
|
||||
* [Metastream](https://getmetastream.com/) - Online Extension / [X](https://x.com/getmetastream) / [Discord](https://discord.com/invite/nfwPRb9) / [GitHub](https://github.com/samuelmaddock/metastream)
|
||||
* [Caracal Club](https://caracal.club/) - Online Video Player
|
||||
* [CyTube](https://cytu.be/) - Online Video Player
|
||||
|
|
@ -235,7 +237,7 @@
|
|||
|
||||
* 🌐 **[Awesome-MPV](https://github.com/stax76/awesome-mpv)** - MPV Tools / Resources
|
||||
* 🌐 **[igv's shaders](https://gist.github.com/igv)** - Various Shaders
|
||||
* [MPV Config Guide](http://thewiki.moe/tutorials/mpv/), [2](https://iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/), [3](https://hooke007-github-io.translate.goog/unofficial/index.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp)
|
||||
* [MPV Config Guide](https://thewiki.moe/tutorials/mpv/), [2](https://iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/), [3](https://hooke007-github-io.translate.goog/unofficial/index.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp)
|
||||
* [ModernX](https://github.com/cyl0/ModernX), [tethys](https://github.com/Zren/mpv-osc-tethys) or [uosc](https://github.com/tomasklaen/uosc) - Alt User Interfaces
|
||||
* [Simple MPV WebUI](https://github.com/open-dynaMIX/simple-mpv-webui) - WebUI Controller
|
||||
* [MPV Context Menu](https://gitlab.com/carmanaught/mpvcontextmenu)
|
||||
|
|
@ -258,7 +260,6 @@
|
|||
|
||||
* 🌐 **[Awesome VLC](https://github.com/mfkl/awesome-vlc)** - VLC Resources
|
||||
* [VLSub](https://github.com/exebetche/vlsub) - Sub Downloader
|
||||
* [VLC Skin](https://rentry.co/VLC-skin) - VLC Skins
|
||||
* [VLC Slow Seek Fix](https://redd.it/os6f1q)
|
||||
|
||||
***
|
||||
|
|
@ -270,13 +271,14 @@
|
|||
* ⭐ **[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
|
||||
* [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
|
||||
* [Prowlarr](https://prowlarr.com/) / [GitHub](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
|
||||
* [Reiverr](https://github.com/aleksilassila/reiverr) - Media Server Manager
|
||||
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer
|
||||
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation
|
||||
* [Huntarr](https://github.com/plexguide/Huntarr.io) - Automate Media Server Missing Content / Quality Upgrades / [Discord](https://discord.com/invite/PGJJjR5Cww)
|
||||
* [Seanime](https://seanime.app/) - Anime Server
|
||||
* [Plex](https://www.plex.tv/) - Media Server
|
||||
* [DMS](https://github.com/anacrolix/dms) - Media Server
|
||||
* [Emby](https://emby.media/) - Media Server
|
||||
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
|
||||
* [OSMC](https://osmc.tv/) - Media Server
|
||||
|
|
@ -291,7 +293,7 @@
|
|||
* [Frames](https://github.com/Eleven-am/frames) - Google Drive Server
|
||||
* [HTPC](https://r-htpc.github.io/wiki/) - Home Theater PC guides / [Subreddit](https://www.reddit.com/r/htpc/)
|
||||
* [MSX](https://msx.benzac.de/info/) - Web App
|
||||
* [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers
|
||||
* [Tunarr](https://tunarr.com/) / [GitHub](https://github.com/chrisbenincasa/tunarr/), [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Custom Live Channel Servers
|
||||
* [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) / [Mobile](https://github.com/jellyseerr/mobile-app) or [Ombi](https://github.com/Ombi-app/Ombi) - User Request Management
|
||||
* [YTDL-Sub](https://ytdl-sub.readthedocs.io/en/) - Add YouTube Channels to Media Servers / [GitHub](https://github.com/jmbannon/ytdl-sub)
|
||||
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
|
||||
|
|
@ -319,7 +321,6 @@
|
|||
* ⭐ **[Fladder](https://github.com/DonutWare/Fladder/)** - Desktop Client / Windows, Mac, Linux, Android, iOS
|
||||
* [Blink](https://github.com/prayag17/Blink) - Desktop Client
|
||||
* [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Client
|
||||
* [r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing
|
||||
* [Findroid](https://github.com/jarnedemeulemeester/findroid) or [Streamyfin](https://github.com/streamyfin/streamyfin) - JellyFin Android Clients
|
||||
* [Jellyfin Forum](https://forum.jellyfin.org/) - Official Jellyfin Forum
|
||||
* [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - Jellyfin Web Client
|
||||
|
|
@ -335,7 +336,7 @@
|
|||
* ⭐ **[Elementum](https://elementum.surge.sh/)** - Torrent Streaming / Trakt Sync / Similar to Stremio + Torrentio
|
||||
* [EverythingKodi](https://rumble.com/c/EverythingKodi) - Kodi Addon Tutorials
|
||||
* [Kodi Builds Chart](https://kodiapps.com/builds-chart)
|
||||
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons
|
||||
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) or [TroyPoint](https://troypoint.com/) - Kodi Addons
|
||||
* [Kodi Skins](https://kodi.tv/addons/omega/category/skins/) or [WIP Skins](https://forum.kodi.tv/forumdisplay.php?fid=160) - Kodi Skins
|
||||
* [Synko](https://github.com/Skaytacium/synko) - Kodi Stream Sync
|
||||
* [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) or [plex-for-kodi](https://github.com/pannal/plex-for-kodi) - Plex for Kodi
|
||||
|
|
@ -352,11 +353,12 @@
|
|||
* ↪️ **[Twitch Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_downloaders)**
|
||||
* ↪️ **[Download Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_download_managers)**
|
||||
* ⭐ **[yt-dlp](https://github.com/yt-dlp/yt-dlp)** or [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - Multi-Site / [Commands](https://toolbrew.org/), [2](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection) / [Zoom Fix](https://github.com/yt-dlp/yt-dlp/issues/2299) / [Discord](https://discord.gg/H5MNcFW63r)
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online / [Instances](https://instances.cobalt.best/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
||||
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/), [3](https://9xbuddy.in/) - Multi-Site / Online
|
||||
* ⭐ **[Video DownloadHelper](https://www.downloadhelper.net/)**, [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online / [Instances](https://instances.cobalt.best/), [2](https://cobalt.directory/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
||||
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.site/), [3](https://9xbuddy.in/) - Multi-Site / Online
|
||||
* ⭐ **[Video DownloadHelper](https://www.downloadhelper.net/)** / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#video-downloadhelper), [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
||||
* [CD(R)M-Project](https://cdm-project.com/explore/repos) - DRM Tools / [Discord](https://discord.gg/zvGBza34JP)
|
||||
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online
|
||||
* [OFA Downloader](https://oneforalldownloader.com/) - Multi-Site / Online
|
||||
* [you-get](https://you-get.org/) - Multi-Site / CLI / [GitHub](https://github.com/soimort/you-get)
|
||||
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site / Software
|
||||
* [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site / Software / [Discord](https://discord.gg/uFNUXvFFmg)
|
||||
|
|
@ -373,7 +375,7 @@
|
|||
|
||||
* ⭐ **[r/VideoEditing](https://www.reddit.com/r/VideoEditing/)** - Video Editing Subreddit / [Wiki](https://www.reddit.com/r/VideoEditing/wiki/index/)
|
||||
* ⭐ **[Eyecandy](https://eyecannndy.com/)** - Visual Technique Examples / [Discord](https://discord.com/invite/WRyrPkWEzT)
|
||||
* ⭐ **[Waifu2x GUI](https://github.com/AaronFeng753/Waifu2x-Extension-GUI)**, [TheAnimeScripter](https://github.com/NevermindNilas/TheAnimeScripter), [Video2x](https://github.com/k4yt3x/video2x), [Enhancr](https://github.com/mafiosnik777/enhancr), [Lossless Scaling](https://rentry.co/FMHYB64#lossless-scaling) or [Dandere2x](https://github.com/akai-katto/dandere2x) - Video Upscaling
|
||||
* ⭐ **[Waifu2x GUI](https://github.com/AaronFeng753/Waifu2x-Extension-GUI)**, [TheAnimeScripter](https://github.com/NevermindNilas/TheAnimeScripter), [Video2x](https://github.com/k4yt3x/video2x), [Enhancr](https://github.com/mafiosnik777/enhancr), [Lossless Scaling](https://fmhy.net/gaming#download-games) (search) or [Dandere2x](https://github.com/akai-katto/dandere2x) - Video Upscaling
|
||||
* [Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers) - Info on Codecs & Containers
|
||||
* [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums
|
||||
|
||||
|
|
@ -381,10 +383,11 @@
|
|||
|
||||
## ▷ Video Editors
|
||||
|
||||
* ⭐ **[LosslessCut](https://github.com/mifi/lossless-cut)** - Video Editor
|
||||
* ⭐ **[kdenlive](https://kdenlive.org/en/)** - Video Editor / [GitHub](https://github.com/KDE/kdenlive)
|
||||
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor / Sign-Up Required / Fake Info Works
|
||||
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor / Sign-Up Required / Fake Info Works / [Subtitle Generator](https://github.com/tmoroney/auto-subs) / [Discord](https://discord.gg/davinci-resolve-community-714620142096482314)
|
||||
* ⭐ **[LosslessCut](https://github.com/mifi/lossless-cut)** - Single Video Editor
|
||||
* ⭐ **[Shotcut](https://shotcut.org/)** - Video Editor / [GitHub](https://github.com/mltframework/shotcut)
|
||||
* [Satvrn](https://rentry.co/FMHYB64#satvrn) - Video Editors / Plugins
|
||||
* [Auto-Editor](https://auto-editor.com/) - CLI Editor
|
||||
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
|
||||
* [Webm Generator](https://github.com/dfaker/WebmGenerator) - Webm Editor
|
||||
|
|
@ -412,6 +415,7 @@
|
|||
* ⭐ **[wide.video](https://wide.video/)** / [Discord](https://discord.gg/Q54kW97yj5)
|
||||
* ⭐ **[Pikimov](https://pikimov.com/)** - Use Edge or Chrome
|
||||
* ⭐ **[Mastershot](https://mastershot.app/)** - Sign-Up Required
|
||||
* [Klippy](https://www.klippy.pro/) / [Discord](https://discord.gg/xJVXbQVPZP)
|
||||
* [Panzoid](https://panzoid.com/)
|
||||
* [vidmix](https://vidmix.app/)
|
||||
* [Video Cutter](https://video-cutter-js.com/)
|
||||
|
|
@ -430,13 +434,14 @@
|
|||
## ▷ Effects / Enhancements
|
||||
|
||||
* [Video Enhance AI](https://lrepacks.net/repaki-programm-dlya-grafiki/) - Video Enhancement Tool / Search "Topaz" on LR
|
||||
* [Gyroflow](https://gyroflow.xyz/) - Video Stabilization / [GitHub](https://github.com/gyroflow/gyroflow)
|
||||
* [Gyroflow](https://gyroflow.xyz/) / [GitHub](https://github.com/gyroflow/gyroflow) or [ComfyUI-Video-Stabilizer](https://github.com/nomadoor/ComfyUI-Video-Stabilizer) - Video Stabilization
|
||||
* [Flowframes](https://nmkd.itch.io/flowframes) / [Beta](https://kemono.cr/patreon/user/19695417) or [SVP](https://www.svp-team.com/) / [Guide](https://www.svp-team.com/wiki/Manual:SVPcode) - Video Interpolation / Increase FPS
|
||||
* [VideoColorizerColab](https://colab.research.google.com/github/jantic/DeOldify/blob/master/VideoColorizerColab.ipynb) - Video Colorization Colab
|
||||
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager
|
||||
* [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters)
|
||||
* [blur](https://github.com/f0e/blur) or [Smoothie](https://github.com/couleur-tweak-tips/smoothie-rs) - Add Motion Blur to Videos / [Tutorial](https://youtu.be/16-KU4r3BcA)
|
||||
* [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting
|
||||
* [effect.app](https://effect.app/) - Online Video Effects
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -464,7 +469,7 @@
|
|||
* 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art & Animation Resource Index
|
||||
* ⭐ **[Unreal Engine](https://www.unrealengine.com/)**, [MoonRay](https://openmoonray.org/), [cgsoftbox](https://t.me/cgsoftbox), [SketchUp](https://www.sketchup.com/) or [Twinmotion](https://www.twinmotion.com/en-US) - 3D Creation Tools
|
||||
* ⭐ **[Immersity AI](https://www.immersity.ai/)** - 2D Image to 3D Animation Tool
|
||||
* [OpenToonz](https://opentoonz.github.io/e/), [Wick Editor](https://www.wickeditor.com/editor/), [Clipnote Studio](https://calcium-chan.itch.io/clipnote) or [Pencil2D](https://www.pencil2d.org/) - Animation Tools
|
||||
* [OpenToonz](https://opentoonz.github.io/e/) / [GitHub](https://github.com/opentoonz/opentoonz), [Friction](https://friction.graphics/) / [GitHub](https://github.com/friction2d/friction), [Wick Editor](https://www.wickeditor.com/editor/), [Tixl](https://tixl.app/) / [GitHub](https://github.com/tixl3d/tixl), [Clipnote Studio](https://calcium-chan.itch.io/clipnote) or [Pencil2D](https://www.pencil2d.org/) - Motion Graphics Editors / Animation Tools
|
||||
* [Animaker](https://www.animaker.com/) - Animated Video Creator
|
||||
* [3DThis](https://3dthis.com/) - 3D Animation Tools
|
||||
* [Mega Scans](https://quixel.com/megascans) - 3D Scans
|
||||
|
|
@ -482,12 +487,12 @@
|
|||
* [JWildfire](https://jwildfire.overwhale.com/), [IFSRenderer](https://github.com/bezo97/IFSRenderer) or [Fractorium](http://fractorium.com/) - Flame Fractal Rendering Software
|
||||
* [BestSnip](https://bestsnip.com/animation/), [Sketch Machine](https://sketchmachine.net/), [Plask](https://plask.ai/) or [Rive](https://rive.app/) - Online Animation Tools
|
||||
* [Glaxnimate](https://glaxnimate.mattbas.org/) or [Trangram](https://www.trangram.com/) - Vector Animation Tools
|
||||
* [LibreSprite](https://libresprite.github.io/), [GraphicsGale](https://graphicsgale.com/us/), [JPixel](https://emad.itch.io/jpixel), [Aseprite](https://github.com/aseprite/aseprite) / [Guide](https://youtu.be/Z4Enx-Nb43E) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools
|
||||
* [LibreSprite](https://libresprite.github.io/), [GraphicsGale](https://graphicsgale.com/us/), [JPixel](https://pixelfromhell.itch.io/jpixel), [Aseprite](https://github.com/aseprite/aseprite) / [Guide](https://youtu.be/Z4Enx-Nb43E) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools
|
||||
* [Spritesheet Generator](https://spritesheetgenerator.online/) - Spritesheet Generator
|
||||
* [Animated Drawings](https://sketch.metademolab.com/), [FliiipBook](https://www.fliiipbook.com/), [Mutsuacen](https://mutsuacen.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings
|
||||
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
|
||||
* [Viggle](https://viggle.ai/) / [Discord](https://discord.com/invite/viggle) or [Picrew](https://picrew.me/) - Animated Character Creators
|
||||
* [Mixamo](https://www.mixamo.com/), [Endorphin](https://rentry.co/FMHYB64#endorphin) / [Subreddit](https://www.reddit.com/r/endorphin/) or [Cascadeur](https://cascadeur.com/) - 3D Character Animation Tools
|
||||
* [Mixamo](https://www.mixamo.com/), [Endorphin](https://archive.org/) (search) / [Subreddit](https://www.reddit.com/r/endorphin/) or [Cascadeur](https://cascadeur.com/) - 3D Character Animation Tools
|
||||
* [MMHuman3D](https://github.com/open-mmlab/mmhuman3d) - 3D Human Model Creator
|
||||
* [Talking Face Avatar](https://github.com/Yazdi9/Talking_Face_Avatar) - Talking Avatar Generator
|
||||
* [Blender Open Movies](https://youtube.com/playlist?list=PLav47HAVZMjnTFVZL-aImCQIC0uLZtNCz) - CGI Assets
|
||||
|
|
|
|||
345
docs/video.md
345
docs/video.md
|
|
@ -6,27 +6,32 @@
|
|||
|
||||
# ► Streaming Sites
|
||||
|
||||
* **Note** - Check our [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 use [throwaway emails](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail) or [aliases](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) when signing up for streaming sites. Try a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn) if sites are blocked for you.
|
||||
* **Note** - Check our [grading page](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to see scores for each site, as well as their respective pros & cons. Remember to use [throwaway emails](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail) or [aliases](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) when signing up for streaming sites. Try a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn) if sites are blocked for you.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)**, [2](https://www.bitcine.app/) or [Fmovies+](https://www.fmovies.gd/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[XPrime](https://xprime.tv/)**, [2](https://xprime.today/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/pDjg5ccSgg)
|
||||
* ⭐ **[Cineby](https://www.cineby.gd/)**, [2](https://www.bitcine.app/) or [Fmovies+](https://www.fmovies.gd/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[P-Stream](https://pstream.mov/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Notes](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web) / [Discord](https://discord.gg/uHU4knYRPa) / [GitHub](https://github.com/p-stream)
|
||||
* ⭐ **[XPrime](https://xprime.stream/)**, [2](https://xprime.today/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/pDjg5ccSgg)
|
||||
* ⭐ **[VeloraTV](https://veloratv.ru/)** or [456movie](https://456movie.net/), [2](https://345movie.net/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/4SJ5c9gZUQ)
|
||||
* ⭐ **[SpenFlix](https://watch.spencerdevs.xyz/)**, [2](https://spenflix.ru/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||
* ⭐ **[Flixer](https://flixer.su/)** / [2](https://flixy.watch/), [Hexa](https://hexa.watch/) or [Vidora](https://watch.vidora.su/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||
* ⭐ **[Flixer](https://flixer.sh)**, [Hexa](https://hexa.su/) or [Vidora](https://watch.vidora.su/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||
* [Aether](https://aether.mom/), [2](https://legacy.aether.mom/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/MadMF7xb5q)
|
||||
* [FlickyStream](https://flickystream.ru/) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Discord](https://discord.com/invite/flickystream)
|
||||
* [Rive](https://rivestream.org/), [2](https://rivestream.net/), [3](https://www.rivestream.app/) or [CorsFlix](https://watch.corsflix.net), [2](https://watch.corsflix.dpdns.org/), [3](https://corsflix.net) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* [1Shows](https://www.1shows.ru/), [1Flex](https://www.1flex.ru/) or [RgShows](https://www.rgshows.ru/) - Movies / TV / Anime / [Auto Next](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#rgshows-autoplay) / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* [FlickyStream](https://flickystream.net) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.com/invite/flickystream)
|
||||
* [Cinegram](https://cinegram.net/) - Movies / TV / Anime / Auto-Next
|
||||
* [FilmCave](https://filmcave.net/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/fmcave) / [Discord](https://discord.gg/BtpYzMbDjH)
|
||||
* [Smashystream](https://smashystream.com/), [2](https://flix.smashystream.xyz/), [3](https://flix.smashystream.xyz/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl) / [Discord](https://discord.com/invite/tcdcxrbDkE)
|
||||
* [StreamM4u](https://streamm4u.com.co/) - Movies / TV / Anime / [Clones](https://rentry.co/sflix#streamm4u-clones)
|
||||
* [SpenFlix](https://watch.spencerdevs.xyz/), [2](https://spenflix.ru/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||
* [FilmCave](https://filmcave.ru/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/fmcave) / [Discord](https://discord.gg/BtpYzMbDjH)
|
||||
* [Cinema.BZ](https://cinema.bz/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/cinemabz)
|
||||
* [PopcornMovies](https://popcornmovies.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* [Cinetaro](https://cinetaro.buzz/) - Movies / TV / Anime / 3rd Party Host
|
||||
* [Smashystream](https://smashystream.com/), [2](https://flix.smashystream.xyz/), [3](https://smashystream.xyz/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl) / [Discord](https://discord.com/invite/tcdcxrbDkE)
|
||||
* [TVids](https://www.tvids.to/), [2](https://www.tvids.net/), [3](https://watch-tvseries.net/), [4](https://tvids.me/), [5](https://tvids.tv/) - Movies / TV / Anime / Auto-Next
|
||||
* [StreamM4u](https://streamm4u.com.co/), [2](https://m4uhd.page/) - Movies / TV / Anime / [Clones](https://rentry.co/sflix#streamm4u-clones)
|
||||
* [BFLIX](https://bflix.sh/) - Movies / TV
|
||||
* [MovieHD](https://moviehd.us) - Movies / [Telegram](https://t.me/+NthvAOpP0oNkMWU1)
|
||||
* [PrimeWire](https://www.primewire.mov/), [2](https://www.primewire.tf/) - Movies / TV / Anime / 3rd Party Hosts
|
||||
* [StreamDB](https://streamdb.online/) - Movies / TV / 3rd Party Hosts / [Telegram](https://t.me/streamdb_online)
|
||||
* [PrimeWire](https://www.primewire.mov/), [2](https://www.primewire.tf/) - Movies / TV / Anime / Mostly 3rd Party Hosts
|
||||
* [StreamDB](https://streamdb.space/) - Movies / TV / 3rd Party Hosts / [Telegram](https://t.me/streamdb_online)
|
||||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / Anime / 3rd Party Hosts
|
||||
* [Downloads-Anymovies](https://www.downloads-anymovies.co/) - Movies / 3rd Party Hosts
|
||||
* [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
|
||||
|
|
@ -35,77 +40,82 @@
|
|||
|
||||
## ▷ Stream Aggregators
|
||||
|
||||
* **Note** - These serve as interfaces for multiple stream providers or APIs. Many have custom players that auto test streams one-by-one without user input required. Sources vary site-to-site depending on which owners feel are worth using. See [website grading](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#stream-aggregators) for scores.
|
||||
* **Note** - These serve as interfaces for multiple stream providers or APIs. Many have custom players that auto test streams one-by-one without user input required. Sources vary site-to-site depending on which owners feel are worth using. Check [grading page](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#stream-aggregators) for scores.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[BEECH](https://beech.watch/)** or [Mocine](https://mocine.cam/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* ⭐ **[BEECH](https://www.beech.watch/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* ⭐ **[CinemaOS](https://cinemaos.live/)**, [2](https://cinemaos.tech/), [3](https://cinemaos.me/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/38yFnFCJnA)
|
||||
* ⭐ **[Aether](https://aether.mom/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/MadMF7xb5q)
|
||||
* ⭐ **[Filmex](https://filmex.to/)**, [2](https://fmovies4u.com/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.com/invite/WWrWnG8qmh)
|
||||
* [Primeshows](https://www.primeshows.live/) - Movies / TV / Anime / [Discord](https://discord.com/invite/t2PnzRgKeM)
|
||||
* [Vidbox](https://vidbox.cc/), [2](https://cinehd.cc/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* ⭐ **[Cinezo](https://www.cinezo.net/)** or [Yenime](https://yenime.net/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [Primeshows](https://www.primeshows.live/) or [Netflex](https://netflex.uk/) - Movies / TV / Anime / [Discord](https://discord.com/invite/t2PnzRgKeM)
|
||||
* [Vidbox](https://vidbox.cc/), [2](https://cinehd.cc/), [3](https://hotflix.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* [Bludclart](https://watch.bludclart.com/), [2](https://watch.streamflix.one/) - Movies / TV / Anime / [Add Sources](https://greasyfork.org/en/scripts/538940) / [Discord](https://discord.gg/5Am2QQW6qZ)
|
||||
* [VLOP](https://www.vlop.fun/) - Movies / TV / Anime / Watch Parties / [Telegram](https://t.me/vlopstreaming) / [Discord](https://discord.gg/GzXQWKUbjh)
|
||||
* [LordFlix](https://lordflix.club/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/JeMDzxSbhH)
|
||||
* [Poprink](https://popr.ink/), [2](https://nidoe.me/) - Movies / TV / Anime / Watch Parties / [Telegram](https://t.me/vlopstreaming) / [Discord](https://discord.gg/GzXQWKUbjh)
|
||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / [4K Guide](https://rentry.co/willow-guide) / [Telegram](https://t.me/+8OiKICptQwA4YTJk) / [Discord](https://discord.com/invite/gmXvwcmxWR)
|
||||
* [Mapple.tv](https://mapple.mov/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [HydraHD](https://hydrahd.io/) - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* [Cinezo](https://www.cinezo.net/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [VoidFlix](https://voidflix.pages.dev/) or [Flixzy](https://flixzy.pages.dev/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/GDfP8S243T)
|
||||
* [Cinevibe](https://cinevibe.asia/) - Movies / TV / Anime / [Discord](https://discord.com/invite/4BU2XbAPdu)
|
||||
* [Mapple.tv](https://mappl.tv/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [HydraHD](https://hydrahd.com/), [2](https://hydrahd.ru/) - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* [Netplay](https://netplayz.live/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||
* [TMovie](https://tmovie.tv/), [2](https://tmovie.cc) - Movies / TV / Anime / [Discord](https://discord.com/invite/R7a6yWMmfK)
|
||||
* [1PrimeShows](https://1primeshow.online/) - Movies / TV / Anime / [Discord](https://discord.gg/7JKJSbnHqf)
|
||||
* [Cinepeace](https://cinepeace.in/) - Movies / TV / Anime / [Discord](https://discord.gg/htmB2TbK)
|
||||
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime
|
||||
* [Nunflix](https://nunflix.org/), [2](https://nunflix-ey9.pages.dev/) - Movies / TV / Anime / Watch Parties / [Docs](https://nunflix-doc.pages.dev/) / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* [TMovie](https://tmovie.tv/) - Movies / TV / Anime / [Discord](https://discord.com/invite/R7a6yWMmfK)
|
||||
* [BoredFlix](https://www.boredflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/VHDedCcbGY)
|
||||
* [Youflex](https://youflex.live/) - Movies / TV / Anime
|
||||
* [Flicker](https://flickermini.pages.dev/), [2](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Proxy](https://flickerminiproxy.pages.dev/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#flicker-proxy) / [Subreddit](https://www.reddit.com/r/flickermini/)
|
||||
* [AuroraScreen](https://www.aurorascreen.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/kPUWwAQCzk)
|
||||
* [Redflix](https://redflix.co/), [2](https://redflix.club/) - Movies / TV / Anime / [Discord](https://discord.gg/wp5SkSWHW5)
|
||||
* [PopcornMovies](https://popcornmovies.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* [Maxflix](https://maxflix.top/) - Movies / TV / Anime
|
||||
* [VoidFlix](https://voidflix.pages.dev/) - Movies / TV / Anime / [Discord](https://discord.gg/GDfP8S243T)
|
||||
* [Cinepeace](https://cinepeace.in/) - Movies / TV / Anime / [Discord](https://discord.gg/htmB2TbK)
|
||||
* [Flixvo](https://flixvo.live/), [2](https://flixvo.fun/) - Movies / TV / Anime
|
||||
* [BoredFlix](https://www.boredflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/VHDedCcbGY)
|
||||
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Status](https://cinemadeck.com/official-domains) / [Discord](https://discord.com/invite/tkGPsX5NTT)
|
||||
* [AlienFlix](https://alienflix.net/), [2](https://hexawatch.cc/) - Movies / TV / Anime
|
||||
* [CineBolt](https://cinebolt.net/) - Movies / TV / Anime / [Discord](https://discord.gg/7ZbCzMPt6f)
|
||||
* [ONOFLIX](https://onoflix.ru/) - Movies / TV / Anime / [Discord](https://discord.gg/eEmGSZ98cP)
|
||||
* [Bingeflix](https://bingeflix.tv/) - Movies / TV / Anime / [Discord](https://discord.com/invite/ajRY6Bn3rr)
|
||||
* [LunaStream](https://lunastream.fun/) or [CineFlow](https://www.cineflow.watch/) - Movies / TV / Anime / [Discord](https://discord.gg/3kpj8SuMy5)
|
||||
* [Way2Movies](https://way2movies.live/) - Movies / TV / Anime / [Telegram](https://t.me/Way2MoviesFun) / [Discord](https://discord.gg/mH4zsaAmv7)
|
||||
* [Wooflix](https://www.wooflixtv.co/) - 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)
|
||||
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
||||
* [Yampi](https://yampi.live/) - Movies / TV / Anime
|
||||
* [M-Zone](https://www.m-zone.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PFvCNcZCQC)
|
||||
* [MoviePluto](https://moviepluto.fun/) - Movies / TV / Anime / [Discord](https://discord.com/invite/ynfvjgHrBd)
|
||||
* [Flicker](https://flickermini.pages.dev/), [2](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Proxy](https://flickerminiproxy.pages.dev/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#flicker-proxy) / [Subreddit](https://www.reddit.com/r/flickermini/)
|
||||
* [Altair](https://altair.mollusk.top/) or [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
|
||||
* [7XCinema](https://7xcinema.com/) - Movies / TV / Anime
|
||||
* [KrakenFlix](https://krakenflix.cx/) - Movies / TV / Anime
|
||||
* [Altair](https://altair.mollusk.top/) or [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP)
|
||||
* [Ask4Movies](https://ask4movie.app/) - Movies / TV / Anime
|
||||
* [CineGo](https://cinego.co/) - Movies / TV
|
||||
* [Novafork](https://novafork.cc/) - Movies / TV / [GitHub](https://github.com/noname25495/novafork)
|
||||
* [PlayTorrio](https://playtorrio.pages.dev/) - Desktop App / Use Streaming Mode / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
|
||||
|
||||
***
|
||||
|
||||
## ▷ Single Server
|
||||
|
||||
* **Note** - These are generally good in terms of speed, consistency, and having less mislabeled content. Many also remove and/or fix broken links manually. See [website grading](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#single-server) for scores.
|
||||
* **Note** - These are generally good in terms of speed, consistency, and having less mislabeled content. Many also remove and/or fix broken links manually. Check [grading page](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#single-server) for scores.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[yFlix](https://yflix.to/)** or [1Movies](https://1movies.bz/) - Movies / TV / Anime / Auto-Next / [Clones](https://rentry.co/sflix#yflix-clones)
|
||||
* ⭐ **[EE3](https://ee3.me/)** or [RIPS](https://rips.cc/) - Movies / Invite Code: `fmhy` / Sign-Up Required
|
||||
* ⭐ **[EE3](https://ee3.me/)** or [RIPS](https://rips.cc/) - Movies / Invite Codes: `mpgh` or `1hack` / Sign-Up Required
|
||||
* ⭐ **[Qstream](https://qstream.pages.dev/)** - Movies / TV / Anime
|
||||
* ⭐ **[NEPU](https://nepu.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu)
|
||||
* [LookMovie](https://lookmovie2.to/) - Movies / TV / Auto-Next / 480p / [Clones](https://proxymirrorlookmovie.github.io/)
|
||||
* [Vidsrc.cx](https://vidsrc.cx/) - Movies / TV
|
||||
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
||||
* [24Drama](https://24drama.to/) - Movies / TV / Anime / 720p
|
||||
* [OnionPlay](https://onionplay.mx/) - Movies / TV / [Discord](https://discord.com/invite/4QxywT32Uz)
|
||||
* [WatchFlix](https://watchflix.to/) - Movies / TV / Anime / 720p
|
||||
* [OnionPlay](https://onionplay.bz/) - Movies / TV / [Discord](https://discord.com/invite/RjJgF755Pa)
|
||||
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / Use [Throwaway Gmail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail)
|
||||
* [UniqueStream](https://uniquestream.net/) - Movies / TV / Anime / 720p
|
||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
||||
* [Movies4F](https://movies4f.com/) - Movies / TV / Anime
|
||||
* [FshareTV](https://fsharetv.co/) - Movies
|
||||
* [AZMovies](https://azmovies.ag/) - Movies
|
||||
* [AZMovies](https://azmovies.to/) - Movies
|
||||
* [YesMovie](https://yesmovies.ag/) - Movies / TV / 720p
|
||||
* [SFlix](https://sflix2.to/), [2](https://sflix.to/), [3](https://sflixto.tube/) or [FlixHQ](https://flixhq.to/) - Movies / TV / [Clones](https://rentry.co/sflix)
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/), [4](https://nmovies.cc/) - Movies / TV / Anime
|
||||
* [Zoechip](https://zoechip.org/) - Movies / TV
|
||||
* [Player4U](https://rentry.co/FMHYB64#player4u) - Movies / TV / Anime
|
||||
* [Gir Society](https://discord.gg/WHxeZ3aTtb) - Movies / TV / Anime / Plex Required
|
||||
* [PlayIMDb](https://www.playimdb.com/) - Search VidSrc via IMDb URLs / Official Frontend
|
||||
|
|
@ -117,7 +127,7 @@
|
|||
* 🌐 **[Free-Official-Youtube-Content](https://github.com/superlincoln953/Free-Official-Youtube-Content)** - YouTube Channel List
|
||||
* 🌐 **[YT Movies Multireddit](https://www.reddit.com/user/nbatman/m/streaming/)** - YouTube Streaming Subreddits
|
||||
* 🌐 **[JustWatch](https://www.justwatch.com/us?monetization_types=free)** - Free w/ Ads Directory
|
||||
* ⭐ **[Tubi](https://tubitv.com)** - Movies / TV / 720p / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv) / [Avaliable Countries](https://corporate.tubitv.com/)
|
||||
* ⭐ **[Tubi](https://tubitv.com)** - Movies / TV / 720p / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv) / [Available Countries](https://corporate.tubitv.com/)
|
||||
* ⭐ **[Plex](https://watch.plex.tv/)** - Movies / TV / 720p
|
||||
* ⭐ **[Pluto](https://pluto.tv/)** - Movies / TV / 720p
|
||||
* [Video Dictionary](https://videodictionary.kwebpia.net/?m=Full_Movies), [FreeGreatMovies](https://www.freegreatmovies.com/), [Voleflix](https://vole.wtf/voleflix/), [OpenCulture](https://www.openculture.com/freemoviesonline), [MoviesFoundOnline](https://moviesfoundonline.com/) or [Official YT Movies](https://www.youtube.com/feed/storefront?bp=ogUCKAY%3D) (US Only) - YouTube Movie Collections
|
||||
|
|
@ -136,7 +146,7 @@
|
|||
* [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 / UK VPN Required / Windscribe has UK free / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
* [BBC iPlayer](https://www.bbc.co.uk/iplayer) - Movies / TV / UK VPN Required (windscribe) / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
* [FlixHouse](https://flixhouse.com/) - Indie Movies
|
||||
|
||||
***
|
||||
|
|
@ -164,7 +174,6 @@
|
|||
* [Naver](https://tv.naver.com/)
|
||||
* [ultimedia](https://www.ultimedia.com/)
|
||||
* [odysee](https://odysee.com/) / [Instances](https://codeberg.org/librarian/librarian#instances)
|
||||
* [Playeur](https://playeur.com/)
|
||||
* [Rumble](https://rumble.com/) - VPN Needed in Some Countries
|
||||
|
||||
***
|
||||
|
|
@ -184,19 +193,17 @@
|
|||
* [Rohesia Hamilton Metcalfe](https://www.panix.com/~hamiltro/links/) - Experimental Films
|
||||
* [Le Cinéma Club](https://www.lecinemaclub.com/) - Hand-Picked Indie Film Stream / [Archive](https://www.lecinemaclub.com/archives/index/)
|
||||
* [Zero1Cine](https://zero1cine.com/) - AI Generated Films
|
||||
* [Viddsee](https://www.viddsee.com/), [Shortverse](https://www.shortverse.com/explore), [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
|
||||
* [Viddsee](https://www.viddsee.com/), [Shortverse](https://www.shortverse.com/explore), [Short of the Week](https://www.shortoftheweek.com/) or [Argo](https://web.watchargo.com/) - Short Films
|
||||
* [0xDB](https://0xdb.org/) - Rare Movies
|
||||
* [HomeMovies101](https://www.homemovies100.it/en/) - Home Movies
|
||||
* [Prelinger Archives](https://www.panix.com/~footage/) - Ephemeral Films [Archive](https://archive.org/details/prelinger)
|
||||
* [Clownsec](https://rentry.co/FMHYB64#clownsec) - 3D Movies for 3DS / [Discord](https://discord.gg/fk3yPBY7s9)
|
||||
* [r/MusicalBootlegs](https://www.reddit.com/r/MusicalBootlegs) or ["Slime Tutorials"](https://youtube.com/playlist?list=PLsIt5G4GJ27lxWP9Qi5N70zRSkJAT0ntc) - Broadway Show Recordings
|
||||
* [GlobalShakespeares](https://globalshakespeares.mit.edu/) - Shakespeare Performance Recordings
|
||||
* [Domain Expansion](https://rentry.co/FMHYB64#domain-expansion) - Reaction Channel Content
|
||||
* [SidePlusLeaks](https://sideplusleaks.online/) - Sidemen Content / [Telegram](https://t.me/sideplusleaks)
|
||||
* [Unus Annus](https://archive.org/details/unus-annus) - Unus Annus Archive
|
||||
* [TVARK](https://tvark.org/) or [Daily Commercials](https://dailycommercials.com/) - Commercial / TV Promo Archives
|
||||
* [Yuzu4K Japanese Commercials](https://archive.org/details/jpcm_yuzu4k) - Japanese Commercial Archive
|
||||
* [Bandersnatch Interactive Player](https://mehotkhan.github.io/BandersnatchInteractive/) - Interactive player for Black Mirror: Bandersnatch / [GitHub](https://github.com/joric/bandersnatch)
|
||||
* [BMCC](https://www.youtube.com/@BMCC1967/) or [MovieCommentaries](https://www.youtube.com/@moviecommentaries) - Movie / TV Director Commentaries
|
||||
* [SpecialFeatureArchive](https://youtube.com/@specialfeaturesarchive) - DVD Extras / Special Features
|
||||
* [Lumo TV](https://lumotv.co.uk/) - Deaf Entertainment / BSL-Based
|
||||
* [Audiovault](https://audiovault.net/) - Descriptive Audio for Blind Users
|
||||
|
||||
|
|
@ -205,30 +212,33 @@
|
|||
## ▷ Anime Streaming
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites)** / [Discord](https://discord.gg/vShRGx8ZBC) / [GitHub](https://github.com/wotakumoe/Wotaku), [The Index](https://theindex.moe/library/anime) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/), [2](https://everythingmoe.org/) / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS) - Anime Site Indexes
|
||||
* ⭐ **[AnimeKai](https://animekai.to/home)**, [2](https://animekai.cc/), [3](https://animekai.ac/) or [AniGo](https://anigo.to/) - Hard Subs / Dub / Auto-Next / [Status](https://animekai.me/) / [X](https://x.com/animekai_to) / [Subreddit](https://www.reddit.com/r/AnimeKAI/)
|
||||
* ⭐ **[Miruro](https://www.miruro.com/)** - Hard Subs / Dub / Auto-Next / [Subreddit](https://www.reddit.com/r/miruro/) / [Discord](https://discord.gg/miruro) / [GitHub](https://github.com/Miruro-no-kuon/Miruro)
|
||||
* ⭐ **[AnimeKai](https://animekai.to/home)**, [2](https://animekai.cc/), [3](https://animekai.ac/), [4](https://anikai.to/) or [AniGo](https://anigo.to/) - Hard Subs / Dub / Auto-Next / [Status](https://animekai.me/) / [X](https://x.com/animekai_to) / [Subreddit](https://www.reddit.com/r/AnimeKAI/) / [Discord](https://discord.gg/at5d9rkfUy)
|
||||
* ⭐ **[Miruro](https://www.miruro.com/)** - Hard Subs / Dub / Auto-Next / [Subreddit](https://www.reddit.com/r/miruro/) / [GitHub](https://github.com/Miruro-no-kuon/Miruro)
|
||||
* ⭐ **[HiAnime](https://hianime.to/)**, [2](https://hianime.nz/), [3](https://hianime.sx/), [4](https://hianime.bz/), [5](https://hianime.pe/) - Sub / Dub / Auto-Next / [Subreddit](https://reddit.com/r/HiAnimeZone/) / [Telegram](https://t.me/HiAnimeLobby) / [Discord](https://discord.gg/hianime)
|
||||
* ⭐ **HiAnime Resources** - [Official Mirrors](https://hianime.tv/) / [Enhancements](https://greasyfork.org/en/scripts/506340) / [Auto-Focus](https://greasyfork.org/en/scripts/506891)
|
||||
* ⭐ **[All Manga](https://allmanga.to/)** - Sub / Dub / [Discord](https://discord.gg/YbuYYUwhpP)
|
||||
* ⭐ **[All Manga](https://allmanga.to/)** - Sub / Dub / [Discord](https://discord.com/invite/6nce6cyJyM)
|
||||
* ⭐ **[animepahe](https://animepahe.si/)** - Hard Subs / Dub / [Enhancements](https://greasyfork.org/en/scripts/520048) / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* ⭐ **[KickAssAnime](https://kaa.to/)** - Sub / Dub / Auto-Next / [Telegram](https://t.me/kickassanimev3) / [Discord](https://discord.gg/6EGTnNQAaV)
|
||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** or **[Kuroiru](https://kuroiru.co/)** - Multi-Site Anime Search
|
||||
* ⭐ **[AnimeX](https://animex.one/)** - Sub / Dub / Auto-Next / [Discord](https://discord.com/invite/xNZcSQRbTm)
|
||||
* ⭐ **[Anidap](https://anidap.se/)** - Sub / Dub / Auto-Next / [Discord](https://discord.com/invite/btsMTSsBM7)
|
||||
* ⭐ **[Kuroiru](https://kuroiru.co/)** or **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** - Multi-Site Anime Search
|
||||
* [Anify](https://anify.to/) - Sub / Dub / [Discord](https://discord.com/invite/79GgUXYwey)
|
||||
* [Anime Realms](https://www.animerealms.org/) - Sub / Dub / [Discord](https://discord.gg/FPM57Eugmj)
|
||||
* [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next
|
||||
* [Kuudere](https://kuudere.to/), [2](https://kuudere.ru/) - Sub / Dub / Auto-Next / [Telegram](https://t.me/kuudere0to) / [Discord](https://discord.gg/h9v9Vfzp7B)
|
||||
* [Gojo](https://animetsu.to/), [2](https://animetsu.cc/) - Sub / Dub
|
||||
* [AnimeZ](https://animeyy.com/) - Sub / Dub
|
||||
* [otakuu](https://otakuu.se/), [2](https://aniwave.at/) - Sub / Dub / Auto-Next
|
||||
* [TAnime](https://tanime.tv/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/R7a6yWMmfK)
|
||||
* [JustAnime](https://justanime.to/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/P3yqksmGun)
|
||||
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub
|
||||
* [Anime Nexus](https://anime.nexus/) - Sub / Dub / [Discord](https://discord.gg/AfMau96ppt)
|
||||
* [AnimeRealms](https://www.animerealms.org/) - Sub / Dub
|
||||
* [Anixl](https://anixl.to/) - Sub / Dub / [Discord](https://discord.gg/prmJz2av76)
|
||||
* [BingoAnime](https://bingoanime.net/) - Sub / Dub / [Discord](https://discord.gg/ca7yFWfTJJ)
|
||||
* [AnimeHub](https://animehub.ac/) - Sub / Dub / Auto-Next
|
||||
* [Aninow](https://aninow.tv/) - Sub / Dub / [Subreddit](https://www.reddit.com/r/aninow/) / [Discord](https://discord.gg/tydKVrQ3jS)
|
||||
* [Rive](https://rivestream.org/), [2](https://rivestream.net/) - Sub / Dub / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* [Yenime](https://yenime.net/) or [Cinezo](https://www.cinezo.net/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [AniZone](https://anizone.to/) - Sub
|
||||
* [AniHQ](https://anihq.to/) - Sub / Dub
|
||||
* [Lunar](https://lunaranime.ru/) - Sub / Dub / [Discord](https://discord.com/invite/NBBnhbFHBT)
|
||||
* [Anoboye](https://anoboye.com/) - Sub
|
||||
* [AnimeParadise](https://www.animeparadise.moe/) - Sub / Dub / [Discord](https://discord.com/invite/q3N6eWMMNP)
|
||||
* [KissAnime](https://kissanime.com.ru/) - Sub / Dub / Auto-Next / [Clones](https://kissanime.help/) / [Discord](https://discord.com/invite/w5ghWQG8uM)
|
||||
|
|
@ -243,22 +253,21 @@
|
|||
* [Crimson Subs](https://crimsonfansubs.com/) - Donghua / 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
|
||||
* [Layendimator](https://github.com/Layendan/Layendanimator), [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime) or [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) - Desktop Streaming Apps
|
||||
* [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [Discord](https://discord.com/invite/EjfBuYahsP) / [GitHub](https://github.com/RyanYuuki/AnymeX), [PlayTorrio](https://playtorrio.pages.dev/) / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime) or [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) - Desktop Streaming Apps
|
||||
|
||||
***
|
||||
|
||||
## ▷ Cartoon Streaming
|
||||
|
||||
* ⭐ **[WCO](https://www.wco.tv/)**, [2](https://www.wcostream.tv/) - TV / Movies / Anime / [Status](https://www.wcostatus.com/) / [Anti-Adblock Fix](https://github.com/uBlockOrigin/uAssets/issues/29349#issuecomment-3231974507)
|
||||
* ⭐ **[WCO](https://www.wco.tv/)**, [2](https://www.wcostream.tv/), [3](https://www.wcoforever.net/) - TV / Movies / Anime / [Status](https://www.wcostatus.com/) / [Anti-Adblock Fix](https://github.com/uBlockOrigin/uAssets/issues/29349#issuecomment-3231974507)
|
||||
* ⭐ **[KimCartoon](https://kimcartoon.si/)** - TV
|
||||
* [KissCartoon](https://kisscartoon.nz/), [2](https://kisscartoon.sh/) - TV / [Discord](https://discord.gg/YwpgPrWVSH)
|
||||
* [TamilToon](https://tamiltoon.net/) - TV / Movies / Anime / Switch Language in Player
|
||||
* [HiCartoons](https://hicartoon.to/) - TV / Movies
|
||||
* [Watch Cartoon Online](https://www.watchcartoononline.com/) - TV / Movies / Anime
|
||||
* [FunnierMoments](https://www.funniermoments.net/) - TV
|
||||
* [B98](https://www.b98.tv/home/) - Classic / TV
|
||||
* [ToonTales](https://www.toontales.net/) - Classic / TV
|
||||
* [SuperCartoons](https://www.supercartoons.net/) - Classic / TV
|
||||
* [ToonamiAftermath](https://www.toonamiaftermath.com/schedule) - Toonami Streams
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -269,12 +278,12 @@
|
|||
***
|
||||
|
||||
* ⭐ **[Best Series](https://bstsrs.in/)**, [2](https://topsrs.day/), [3](https://srstop.link/) - TV / Anime / 3rd Party Hosts
|
||||
* ⭐ **[CouchTuner](https://www.couchtuner.show/)** - TV / Anime / 720p / 3rd Party Hosts / [Telegram](https://t.me/+tPEqeXLobAo4YTZh)
|
||||
* ⭐ **[NOXX](https://noxx.to/)** - TV / 3rd Party Hosts
|
||||
* [AZ Series](https://azseries.org/) - TV / 3rd Party Hosts
|
||||
* [Owen Davies](https://www.youtube.com/@ODavies/playlists) - 4K Shows
|
||||
* [HISTORY](https://play.history.com/) - Full History / A+E Episodes
|
||||
* [Adult Swim](https://www.adultswim.com/videos/) - Full Adult Swim Episodes
|
||||
* [DisneyNOW](https://disneynow.com/) - Full Disney Episodes / US Only
|
||||
* [SFBTV](https://diva.sfsu.edu/collections/sfbatv) - San Francisco TV Archive
|
||||
* [HDclump](https://hdclump.com/) - Documentaries / Cooking / Gardening
|
||||
* [BrokenSilenze](https://www.brokensilenze.net/) - Reality TV
|
||||
|
|
@ -292,8 +301,7 @@
|
|||
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-drama)**, [2](https://everythingmoe.org/#section-drama) - Index / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ⭐ **[GoPlay](https://goplay.su/)** - TV / Movies / [Discord](https://discord.com/invite/yY2P3DQR8S)
|
||||
* ⭐ **[DramaGo](https://dramago.me/)** - TV / Movies
|
||||
* ⭐ **[Dramacool](https://dramacool.com.tr/)**, [2](https://dramacoold.pl/) - TV / Movies
|
||||
* ⭐ **[Dramacool](https://dramacool.com.tr/)** - TV / Movies
|
||||
* [Einthusan](https://einthusan.tv/intro/) - Movies
|
||||
* [kisskh](https://kisskh.ovh/), [2](https://kisskh.run/), [3](https://kissasian.com.lv/), [4](https://kisskh.id/) - TV / Movies
|
||||
* [Dramahood](https://dramahood.top/) - TV / Movies
|
||||
|
|
@ -304,7 +312,6 @@
|
|||
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
||||
* [AsianSubs](https://asiansubs.com/) - TV / Movies
|
||||
* [KissAsian](https://kissasian.video/) - TV / Movies
|
||||
* [Dramacool](https://dramacoolk.one/), [2](https://dramacool.com.ly/) - TV / Movies
|
||||
* [Dramacool.sr](https://www12.dramacool.sr/) - TV / Movies
|
||||
* [Dramacool9](https://dramacools9.cam/) - TV / Movies
|
||||
* [OnDemandChina](https://www.ondemandchina.com/) - TV / Movies
|
||||
|
|
@ -319,7 +326,8 @@
|
|||
* [WikiFlix](https://wikiflix.toolforge.org/) - Classic Films
|
||||
* [RetroFlix](https://retroflix.org/) - Classic Films
|
||||
* [moonflix](https://moonflix.com/) - Restored & Colorized Classic Films / Shows
|
||||
* [RetroStrange](https://live.retrostrange.com/) - Live Retro Streams
|
||||
* [RetroStrange](https://retrostrange.com/) - Live Retro Streams
|
||||
* [Old Timey Computer Show](https://otcs.minuspoint.com/schedule.html) - Live Retro Computer / Game Media Streams
|
||||
* [FilmsByTheYear](https://www.youtube.com/@FilmsbytheYear/playlists) - Classic Films Playlists / YouTube
|
||||
* [Wu Tang Collection](https://www.thewutangcollection.com/) - Classic Martial Arts Films
|
||||
* [Silent Hall of Fame](https://silent-hall-of-fame.org/) - Silent Films
|
||||
|
|
@ -338,16 +346,17 @@
|
|||
* [nfb.ca](https://www.nfb.ca/) - Canadian Film Archive
|
||||
* [European Film Gateway](https://www.europeanfilmgateway.eu/) - European Film Archive
|
||||
* [Eastern European Movies](https://easterneuropeanmovies.com/) - Eastern European Film Archive
|
||||
* [BFIPlayer](https://player.bfi.org.uk/free) / [Archive](https://www.bfi.org.uk/bfi-national-archive) - British Film Institute / UK VPN Required
|
||||
* [BFIPlayer](https://player.bfi.org.uk/free) / [Full List](https://player.bfi.org.uk/search/free?q=&availability=1) / [Archive](https://www.bfi.org.uk/bfi-national-archive) - British Film Institute / UK VPN Required (windscribe) / Turn Off Adblock / Use Incog / Clear Cache
|
||||
* [British Pathé](https://www.britishpathe.com/) or [ColonialFilm](http://www.colonialfilm.org.uk/) - British Video Archives
|
||||
* [Imperial War Museums](https://www.iwm.org.uk/) - British & Commonwealth War Footage
|
||||
* [Imperial War Museums](https://www.iwm.org.uk/) - British & Commonwealth War Footage / [X](https://x.com/I_W_M)
|
||||
* [yfanefa](https://www.yfanefa.com/) - Yorkshire Film Archive
|
||||
* [IndianCine](https://indiancine.ma/) - Indian Film Archive
|
||||
* [National Film Archive of Japan](https://meiji.filmarchives.jp/) - Japanese Film Archive
|
||||
* [Japanese Animated Film Classics](https://animation.filmarchives.jp/index.html) - Japanese Animation Archive
|
||||
* [CCLM](https://www.cclm.cl/cineteca-online) or [Platfo Filmo](https://filmo.platfo.es/pages/home) - Spanish Film Archives
|
||||
* [NFSA](https://www.nfsa.gov.au/) - Australian Film Archive
|
||||
* [NGA Taonga](https://www.ngataonga.org.nz/search-use-collection/search/) or [NZOnScreen](https://www.nzonscreen.com/) - New Zealand's Audiovisual Archives
|
||||
* [NLS](https://www.nls.uk/), [2](https://movingimage.nls.uk/) - Scottish Film & Video Archive
|
||||
* [Japanese Animated Film Classics](https://animation.filmarchives.jp/index.html) - Japanese Animation Archive
|
||||
* [Northern Ireland Screen](https://digitalfilmarchive.net/) or [IFI Archive](https://ifiarchiveplayer.ie/) - Irish Film Archives
|
||||
* [Cinematheque](https://www.cinematheque.fr/henri/english/) - Rare French Film Archive
|
||||
* [Stiftung imai](https://stiftung-imai.de/), [Digitaler Lesesaal](https://digitaler-lesesaal.bundesarchiv.de/en) or [Film Portal](https://www.filmportal.de/en/videos) - German Video Archives
|
||||
|
|
@ -358,6 +367,7 @@
|
|||
* [TexasArchive](https://texasarchive.org/) - Texas Film Archive
|
||||
* [Chicago Film Archives](https://www.chicagofilmarchives.org/) - Chicago Film Archive
|
||||
* [The Travel Film Archive](https://travelfilmarchive.com/) - Archival Travel Footage
|
||||
* [Defense.gov](https://images.defence.gov.au/assets/), [DefenceImagery](https://www.defenceimagery.mod.uk/) or [DVidHub](https://www.dvidshub.net/) - Military Video Archives
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -365,13 +375,14 @@
|
|||
|
||||
## ▷ Live TV
|
||||
|
||||
* ⭐ **[TheTVApp](https://tvpass.org/)**, [2](https://thetvapp.to/) - TV / Sports / US Only
|
||||
* ⭐ **[tv.garden](https://tv.garden/)** - TV / Sports
|
||||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports
|
||||
* ⭐ **[PlayTorrio IPTV](https://playtorrioiptv.pages.dev/)** / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio) or [Darkness TV](https://tv-channels.pages.dev/) / [GitHub](https://github.com/DarknessShade/TV) - TV / Sports
|
||||
* ⭐ **[NTV](https://ntvstream.cx/)** - TV / Sports / Aggregator / [Telegram](https://t.me/ntvsteam) / [Discord](https://discord.gg/uY3ud5gcpW)
|
||||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports
|
||||
* ⭐ **[RgShows](https://www.rgshows.ru/livetv/)** or **[Heartive](https://heartive.pages.dev/live/)** - TV / Sports
|
||||
* ⭐ **[DaddyLive TV](https://dlhd.dad/24-7-channels.php)**, [2](https://daddylive.sx/), [3](https://thedaddy.dad/), [4](https://dlhd.click/), [5](https://daddylivestream.com/) - TV / [Self-Hosted Proxy](https://rentry.co/FMHYB64#daddylive-proxy) / [Mirrors](https://daddyny.com/)
|
||||
* [huhu.to](http://huhu.to/), [vavoo.to](http://vavoo.to/), [kool.to](http://kool.to/) or [oha.to](http://oha.to/) - TV / Sports / European
|
||||
* ⭐ **[DaddyLive TV](https://dlhd.dad/24-7-channels.php)**, [2](https://dlhd.dad/), [3](https://thedaddy.dad/), - TV / [Mirrors](https://daddyny.com/)
|
||||
* ⭐ **[TVPass](https://tvpass.org/)**, [2](https://thetvapp.to/) - TV / Sports / US Only
|
||||
* [huhu.to](https://huhu.to/), [vavoo.to](https://vavoo.to/), [kool.to](https://kool.to/) or [oha.to](https://oha.to/) - TV / Sports / European
|
||||
* [Xumo Play](https://play.xumo.com/networks) - TV / US Only
|
||||
* [Pluto](https://pluto.tv/live-tv), [2](https://app-lgwebos.pluto.tv/live-tv) - TV / Sports / US Only
|
||||
* [USTVGo](https://ustvgo.click/) - TV / Sports / [Player Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sport7)
|
||||
|
|
@ -384,6 +395,7 @@
|
|||
* [Rive Live](https://rivestream.org/iptv) - TV / Sports
|
||||
* [AlienFlix TV](https://alienflix.net/live) - TV
|
||||
* [FreeInterTV](http://www.freeintertv.com/) - TV / Sports
|
||||
* [Time4TV](https://t4tv.click/) - TV / Sports
|
||||
* [Global Free TV](https://www.globalfreetv.com/) - TV / [Discord](https://discord.com/invite/pPaerCghRN)
|
||||
* [vipotv](https://vipotv.com/) - TV / Sports
|
||||
* [SquidTV](https://www.squidtv.net/) - TV
|
||||
|
|
@ -395,10 +407,10 @@
|
|||
* [VaughnLive](https://vaughn.live/browse/misc) - Random Streams
|
||||
* [psp-tv](http://sync.coconono.org) - 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/) or [WorldNews24](https://worldnews24.tv/) - News
|
||||
* [Channel 99](https://www.pracdev.org/channel99/) - Random Streams
|
||||
* [EXP TV](https://linktr.ee/exp.tv) - Rare / Vintage / Obscure Media Stream
|
||||
* [YTCH](https://ytch.tv/) or [FreeTVz](https://freetvz.com/) - Random TV Style YouTube
|
||||
* [TV.Jest](https://tv.jest.one/), [Split TV](https://split-tv.co.il/) or [WorldNews24](https://worldnews24.tv/) - News
|
||||
* [SHOWROOM](https://showroom-live.com/) - Live Performance Broadcasts
|
||||
* [KCNA](https://kcnawatch.us/korea-central-tv-livestream) - North Korean Live TV
|
||||
* [TitanTV](https://titantv.com/) - Live TV Listings
|
||||
|
|
@ -408,39 +420,50 @@
|
|||
## ▷ Live Sports
|
||||
|
||||
* 🌐 **[/sport calendars/](https://dan.valeena.dev/guides/sports-calendar), [2](https://rentry.co/sportcalendars)** - Importable Sports Calendars
|
||||
* ⭐ **[SportyHunter](https://sportyhunter.com/)**, [2](https://nflhunter.com/), [3](https://nhlstreams.io/v1/), [4](https://mlbgamepass.com/) / Community Aggregator / [Discord](https://discord.gg/zbxWcejadm)
|
||||
* ⭐ **[Streamed](https://streamed.pk/)**, [2](https://strmd.link/) / [Discord](https://discord.gg/streamed)
|
||||
* ⭐ **[NTV](https://ntvstream.cx/)** - TV / Sports / Aggregator / [Telegram](https://t.me/ntvsteam) / [Discord](https://discord.gg/uY3ud5gcpW)
|
||||
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator
|
||||
* ⭐ **[SportyHunter](https://sportyhunter.com/)**, [2](https://nflhunter.com/), [3](https://nhlstreams.io/v1/), [4](https://mlbgamepass.com/) / Community Aggregator / [Discord](https://discord.gg/BZVQ4Ndd)
|
||||
* ⭐ **[Streamed](https://streamed.su/)**, [2](https://strmd.link/) / [Discord](https://discord.gg/streamed)
|
||||
* ⭐ **[DaddyLive](https://dlhd.dad/)**, [2](https://daddylive.sx/), [3](https://thedaddy.dad/), [4](https://dlhd.click/), [5](https://daddylivestream.com/) - TV / Sports / [Self-Hosted Proxy](https://rentry.co/FMHYB64#daddylive-proxy) / [Mirrors](https://daddyny.com/)
|
||||
* ⭐ **[PPV.TO](https://ppv.to/)** - Live Events / [Mirrors](https://ppv.zone/) / [Discord](https://discord.gg/5AMPdpckjH)
|
||||
* ⭐ **[Sport7](https://sport71.pro//)** / [Player Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sport7) / [Telegram](https://t.me/goatifisports) / [Discord](https://discord.gg/xcdfVwgEx3)
|
||||
* ⭐ **[FSTV](https://fstv.online/)**, [2](https://fstv.space/) / [Mirrors](https://gofstv.live/) / [Discord](https://discord.gg/j9EfEm4AMW)
|
||||
* ⭐ **[DaddyLive](https://dlhd.dad/)**, [2](https://dlhd.dad/), [3](https://thedaddy.dad/), [4](https://dlhd.click/), [5](https://daddylivestream.com/) - TV / Sports / [Mirrors](https://daddyny.com/)
|
||||
* ⭐ **[PPV.TO](https://ppv.to/)**, [2](https://ppvs.su/) - Live Events / [Mirrors](https://ppv.zone/) / [Discord](https://discord.gg/5AMPdpckjH)
|
||||
* ⭐ **[Sport7](https://sport7.pro/)**, [2](https://sport71.pro//) / [Player Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sport7) / [Telegram](https://t.me/goatifisports) / [Discord](https://discord.gg/xcdfVwgEx3)
|
||||
* ⭐ **[Watch Footy](https://watchfooty.st/)**, [2](https://www.watchfooty.top) - Stream Aggregator / [Discord](https://discord.gg/T38kUWZHtB) / [Mirrors](https://watchfty.link/)
|
||||
* ⭐ **[BINTV](https://bintv.fun/)** / [Discord](https://discord.gg/fMU4hpDjPg)
|
||||
* ⭐ **[StreamEast](https://www.streameast.sk/v8/)** / [Mirrors](https://v2.gostreameast.link/)
|
||||
* ⭐ **[SportsBite](https://sportsbite.live/)**, [2](https://sportsbite.pro/) / [Status](https://allbite.xyz/) / [Telegram](https://t.me/+Zo7CoigxqRczMjRk) / [Discord](https://discord.gg/Qg7uRXWAhU)
|
||||
* ⭐ **[SoccerStreamLinks](https://soccerstreamlinks.site/)** or [Iframely](https://iframely.biz/) - Stream Aggregator / [Discord](https://discord.gg/HwXeKNu8FU)
|
||||
* ⭐ **[StreamEast](https://streameast.ga/)**, [2](https://streameast.ph/) / [Mirrors](https://v2.gostreameast.link/)
|
||||
* ⭐ **[LiveTV](https://livetv.sx/enx/)**
|
||||
* ⭐ **[VIP Box Sports](https://www.viprow.nu/)** / [Mirrors](https://rentry.co/VIPSportsBox)
|
||||
* ⭐ **[TimStreams](https://timstreams.xyz/)**, [2](https://timstreams.cfd/) - Live Events / [Status](https://timstreams.online/) / [Discord](https://discord.com/invite/p3aJ7rJGrz)
|
||||
* ⭐ **[WeAreChecking](https://wearechecking.online/)** - Live Events / Motorsports / [Discord](https://discord.com/invite/wearechecking)
|
||||
* ⭐ **[TimStreams](https://timstreams.site/)**, [2](https://timstreams.online/) - Live Events / [Status](https://timstreams.online/) / [Discord](https://discord.com/invite/p3aJ7rJGrz)
|
||||
* ⭐ **[WeAreChecking](https://wac.rip/)** - Live Events / Motorsports / [Discord](https://discord.com/invite/wearechecking)
|
||||
* [Streamex](https://streamex.cc/) or [CrackStreams](https://crackstreams.li/), [2](https://streameast.art/), [3](https://hesgoal.lol/) - Stream Aggregator / [Discord](https://discord.gg/G4HxTYejNT)
|
||||
* [Sportsurge](https://v2.sportsurge.net/home5/) - Stream Aggregator
|
||||
* [CrackStreams.li](https://crackstreams.li/), [2](https://streameast.art/) - Stream Aggregator / [Discord](https://discord.gg/mRvHfu6AWx)
|
||||
* [GoToStreamly](https://gotostreamly.sbs/) - Stream Aggregator / [Discord](https://discord.gg/HwXeKNu8FU)
|
||||
* [TotalSportek.to](https://totalsportek.me/), [2](https://buffstreams.app/) - Stream Aggregator
|
||||
* [CricHD.to](https://crichd.at/), [2](https://crichd.com.co/)
|
||||
* [GoalieTrend](https://goalietrend.com/) / [Discord](https://discord.gg/VKbvRcjDwa)
|
||||
* [SportDB](https://hoofoot.ru/) - Stream Aggregator
|
||||
* [TotalSportek.es](https://totalsportek.es/), [2](https://streameast.cz/) - Stream Aggregator
|
||||
* [CricHD](https://crichd.at/), [2](https://crichd.com.co/)
|
||||
* [MainPortal66](https://mainportal66.com/)
|
||||
* [GoalieTrend](https://www.goalietrend.com/daily-event) / [Discord](https://discord.gg/VKbvRcjDwa)
|
||||
* [StreamCorner](https://streamcorner.info/) / [Discord](https://discord.com/invite/taGZeHc3GA)
|
||||
* [Viprow](https://viprow.cv/) or [NFLBite](https://nflbite.digital/), [2](https://nhlbite.cc/)
|
||||
* [FCTV33](https://www.fctv33.lat/), [2](https://may01gu.risenow3mtjt0k.sbs/), [3](https://emmau680.driveraudiencej2zeu49.sbs/), [4](https://www.rbsports77.mom/) / [Telegram](https://t.me/madplay77_b)
|
||||
* [MrGamingStreams](http://mrgamingstreams.org/), [2](https://www.mrgbackup.link/) / [Discord](https://discord.gg/BCtqVn5JKR)
|
||||
* [SportOnTV](https://sportontv.xyz/) / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [SportOnTV](https://sportontv.biz/), [2](https://sportontv.biz/matches/) / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [Sports Plus](https://en12.sportplus.live/)
|
||||
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/)
|
||||
* [CrackStreams](https://crackstreams.blog/)
|
||||
* [720pStream](https://720pstream.nu/)
|
||||
* [StreamFree](https://streamfree.to/) / [Telegram](https://t.me/streamfreeto) / [Discord](https://discord.gg/ude9X5xwYC)
|
||||
* [CrackStreams.blog](https://crackstreams.blog/)
|
||||
* [VIP Box Sports](https://www.viprow.nu/) / [Mirrors](https://rentry.co/VIPSportsBox)
|
||||
* [720pStream](https://720pstream.lc/)
|
||||
* [BuffStream](https://app.buffstream.io/)
|
||||
* [LiveMatches](https://livematches.net/) - Live Events
|
||||
* [FawaNews](http://www.fawanews.sc/)
|
||||
* [SharkStreams](https://sharkstreams.net/)
|
||||
* [Bundesliga](https://bundesliga.league.do/)
|
||||
* [CrackStreams.ms](https://crackstreams.ms/)
|
||||
* [LSBC](https://lsbc.cx/) - Football / [Status](https://lsbc.live/) / [Telegram](https://t.me/LSBCCLUB)
|
||||
* [Trendgola](https://trendgola.org/) - Football
|
||||
* [StarLive](https://starlive.click/) - Live MMA Events
|
||||
* [TFLIX](https://tv.tflix.app/) - Sports Channels
|
||||
* [NBAMonster](https://nbamonster.com/) - Basketball / Aggregator
|
||||
* [CricHD](https://crichd.at/) - Cricket / Aggregator
|
||||
* [WebCric](https://me.webcric.com/) - Cricket
|
||||
* [OnHockey](https://onhockey.tv/) - Hockey / Aggregator
|
||||
* [MLB24ALL](https://mlb24all.ir/) or [NHL24ALL](https://nhl24all.ir/) - Baseball / Hockey
|
||||
* [OvertakeFans](https://overtakefans.com/) - Motorsports / [Discord](https://discord.gg/ZKwTUbdbmc)
|
||||
* [Aceztrims](https://aceztrims.pages.dev/) - Motorsports
|
||||
* [DD12](https://dd12streams.com/) - Motorsports / [Discord](https://discord.com/invite/TTFE8Jfz7G)
|
||||
|
|
@ -448,7 +471,7 @@
|
|||
* [r/rugbystreams](https://www.reddit.com/r/rugbystreams/) - Rugby
|
||||
* [Live Snooker Guide](https://redd.it/1ibz2yz) - Snooker
|
||||
* [Tiz-Cycling](https://tiz-cycling.tv/) - Cycling
|
||||
* [F1 Dash](https://f1-dash.com/) - F1 Live Stats / [GitHub](https://github.com/slowlydev/f1-dash)
|
||||
* [Formula Timer](https://formula-timer.com/livetiming) or [F1 Dash](https://f1-dash.com/) / [GitHub](https://github.com/slowlydev/f1-dash) - F1 Live Stats Dashboards
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -458,7 +481,7 @@
|
|||
* ⭐ **[Basketball Video](https://basketball-video.com/)** - Basketball Replays
|
||||
* ⭐ **[Footballia](https://footballia.net/)**, [2](https://footballia.eu/) - Classic Football Replays
|
||||
* ⭐ **[Watch-Wrestling.eu](https://watch-wrestling.eu/)** - MMA / Wrestling Replays
|
||||
* ⭐ **[1Max](https://1max.top/)** or [RealFights](https://realfight.org/) - MMA / Wrestling / Boxing Replays / 720p
|
||||
* ⭐ **[1Max](https://1max.top/)** or [RealFights](https://realfight.org/) - MMA / Wrestling / Boxing Replays
|
||||
* ⭐ **[Nascar Classics](https://classics.nascar.com/)** - Nascar Replays
|
||||
* ⭐ **[FullRaces](https://fullraces.com/)** - Motorsport Replays
|
||||
* [SportsReplay](https://discord.com/invite/2r4pj67gCv) - Sports Replays / [Basketball](https://watchreplay.net/) / [Motorsports](https://watchf1full.com/) / [MMA / Wrestling](https://watchmmafull.com/)
|
||||
|
|
@ -471,6 +494,7 @@
|
|||
* [r/footballhighlights](https://www.reddit.com/r/footballhighlights/) - Football Replays
|
||||
* [Time Soccer TV](https://timesoccertv.com/) - Football Replays
|
||||
* [SoccerFull](https://soccerfull.net/) - Football Replays
|
||||
* [MyFootball](https://myfootball.life/index/0-2) - Football Replays
|
||||
* [HooFoot](https://hoofoot.com/) - Spoiler Free Football Highlights
|
||||
* [RuTracker Sports](https://rutracker.org/forum/index.php?c=28) - Sports Replays / Torrents
|
||||
* [Sport Video](https://www.sport-video.org.ua/) - Sports Replays / Torrents
|
||||
|
|
@ -480,8 +504,6 @@
|
|||
* [PWrestling](https://pwrestling.com/) - MMA / Wrestling Replays
|
||||
* [AllWrestling24](https://allwrestling24.com/) - MMA / Wrestling Replays
|
||||
* [123Wrestling](https://123wrestling.com/) - Wrestling Replays
|
||||
* [MMA High Kick](https://www.mmahighkick.com/) - MMA / Boxing Replays
|
||||
* [Bellator](https://bellator.com/) - MMA Replays
|
||||
* [Miselet](https://vkvideo.ru/@miselet) - Sumo Wrestling Replays
|
||||
* [AllTheBestFights](https://www.allthebestfights.com/) - MMA / Boxing / Kickboxing Replays
|
||||
* [TNA / Impact Replays](https://www.youtube.com/playlist?list=PLSadBNbijyoGV44wd96Fda7-GDYh9UktC) - TNA / Impact Wrestling Replays
|
||||
|
|
@ -503,7 +525,7 @@
|
|||
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
||||
* [PlaylistEditorTV](https://github.com/Isayso/PlaylistEditorTV) - IPTV Player
|
||||
* [LivePush](https://livepush.io/hls-player/index.html) - IPTV Player
|
||||
* [Best Player](https://apps.microsoft.com/detail/9wzdncrdpqsx?hl=en-US&gl=US) - IPTV Player / [Unlock](https://rentry.co/FMHYB64#best-player)
|
||||
* [PlayTorrio IPTV](https://playtorrio.pages.dev/) - IPTV Player / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
* [IPTVPlayer](https://iptvplayer.stream/) - IPTV Web Player
|
||||
* [M3U IPTV](https://m3u-ip.tv/browser) - IPTV Web Player
|
||||
* [TMDB-To-VOD](https://github.com/gogetta69/TMDB-To-VOD-Playlist) - Generate Playlists
|
||||
|
|
@ -519,35 +541,34 @@
|
|||
|
||||
# ► Smart TV / Firestick
|
||||
|
||||
* ⭐ **[Tizentube](https://tizenbrew.6513006.xyz/)** - Ad-Free Samsung Smart TV YouTube / [GitHub](https://github.com/reisxd/TizenTube), [2](https://github.com/reisxd/TizenBrew)
|
||||
* 🌐 **[TroyPoint](https://troypoint.com/)** or **[KPFire](https://linktr.ee/kpfire)** - Firestick App Indexes
|
||||
* ⭐ **[TizenTube](https://tizentube.6513006.xyz/)** - Ad-Free Samsung Smart TV YouTube / [GitHub](https://github.com/reisxd/TizenTube), [2](https://github.com/reisxd/TizenBrew)
|
||||
* ⭐ **[webOS Homebrew](https://www.webosbrew.org/)** - LG TV Homebrew / [Guide](https://wispydocs.pages.dev/lg-tv-homebrew/) / [Discord](https://discord.gg/xWqRVEm) / [GitHub](https://github.com/webosbrew/)
|
||||
* [Smart TV Guide](https://redd.it/xa0aya) - Smart TV Piracy Guide
|
||||
* [KPFire](https://linktr.ee/kpfire) - Firestick Apps
|
||||
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
||||
* [iSponsorBlockTV](https://github.com/dmunozv04/iSponsorBlockTV) - SponsorBlock App
|
||||
* [MuTube](https://github.com/Exaphis/mutube) - Ad-free Apple TV YouTube + SponsorBlock
|
||||
* [Playlet](https://channelstore.roku.com/details/4a41d0921265a5e31429a7679442153f:b5bcb5b630c28b01e93bf59856317b43/playlet) - Ad-Free YouTube Roku Client / [GitHub](https://github.com/iBicha/playlet)
|
||||
* [SmartTwitchTV](https://github.com/fgl27/SmartTwitchTV) - Smart TV Twitch Player
|
||||
* [Go2TV](https://github.com/alexballas/go2tv) or [FCast](https://fcast.org/) - Cast to Smart TVs
|
||||
* [StreamFire](https://rentry.co/FMHYB64#streamfire), [2](https://streamfireapp.tv/) - Live TV for Smart TV & Firestick
|
||||
* [StreamFire](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Live TV for Smart TV & Firestick
|
||||
* [smart-tv-telegram](https://github.com/andrew-ld/smart-tv-telegram) - Stream Media from Telegram 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/FMHYB64#tvquickactions) - Remote Button Remapper / Sign-Up Required
|
||||
* [tvQuickActions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Remote Button Remapper / Sign-Up Required
|
||||
|
||||
***
|
||||
|
||||
## ▷ Android TV
|
||||
|
||||
* 🌐 **[Awesome Android TV](https://github.com/Generator/Awesome-Android-TV-FOSS-Apps)** - Android TV App Index
|
||||
* ⭐ **[SmartTube](https://github.com/yuliskov/SmartTube)** / [2](https://smarttubeapp.github.io/) or [TizenTube Cobalt](https://github.com/reisxd/TizenTubeCobalt) - Ad-Free Android TV YouTube
|
||||
* 🌐 **[Awesome Android TV](https://github.com/Generator/Awesome-Android-TV-FOSS-Apps)** or **[TroyPoint](https://troypoint.com/)** - Android TV App Indexes
|
||||
* ⭐ **[TizenTube Cobalt](https://github.com/reisxd/TizenTubeCobalt)** or [SmartTube](https://github.com/yuliskov/SmartTube) / [2](https://smarttubeapp.github.io/) - Ad-Free Android TV YouTube
|
||||
* [Flicky](https://github.com/mlm-games/flicky) - F-Droid Client
|
||||
* [Android TV Tools v4](https://xdaforums.com/t/tool-all-in-one-tool-for-windows-android-tv-tools-v4.4648239/) - Multiple Android TV Tools
|
||||
* [Android TV Piracy](https://rentry.co/androidtvpiracy) - Android TV Piracy Guide
|
||||
* [Android TV Guide](https://www.androidtv-guide.com/) - Certified Android TV Devices / [Spreadsheet](https://docs.google.com/spreadsheets/d/1kdnHLt673EjoAJisOal2uIpcmVS2Defbgk1ntWRLY3E/)
|
||||
* [S0undTV](https://github.com/S0und/S0undTV) - Android TV Twitch Player / [Discord](https://discord.gg/zmNjK2S)
|
||||
* [Serenity Android](https://github.com/NineWorlds/serenity-android) - Emby Android TV App
|
||||
* [atvTools](https://rentry.co/FMHYB64#atvtools) - Install Apps, Run ADB, Shell Commands, etc.
|
||||
* [atvTools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Install Apps, Run ADB, Shell Commands, etc.
|
||||
* [Projectivy Launcher](https://play.google.com/store/apps/details?id=com.spocky.projengmenu) / [XDA Thread](https://xdaforums.com/t/app-android-tv-projectivy-launcher.4436549/) / [GitHub](https://github.com/spocky/miproja1/releases) or [Leanback on Fire](https://github.com/tsynik/LeanbackLauncher) - Android TV Launchers
|
||||
* [Launcher Manager](https://xdaforums.com/t/app-firetv-noroot-launcher-manager-change-launcher-without-root.4176349/) - Change Default Launcher
|
||||
* [AerialViews](https://github.com/theothernt/AerialViews) - Custom Screensaver App
|
||||
|
|
@ -565,38 +586,47 @@
|
|||
|
||||
# ► Download Sites
|
||||
|
||||
* **Note** - Use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
||||
* **Note** - Use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
||||
|
||||
***
|
||||
|
||||
* ↪️ **[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)**
|
||||
* ⭐ **[VegaMovies](https://vegamovies.gmbh/)**, [2](https://moviesflix.ad/) - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[Scloud](https://rentry.co/FMHYB64#scloud)** - Movies / TV / 4K / [Telegram](https://t.me/scloudmediahub)
|
||||
* ⭐ **[Acer Movies](https://rentry.co/FMHYB64#acer)** - Movies / TV / Anime / [Discord](https://discord.com/invite/hpkMqrwRCE)
|
||||
* ⭐ **[111477](https://rentry.co/FMHYB64#directory-111477)** - Movies / TV / Anime / Directory / [Desktop App](https://playtorrio.pages.dev/) (unofficial) / [Discord](https://discord.gg/YjkP4pANpg)
|
||||
* ⭐ **[DDLBase](https://ddlbase.com/)** - Movies / 4K / 3D / Remuxes
|
||||
* ⭐ **[VegaMovies](https://vegamovies.gripe/)**, [2](https://moviesflix.ad/) - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Rive](https://rivestream.org/)**, [2](https://rivestream.net/) - Movies / TV / Anime / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[1Shows](https://www.1shows.ru/)** or [RgShows](https://www.rgshows.ru/) - Movies / TV / Anime / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[Cinepeace](https://cinepeace.in/)** - Movies / TV / Anime / [Discord](https://discord.gg/htmB2TbK)
|
||||
* ⭐ **[VidBox](https://vidbox.cc/)** / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* ⭐ **[LunaStream](https://lunastream.fun/)** - Movies / TV / Anime / [Discord](https://discord.gg/3kpj8SuMy5)
|
||||
* ⭐ **[VidBox](https://vidbox.cc/)** - Movies / TV / Anime / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* ⭐ **[DramaSuki](https://rentry.co/FMHYB64#dramasuki)** - Asian Drama / Directory
|
||||
* ⭐ **[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)
|
||||
* [LightDLMovies](https://rentry.co/FMHYB64#lightdl) - Movies / TV / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [Vadapav](https://rentry.co/FMHYB64#vadapav) - Movies / TV
|
||||
* [The One Piece](https://m.flixindia.xyz/) - Movie / TV / Anime / [Telegram](https://telegram.me/TheOnePieceUpdates)
|
||||
* [Medeberiya](https://medeberiya.net/) - Movie / TV
|
||||
* [TFPDL](https://tfpdl.se/category/movies/), [2](https://tfpdl.to/category/movies/) - Movies / TV / Anime
|
||||
* [P-Stream](https://pstream.mov/) - Movies / TV / Anime / [Discord](https://discord.gg/uHU4knYRPa)
|
||||
* [CinemaOS](https://cinemaos.live/download), [2](https://cinemaos.tech/download), [3](https://cinemaos.me/download) - Movies / TV / Anime / [Discord](https://discord.gg/38yFnFCJnA)
|
||||
* [9xFlix](https://www.9xflix.me/) - Movies / TV / Anime
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use [Throwaway Gmail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail)
|
||||
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime
|
||||
* [TMovie](https://tmovie.tv/) - Movies / TV / Anime / [Discord](https://discord.com/invite/R7a6yWMmfK)
|
||||
* [BEECH](https://beech.watch/) or [Mocine](https://mocine.cam/) - Movies / TV / Anime / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* [BEECH](https://beech.watch/) - Movies / TV / Anime / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* [Sinflix](https://rentry.co/FMHYB64#sinflix) - Asian Drama
|
||||
* [OlaMovies](https://olamovies.top/) - Movies / TV / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Chromium Required
|
||||
* [OlaMovies](https://new1.olamovies.onl/) - Movies / TV / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [KatMovie4k](https://katworld.net/?type=Katmovie4k) - Movies / TV / 4K
|
||||
* [PSArips](https://psa.wf/) - Movies / TV / 4K
|
||||
* [DDLBase](https://ddlbase.com/) - Movies / 4K
|
||||
* [isaiDub](https://rentry.co/FMHYB64#isaidub) - Movies / TV / 720p
|
||||
* [TVSeries](https://www.tvseries.in/) - TV / Anime
|
||||
* [Cinetaro](https://cinetaro.buzz/) - Movies / TV / Anime
|
||||
* [StagaTV](https://www.stagatv.com/) - Movies / TV
|
||||
* [Cineby](https://www.cineby.app/), [2](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* [FlickyStream](https://flickystream.ru/) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.gg/M7y867cg)
|
||||
* [Cineby](https://www.cineby.gd/), [2](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* [FlickyStream](https://flickystream.ru/) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Discord](https://discord.gg/M7y867cg)
|
||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / [Telegram](https://t.me/+8OiKICptQwA4YTJk) / [Discord](https://discord.com/invite/gmXvwcmxWR)
|
||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV
|
||||
* [HDRush](https://hdrush.cc/) - Movies / TV / [Telegram](https://t.me/hdrushxyz)
|
||||
|
|
@ -605,13 +635,9 @@
|
|||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / Anime / Right Click to Save
|
||||
* [downloads-anymovies](https://www.downloads-anymovies.co/) - Movies / Right Click to Save
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / [Clones](https://hollymoviehd-official.com/)
|
||||
* [Cinemalux](https://cinemalux.autos/) - Movies / TV
|
||||
* [ProtonMovies](https://m2.protonmovies.top/) - Movies / TV
|
||||
* [Download.ir](https://download.ir/topics/film/) - Movies / TV
|
||||
* [UHDMovies](https://modlist.in/?type=uhdmovies) - Movies / 4K
|
||||
* [4KHDHub](https://4khdhub.fans/) - Movies / TV / 4K
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use [Throwaway Gmail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail)
|
||||
* [HDHub4u](https://hdhublist.com/?re=hollywood) - Movies / TV / 4K / [Telegram](https://hdhublist.com/?re=telegram)
|
||||
* [ShareSpark](https://ww1.sharespark.cfd/) - Movies / TV
|
||||
* [Free Movies](https://free-movies.to/) - Movies / TV
|
||||
* [SeriesVault](https://seriesvault.win/), [2](https://seriesvault.org/) - TV / Anime
|
||||
|
|
@ -624,9 +650,14 @@
|
|||
* [ShareBB](https://sharebb.me/) - Movies / TV
|
||||
* [SD Toons](https://sdtoons.in/category/cartoon/) - Movies / TV / Anime / Some NSFW
|
||||
* [PrivateMovieZ](https://privatemoviez.help/) - Movies / TV
|
||||
* [Bollywood.eu](https://bollywood.eu.org/) - Movies / Telegram Required
|
||||
* [ProSearch13Bot](https://t.me/ProSearch13Bot) - Movies / TV / Telegram
|
||||
* [Bollywood.eu](https://bollywood.eu.org/) - Movies / Telegram
|
||||
* [Cinefy](https://thecinefy.site/) - Movies / TV / Telegram
|
||||
* [T4TSA](https://t4tsa.cc/) - Movies / TV / Telegram
|
||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies / Telegram
|
||||
* [SearchMoviesBot](https://t.me/SearchMoviesBot) or [TVSeriesSearchBot](https://t.me/TVSeriesSearchBot) - Movies / TV
|
||||
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
||||
* [FilmGo](https://www.filmgo.live/) - Movies / TV / 720p
|
||||
* [FZMovies](https://fzmovies.host/) - Movies / 720p
|
||||
* [TodayTVSeries](https://www.todaytvseries6.com/) - TV / 1080p
|
||||
* [TV Shows](https://tvshows.ac/) - TV / 720p
|
||||
* [TVSBoy](https://tvsboy.com/) - TV / 720p
|
||||
|
|
@ -636,35 +667,21 @@
|
|||
* [Naijavault](https://www.naijavault.com/) - Movies / TV / 480p
|
||||
* [Waploaded](https://films.waploaded.com/movie) - Movies / TV / 480p
|
||||
* [r/DownUnderTV](https://www.reddit.com/r/DownUnderTV/) - AU / NZ TV
|
||||
* [Jackass Vault](https://discord.gg/ZH5MjcKmJJ) - Jackass Media Discord
|
||||
* [CondensedAudioCatalog](https://condensedaudiocatalog.com/) - Asian Drama
|
||||
* [nKiri](https://nkiri.com/) - Asian Drama / 720p
|
||||
* [nKiri](https://nkiri.ink/) - Asian Drama / 720p
|
||||
* [RareDoramas](https://www.raredoramas.com/) - Rare JDrama / 480p
|
||||
* [Toku.fun](https://toku.fun/) - Japanese Superhero Movies / 360p
|
||||
* [Jackass Vault](https://discord.gg/ZH5MjcKmJJ) - Jackass Media Discord
|
||||
* [Fanedit.org](https://fanedit.org/) - Fanedit Community / Sign-Up Required / DM Editors for Downloads
|
||||
* [HDEncode](https://hdencode.org/), [DDLBase](https://ddlbase.com/), [RapidMoviez](https://rmz.cr/) / [Mirrors](https://rmzmirrors.com/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires [Debrid](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_debrid_.2F_leeches)
|
||||
* [IMDb-Scout-Mod](https://greasyfork.org/en/scripts/407284) - Add Download Site Results to IMDb
|
||||
|
||||
***
|
||||
|
||||
## ▷ Drives / Directories
|
||||
|
||||
* ⭐ **[Scloud](https://rentry.co/FMHYB64#scloud)** - Movies / TV / 4K / [Telegram](https://t.me/scloudmediahub)
|
||||
* ⭐ **[Acer Movies](https://rentry.co/FMHYB64#acermovies)** - Movies / TV / Anime
|
||||
* ⭐ **[111477](https://rentry.co/FMHYB64#directory-111477)** - Movies / TV / Anime / [Discord](https://discord.gg/YjkP4pANpg)
|
||||
* ⭐ **[DramaSuki](https://rentry.co/FMHYB64#dramasuki)** - Asian Drama
|
||||
* [LightDLMovies](https://rentry.co/FMHYB64#lightdl) - Movies / TV / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [Medeberiya](https://rentry.co/FMHYB64#medeberiya) - Movie / TV
|
||||
* [Vadapav](https://rentry.co/FMHYB64#vadapav) - Movies / TV
|
||||
* [Cinefy](https://thecinefy.site/) - Movies / TV / Telegram
|
||||
* [T4TSA](https://t4tsa.cc/) - Movies / TV / Telegram
|
||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies / Telegram
|
||||
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
||||
* [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)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Anime Downloading
|
||||
|
||||
* **Note** - Use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
||||
* **Note** - Use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -676,11 +693,13 @@
|
|||
* ⭐ **[hi10anime](https://hi10anime.com/)** - Sub / Sign-Up Required / [Discord](https://discord.gg/uZ85cbAg4T)
|
||||
* ⭐ **[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)**
|
||||
* ⭐ **[HakuNeko](https://hakuneko.download/) / [GitHub](https://github.com/manga-download/hakuneko)** or [Senpwai](https://github.com/SenZmaKi/Senpwai) - Anime Download Apps
|
||||
* [Kuudere](https://kuudere.to/), [2](https://kuudere.ru/) - Sub / Dub / Auto-Next / [Telegram](https://t.me/kuudere0to) / [Discord](https://discord.gg/h9v9Vfzp7B)
|
||||
* [Anime-Sharing](https://www.anime-sharing.com/) - Sub / Dub / Anime / Manga Download Forum
|
||||
* [Anime2Enjoy](https://www.anime2enjoy.com/) - Sub / [Discord](https://discord.gg/PxSmumS)
|
||||
* [animepahe](https://animepahe.si/) - Hard Subs / Dub / [Enhancements](https://greasyfork.org/en/scripts/520048) / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* [Chiby](https://www.animechiby.com/) - Sub / [Discord](https://discord.com/invite/WagHbBz)
|
||||
* [anime7.download](https://anime7.download/) - Sub
|
||||
* [JustAnime](https://justanime.to/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/P3yqksmGun)
|
||||
* [AnimeOut](https://www.animeout.xyz/) - Sub / Sign-Up Required
|
||||
* [AnimeDDL](https://www.animeddl.xyz/) - Sub / Dub
|
||||
* [nibl](https://nibl.co.uk/) - Sub / Dub / XDCC / [Discord](https://discord.com/invite/bUESsAg)
|
||||
|
|
@ -697,7 +716,7 @@
|
|||
|
||||
# ► Torrent Apps
|
||||
|
||||
* **Note** - Remember to use a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://wispydocs.pages.dev/vpn-binding/) if it allows.
|
||||
* **Note** - Remember to use a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind](https://wispydocs.pages.dev/vpn-binding/) it to your [client](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_clients) if it allows.
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -705,6 +724,7 @@
|
|||
* ↪️ **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** - Torrent Remotely Without Needing VPN
|
||||
* ↪️ **[Media Server Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_media_servers)**
|
||||
* ⭐ **[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/) / [GitHub](https://github.com/Stremio)
|
||||
* ⭐ **[PlayTorrio](https://playtorrio.pages.dev/)** - Torrent Streaming App / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
* ⭐ **[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/)
|
||||
|
|
@ -713,25 +733,25 @@
|
|||
* [Arr Scripts](https://github.com/RandomNinjaAtk/arr-scripts/) - Torrent App Automation Scripts
|
||||
* [Autobrr](https://github.com/autobrr/autobrr) - Autodownload Movie Torrents
|
||||
* [Powder](https://powder.media/) - Torrent Streaming App
|
||||
* [Popcorn Time](https://popcorn-time.site/) - Torrent Streaming App / [GitHub](https://github.com/popcorn-official/popcorn-desktop/)
|
||||
* [Ace Stream](https://acestream.org/) - Torrent Streaming App / [Channels](https://acestreamid.com/), [2](https://acestreamsearch.net/en/), [3](https://search-ace.stream/) / [Modded APK](https://rentry.co/FMHYB64#modded-acestream-apk) / [Docker Image](https://github.com/magnetikonline/docker-acestream-server) / [Mpv Script](https://github.com/Digitalone1/mpv-acestream)
|
||||
* [Popcorn Time](https://popcorn-time.site/) - Torrent Streaming App / [GitHub](https://github.com/popcorn-time-ru/popcorn-desktop)
|
||||
* [Ace Stream](https://acestream.org/) - Torrent Streaming App / [Channels](https://acestreamid.com/), [2](https://acestreamsearch.net/en/), [3](https://search-ace.stream/) / [Modded APK](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) / [Docker Image](https://github.com/magnetikonline/docker-acestream-server) / [Mpv Script](https://github.com/Digitalone1/mpv-acestream)
|
||||
* [WebTorrent](https://webtorrent.io/) - Torrent Streaming App / [GitHub](https://github.com/webtorrent/webtorrent)
|
||||
* [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) / [Discord](https://discord.gg/PFwM4zk) or [Nefarious](https://github.com/lardbit/nefarious) - Movies / TV Autodownload
|
||||
* [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
|
||||
* [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
|
||||
* [VLC-Bittorrent](https://github.com/johang/vlc-bittorrent) or [StreamTim](https://streamtim.com/) - Stream Torrents in VLC
|
||||
* [webtorrent-mpv-hook](https://github.com/mrxdst/webtorrent-mpv-hook) - Stream Torrents in MPV
|
||||
* [Iceetime](https://github.com/diericx/bevy) or [RapidBay](https://github.com/hauxir/rapidbay) - Self-Hosted Torrent Streaming
|
||||
* [RapidBay](https://github.com/hauxir/rapidbay) - Self-Hosted Torrent Streaming
|
||||
|
||||
***
|
||||
|
||||
## ▷ Stremio Tools
|
||||
|
||||
* 🌐 **[Stremio Addons](https://stremio-addons.net/)** / [Subreddit](https://www.reddit.com/r/StremioAddons/) / [Discord](https://discord.com/invite/zNRf6YF) or [Midnight's Addons](https://addonsfortheweebs.midnightignite.me/addons) - Stremio Addons
|
||||
* 🌐 **[Stremio Addons](https://stremio-addons.net/)** / [Subreddit](https://www.reddit.com/r/StremioAddons/) / [Discord](https://discord.com/invite/zNRf6YF) or [Midnight's Addons](https://addonsfortheweebs.midnightignite.me/addons) / [Status](https://status.dinsden.top/status/stremio-addons) - Stremio Addons
|
||||
* ⭐ **[Bye Sudo](https://bye.undi.rest/)** - Simple Stremio Guide
|
||||
* ⭐ **[Viren070's Guides](https://guides.viren070.me/stremio)** - Advanced Stremio Guide
|
||||
* [Stremio Addon Manager](https://addon-manager.viren070.me/) - Addon Manager / [GitHub](https://github.com/pancake3000/stremio-addon-manager)
|
||||
|
|
@ -751,7 +771,7 @@
|
|||
|
||||
* ↪️ **[General Torrent Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent)**
|
||||
* ⭐ **[1337x Movies](https://1337x.to/movie-library/1/)** - Movies / TV / Anime
|
||||
* ⭐ **[RuTracker Movies](https://rutracker.org/forum/index.php?c=2)** - Movies / TV / Anime / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* ⭐ **[RuTracker Movies](https://rutracker.org/forum/index.php?c=2)** - Movies / TV / Anime / [Wiki](https://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* ⭐ **[Rive](https://rivestream.org/)** - Movies / TV / Anime / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / Sign-Up Required
|
||||
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / Magnets on Files
|
||||
|
|
@ -763,7 +783,7 @@
|
|||
* [MSearch](https://msearch.vercel.app/) - Movies / TV
|
||||
* [RARBGLite](https://rarbglite.github.io/) - RARBG Movie Magnet Archive
|
||||
* [Public Domain Movie Torrents](https://www.publicdomaintorrents.info/) - Movies
|
||||
* [YTS](https://yts.mx/) or [YifyMovies](https://yifymovies.xyz/) - Movies / [Discord](https://discord.gg/GwDraJjMga) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#yts--yify-note) / [Proxies](https://ytsproxies.com/)
|
||||
* [YTS](https://yts.lt/) or [YifyMovies](https://yifymovies.xyz/) - Movies / [Discord](https://discord.gg/GwDraJjMga) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#yts--yify-note) / [Proxies](https://ytsproxies.com/)
|
||||
* [JapaneseTorrents](https://japanesetorrents.wordpress.com/) - Asian Drama
|
||||
* [IMDb Link em All](https://greasyfork.org/en/scripts/17154-imdb-link-em-all) or [IMDb-Scout-Mod](https://github.com/Purfview/IMDb-Scout-Mod) - Torrent Site Results on IMDb
|
||||
* [srrextra](https://github.com/srrDB/srrextra) - Scene Release Tracker on IMDb
|
||||
|
|
@ -774,16 +794,16 @@
|
|||
|
||||
* ⭐ **[Nyaa](https://nyaa.si/)**, [2](https://nyaa.iss.one/), [3](https://nyaa.iss.ink/) - Sub / Dub
|
||||
* ⭐ **Nyaa Tools** - [TUI](https://github.com/Beastwick18/nyaa) / [Batch Download](https://github.com/wotakumoe/meow), [2](https://github.com/marcpinet/nyaadownloader), [3](https://t.me/meow_in_japanese_bot), [4](https://t.me/NyaaTorrents) / [Python Wrapper](https://github.com/JuanjoSalvador/NyaaPy) / [Torrent Fetch](https://github.com/daynum/nyaabag) / [Quality Tags](https://releases.moe/about/)
|
||||
* ⭐ **[Hayase](https://hayase.watch/)** - Torrent Streaming App / [Discord](https://discord.com/invite/Z87Nh7c4Ac)
|
||||
* ⭐ **[Hayase](https://hayase.watch/)** - Torrent Streaming App / [Extensions](https://rentry.co/FMHYB64#hayase)
|
||||
* [Seanime](https://seanime.app/) - Torrent Streaming App
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Torrent Streaming Apps
|
||||
* [AnimeTosho](https://animetosho.org/) - Sub / Dub
|
||||
* [nekoBT](https://nekobt.to/) - Sub / Dub
|
||||
* [TokyoTosho](https://www.tokyotosho.info/) - Sub
|
||||
* [ShanaProject](https://www.shanaproject.com/) - Sub
|
||||
* [Hi10Anime](https://hi10anime.com/) - Sub
|
||||
* [bakabt](https://bakabt.me/) - Sub / Dub / [Interviews](https://wiki.bakabt.me/index.php/Sign_up)
|
||||
* [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz)
|
||||
* [SeaDex](https://releases.moe/) - Anime Video Quality Guides
|
||||
* [SeaDex](https://releases.moe/) - Anime Video Quality Guides / [Docs](https://releases.moe/about)
|
||||
* [Fansub Cartel](https://index.fansubcar.tel/), [2](https://docs.google.com/spreadsheets/d/1PJYwhjzLNPXV2X1np-S4rdZE4fb7pxp-QbHY1O0jH6Q/htmlview) - Fansubbers Index
|
||||
|
||||
***
|
||||
|
|
@ -816,9 +836,9 @@
|
|||
* [namuwiki](https://en.namu.wiki/) - Korean Media
|
||||
* [IGMDB](https://igmdb.com/) - LGBT Movies
|
||||
* [CageMatch](https://www.cagematch.net/) - Wrestling Promotion Database
|
||||
* [What's on Netflix](https://www.whats-on-netflix.com/library/), [uNoGS](https://unogs.com/), [FlixWatch](https://www.flixwatch.co/) or [What's on Netflix](https://www.whats-on-netflix.com/) - Browse Netflix Library
|
||||
* [What's on Netflix](https://www.whats-on-netflix.com/), [uNoGS](https://unogs.com/) or [FlixWatch](https://www.flixwatch.co/) - Browse Netflix Library
|
||||
* [Netflix Top 10](https://www.netflix.com/tudum/top10) - Netflix Most-Watched Chart
|
||||
* [MediaTracker](https://github.com/bonukai/MediaTracker) - Self-Hosted Tracker
|
||||
* [MediaTracker](https://github.com/bonukai/MediaTracker) or [Yamtrack](https://github.com/FuzzyGrim/Yamtrack) - Self-Hosted Media Trackers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -829,6 +849,7 @@
|
|||
* [Taiga](https://taiga.moe/) - Anime Tracking Program
|
||||
* [Anime-Planet](https://www.anime-planet.com/) - Anime
|
||||
* [Kitsu](https://kitsu.io/) - Anime
|
||||
* [Kuroiru](https://kuroiru.co/) - Anime
|
||||
* [Anisearch](https://www.anisearch.com/) - Anime
|
||||
* [AniDB](https://anidb.net/) - Anime
|
||||
* [ACDB](https://www.animecharactersdatabase.com/) - Anime Character Database
|
||||
|
|
@ -838,7 +859,7 @@
|
|||
## ▷ Curated Recommendations
|
||||
|
||||
* ⭐ **[They Shoot Pictures](https://www.theyshootpictures.com/)** - Movie Top 1000 List
|
||||
* ⭐ **[FlickMetrix](https://flickmetrix.com/)** or [agoodmovietowatch](https://agoodmovietowatch.com/) - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
||||
* ⭐ **[FlickMetrix](https://flickmetrix.com/)** - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
||||
* ⭐ **[TasteDive](https://tastedive.com/)** - Recommendations
|
||||
* ⭐ **[RatingsGraph](https://www.ratingraph.com/)** - Movie / TV Ratings Graphs
|
||||
* [RYM Ultimate Film Lists](https://rateyourmusic.com/list/TheScientist/rym-ultimate-film-genres-and-lists/) - In-Depth Film Genre & Recommendation Lists
|
||||
|
|
@ -848,6 +869,7 @@
|
|||
* [IMDb Table](https://docyx.github.io/imdb-table), [TV Chart](https://tvchart.benmiz.com/), [Episode Hive](https://episodehive.com/), [TV Charts](https://tvcharts.co/), [SeriesGraph](https://seriesgraph.com), [TheShowGrid](https://theshowgrid.com/) or [WhatToWatchOn.tv](https://whattowatchon.tv/) - TV Episode Rating Graphs
|
||||
* [AnimeStats](https://anime-stats.net/), [AnimeKarmaList](https://animekarmalist.com/) or [Sprout](https://anime.ameo.dev/) - Anime Recommendations
|
||||
* [MRQE](https://www.mrqe.com/) - Movie Review Search Engine
|
||||
* [Phi Phenomenon](https://phi-phenomenon.org/) - Multiple Top Movie Lists
|
||||
* [Sight and Sound](https://www.bfi.org.uk/sight-and-sound/greatest-films-all-time/) - Movie Top 250 List
|
||||
* [kudos.wiki](https://kudos.wiki/) - Wikipedia Top 1000 List
|
||||
* [DigitalDreamDoor](https://digitaldreamdoor.com/) - Greatest 100 Lists
|
||||
|
|
@ -924,7 +946,6 @@
|
|||
* [SubSource](https://subsource.net/) - Subtitles
|
||||
* [Subtitle Cat](https://www.subtitlecat.com/) - Subtitles
|
||||
* [Podnapisi](https://www.podnapisi.net/) - Subtitles
|
||||
* [opensubtitles.com](https://www.opensubtitles.com/) - Subtitles
|
||||
* [Subs4Free](https://www.subs4free.info/) - Subtitles
|
||||
* [JustSubtitles](https://justsubtitles.com/), [2](https://subss.vercel.app/) - Subtitles
|
||||
* [IndexSubtitle](https://indexsubtitle.cc/) - Subtitles
|
||||
|
|
@ -955,14 +976,14 @@
|
|||
* [IMDb-Scout-Mod](https://greasyfork.org/en/scripts/407284) - Add Streaming Site Results to IMDb
|
||||
* [TG-FileStreamBot](https://github.com/EverythingSuckz/TG-FileStreamBot) - Telegram File Streaming
|
||||
* [FlickChart](https://www.flickchart.com/) - Rank Your Movies
|
||||
* [Find Movie](https://find-movie.info/) or [QuoDB](https://www.quodb.com/) - Movie Quote Databases / Search
|
||||
* [Find Movie](https://find-movie.info/) - Movie Quote Database / Search
|
||||
* [SubsLikeScript](https://subslikescript.com/), [Scripts Onscreen](https://scripts-onscreen.com/), [Scripts.com](https://www.scripts.com/), [IMSDB](https://imsdb.com/), [ScriptSlug](https://www.scriptslug.com/), [DailyScript](https://www.dailyscript.com/) or [SimplyScripts](https://www.simplyscripts.com/) - Media Scripts
|
||||
* [Forever Dreaming](https://transcripts.foreverdreaming.org/) - Media Transcripts
|
||||
* [Media Stack DIY](http://tennojim.xyz/article/media_stack_diy) - High Quality Streaming Guide
|
||||
* [Caps-A-Holic](https://caps-a-holic.com/) - Compare Movie Release Quality / Details
|
||||
* [RunPee](https://runpee.com/) - Best Movie Break Times
|
||||
* [IMissedTheStart](https://imissedthestart.com/) - Summarize Missed Movie Parts
|
||||
* [HowDoesTheMovieEnd](http://www.howdoesthemovieend.com/), [MoviePooper](https://moviepooper.com/), [themoviespoiler](https://themoviespoiler.com/) or [DoesTheDogDie](https://www.doesthedogdie.com/) - Movie Spoilers
|
||||
* [MoviePooper](https://moviepooper.com/), [themoviespoiler](https://themoviespoiler.com/) or [DoesTheDogDie](https://www.doesthedogdie.com/) - Movie Spoilers
|
||||
* [Behind the Voice Actors](https://www.behindthevoiceactors.com/) - Voice Actors Database
|
||||
* [Movie-Censorship](https://www.movie-censorship.com/) - Compare Alternate Versions of Media
|
||||
* [ShotOnWhat?](https://shotonwhat.com/) - Film Technical Info / Equipment Database
|
||||
|
|
@ -971,7 +992,7 @@
|
|||
* [IMFDB](https://www.imfdb.org/) - Movie Firearms Database / [Discord](https://discord.com/invite/FDHEkQ6szt)
|
||||
* [WheresTheJump?](https://wheresthejump.com/) or [WheresTheScares?](https://wheresthescares.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
|
||||
* [WhatsatMovie](https://whatsatmovie.com/), [LibraryThing](https://www.talpasearch.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
|
||||
|
|
|
|||
3787
package-lock.json
generated
3787
package-lock.json
generated
File diff suppressed because it is too large
Load diff
72
package.json
72
package.json
|
|
@ -3,7 +3,7 @@
|
|||
"packageManager": "pnpm@10.12.2+sha256.07b2396c6c99a93b75b5f9ce22be9285c3b2533c49fec51b349d44798cf56b82",
|
||||
"type": "module",
|
||||
"engines": {
|
||||
"node": "21.7.3"
|
||||
"node": ">=25.2.1"
|
||||
},
|
||||
"scripts": {
|
||||
"api:build": "nitropack build",
|
||||
|
|
@ -24,51 +24,51 @@
|
|||
"@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",
|
||||
"@vueuse/core": "^14.1.0",
|
||||
"consola": "^3.4.2",
|
||||
"feed": "^5.1.0",
|
||||
"itty-fetcher": "^1.0.10",
|
||||
"nitro-cors": "^0.7.1",
|
||||
"nitropack": "^2.11.6",
|
||||
"nitropack": "^2.12.9",
|
||||
"nprogress": "^0.2.0",
|
||||
"pathe": "^2.0.1",
|
||||
"reka-ui": "^2.3.1",
|
||||
"unocss": "66.1.0-beta.3",
|
||||
"vitepress": "^1.6.3",
|
||||
"vue": "^3.5.13",
|
||||
"x-satori": "^0.2.0",
|
||||
"zod": "^3.24.2"
|
||||
"pathe": "^2.0.3",
|
||||
"reka-ui": "^2.6.1",
|
||||
"unocss": "66.5.10",
|
||||
"vitepress": "^1.6.4",
|
||||
"vue": "^3.5.25",
|
||||
"x-satori": "^0.4.0",
|
||||
"zod": "^4.1.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@cloudflare/workers-types": "^4.20241230.0",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
||||
"@iconify-json/carbon": "^1.2.5",
|
||||
"@iconify-json/fluent": "^1.2.23",
|
||||
"@cloudflare/workers-types": "^4.20251202.0",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
||||
"@iconify-json/carbon": "^1.2.15",
|
||||
"@iconify-json/fluent": "^1.2.35",
|
||||
"@iconify-json/fluent-mdl2": "^1.2.1",
|
||||
"@iconify-json/gravity-ui": "^1.2.5",
|
||||
"@iconify-json/heroicons-solid": "^1.2.0",
|
||||
"@iconify-json/logos": "^1.2.4",
|
||||
"@iconify-json/lucide": "^1.2.10",
|
||||
"@iconify-json/material-symbols": "^1.2.22",
|
||||
"@iconify-json/mdi": "^1.2.1",
|
||||
"@iconify-json/gravity-ui": "^1.2.10",
|
||||
"@iconify-json/heroicons-solid": "^1.2.1",
|
||||
"@iconify-json/logos": "^1.2.10",
|
||||
"@iconify-json/lucide": "^1.2.78",
|
||||
"@iconify-json/material-symbols": "^1.2.49",
|
||||
"@iconify-json/mdi": "^1.2.3",
|
||||
"@iconify-json/ph": "^1.2.2",
|
||||
"@iconify-json/qlementine-icons": "^1.2.6",
|
||||
"@iconify-json/simple-icons": "^1.2.12",
|
||||
"@iconify-json/twemoji": "^1.2.1",
|
||||
"@iconify/utils": "^2.3.0",
|
||||
"@types/node": "^20.16.12",
|
||||
"@iconify-json/qlementine-icons": "^1.2.12",
|
||||
"@iconify-json/simple-icons": "^1.2.61",
|
||||
"@iconify-json/twemoji": "^1.2.4",
|
||||
"@iconify/utils": "^3.1.0",
|
||||
"@types/node": "^24.10.1",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"nitro-cloudflare-dev": "^0.2.2",
|
||||
"prettier": "^3.5.3",
|
||||
"prettier": "^3.7.4",
|
||||
"prettier-plugin-pkgsort": "^0.2.1",
|
||||
"prettier-plugin-tailwindcss": "^0.6.11",
|
||||
"sass": "^1.85.1",
|
||||
"typescript": "^5.8.2",
|
||||
"unplugin-auto-import": "^0.18.3",
|
||||
"prettier-plugin-tailwindcss": "^0.7.2",
|
||||
"sass": "^1.94.2",
|
||||
"typescript": "^5.9.3",
|
||||
"unplugin-auto-import": "^20.3.0",
|
||||
"vite-plugin-optimize-exclude": "^0.0.1",
|
||||
"vite-plugin-pwa": "^1.0.3",
|
||||
"vite-plugin-terminal": "^1.2.0",
|
||||
"wrangler": "^3.114.1"
|
||||
"vite-plugin-pwa": "^1.2.0",
|
||||
"vite-plugin-terminal": "^1.3.0",
|
||||
"wrangler": "^4.52.1"
|
||||
},
|
||||
"pnpm": {
|
||||
"peerDependencyRules": {
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@
|
|||
"cf-typegen": "wrangler types"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@cloudflare/vitest-pool-workers": "^0.8.19",
|
||||
"typescript": "^5.5.2",
|
||||
"vitest": "~3.2.0",
|
||||
"wrangler": "^4.20.5"
|
||||
"@cloudflare/vitest-pool-workers": "^0.10.13",
|
||||
"typescript": "^5.9.3",
|
||||
"vitest": "~4.0.15",
|
||||
"wrangler": "^4.52.1"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
1775
pests-repellent/pnpm-lock.yaml
generated
Normal file
1775
pests-repellent/pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -14,11 +14,17 @@ describe('Hello World worker', () => {
|
|||
const response = await worker.fetch(request, env, ctx);
|
||||
// Wait for all `Promise`s passed to `ctx.waitUntil()` to settle before running test assertions
|
||||
await waitOnExecutionContext(ctx);
|
||||
expect(await response.text()).toMatchInlineSnapshot(`"Hello World!"`);
|
||||
expect(await response.text()).toMatchInlineSnapshot(`
|
||||
"<!doctype html><html lang="en"><head><title>Example Domain</title><meta name="viewport" content="width=device-width, initial-scale=1"><style>body{background:#eee;width:60vw;margin:15vh auto;font-family:system-ui,sans-serif}h1{font-size:1.5em}div{opacity:0.8}a:link,a:visited{color:#348}</style><body><div><h1>Example Domain</h1><p>This domain is for use in documentation examples without needing permission. Avoid use in operations.<p><a href="https://iana.org/domains/example">Learn more</a></div></body></html>
|
||||
"
|
||||
`);
|
||||
});
|
||||
|
||||
it('responds with Hello World! (integration style)', async () => {
|
||||
const response = await SELF.fetch('https://example.com');
|
||||
expect(await response.text()).toMatchInlineSnapshot(`"Hello World!"`);
|
||||
expect(await response.text()).toMatchInlineSnapshot(`
|
||||
"<!doctype html><html lang="en"><head><title>Example Domain</title><meta name="viewport" content="width=device-width, initial-scale=1"><style>body{background:#eee;width:60vw;margin:15vh auto;font-family:system-ui,sans-serif}h1{font-size:1.5em}div{opacity:0.8}a:link,a:visited{color:#348}</style><body><div><h1>Example Domain</h1><p>This domain is for use in documentation examples without needing permission. Avoid use in operations.<p><a href="https://iana.org/domains/example">Learn more</a></div></body></html>
|
||||
"
|
||||
`);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
5837
pnpm-lock.yaml
generated
5837
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue