mirror of
https://github.com/fmhy/edit.git
synced 2026-03-11 08:55:38 +00:00
Merge branch 'fmhy:main' into main
This commit is contained in:
commit
ade9348fb9
59 changed files with 3018 additions and 1134 deletions
6
.github/CONTRIBUTING.md
vendored
6
.github/CONTRIBUTING.md
vendored
|
|
@ -33,7 +33,7 @@ ### Adding a Site
|
|||
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 @@ ## Making 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.
|
||||
|
||||
|
|
@ -121,4 +121,4 @@ #### Local Instance
|
|||
|
||||
Making changes on a local repository may require a basic understanding of Git. You can find learning resources [here](/educational#developer-learning).
|
||||
|
||||
More info on manual setup can be found [here](/other/selfhosting).
|
||||
More info on manual setup can be found [here](/other/selfhosting).
|
||||
|
|
|
|||
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)
|
||||
)
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -161,23 +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/' },
|
||||
{ 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'
|
||||
|
|
@ -333,4 +332,4 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
]
|
||||
|
|
@ -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,141 +1,262 @@
|
|||
<script setup lang="ts">
|
||||
import { colors } from '@fmhy/colors'
|
||||
import { useStorage, useStyleTag } from '@vueuse/core'
|
||||
import { watch, onMounted } from 'vue'
|
||||
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'
|
||||
|
||||
const colorScales = [
|
||||
'50',
|
||||
'100',
|
||||
'200',
|
||||
'300',
|
||||
'400',
|
||||
'500',
|
||||
'600',
|
||||
'700',
|
||||
'800',
|
||||
'900',
|
||||
'950'
|
||||
] as const
|
||||
|
||||
type ColorNames = keyof typeof colors
|
||||
const selectedColor = useStorage<ColorNames>('preferred-color', 'swarm')
|
||||
const isAmoledMode = useStorage('amoled-mode', false)
|
||||
|
||||
// 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, amoledEnabled: boolean) => {
|
||||
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 ')
|
||||
|
||||
const htmlElement = document.documentElement
|
||||
|
||||
if (amoledEnabled) {
|
||||
htmlElement.classList.add('theme-amoled')
|
||||
} else {
|
||||
htmlElement.classList.remove('theme-amoled')
|
||||
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 }
|
||||
}
|
||||
|
||||
const darkBg = amoledEnabled ? '#000000' : 'rgb(26, 26, 26)'
|
||||
const darkBgAlt = amoledEnabled ? '#000000' : 'rgb(23, 23, 23)'
|
||||
const darkBgElv = amoledEnabled ? 'rgba(0, 0, 0, 0.9)' : 'rgba(23, 23, 23, 0.8)'
|
||||
const darkBgSoft = amoledEnabled ? '#000000' : 'rgb(23, 23, 23)'
|
||||
|
||||
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]};
|
||||
--vp-c-bg: #ffffff !important;
|
||||
--vp-c-bg-alt: #f9f9f9 !important;
|
||||
--vp-c-bg-elv: rgba(255, 255, 255, 0.7) !important;
|
||||
--vp-c-bg-soft: #f9f9f9 !important;
|
||||
}
|
||||
|
||||
.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]};
|
||||
--vp-c-bg: ${darkBg} !important;
|
||||
--vp-c-bg-alt: ${darkBgAlt} !important;
|
||||
--vp-c-bg-elv: ${darkBgElv} !important;
|
||||
--vp-c-bg-soft: ${darkBgSoft} !important;
|
||||
if (modeColors?.brand && modeColors.brand[1] && modeColors.brand[2]) {
|
||||
return {
|
||||
background: `linear-gradient(135deg, ${modeColors.brand[1]} 0%, ${modeColors.brand[2]} 100%)`
|
||||
}
|
||||
|
||||
html, body {
|
||||
background-color: #ffffff !important;
|
||||
}
|
||||
|
||||
.VPApp, .Layout, .VPContent, .VPHome, .VPHero, #app, .vp-doc {
|
||||
background-color: #ffffff !important;
|
||||
}
|
||||
|
||||
.dark html, .dark body {
|
||||
background-color: ${darkBg} !important;
|
||||
}
|
||||
|
||||
.dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app, .dark .vp-doc {
|
||||
background-color: ${darkBg} !important;
|
||||
}
|
||||
`
|
||||
}
|
||||
|
||||
// Fallback to CSS var brand if present
|
||||
return { background: 'var(--vp-c-brand-1)' }
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
if (isAmoledMode.value) {
|
||||
document.documentElement.classList.add('theme-amoled')
|
||||
}
|
||||
const generateThemeFromColor = (colorName: ColorNames): Theme => {
|
||||
const colorSet = colors[colorName]
|
||||
|
||||
// Re-apply the theme to ensure everything is initialized
|
||||
updateThemeColor(selectedColor.value, isAmoledMode.value)
|
||||
})
|
||||
|
||||
watch([selectedColor, isAmoledMode], ([color, amoled]) => {
|
||||
updateThemeColor(color, amoled)
|
||||
})
|
||||
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'
|
||||
:class="[
|
||||
'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>
|
||||
|
||||
<!-- AMOLED toggle -->
|
||||
<div class="mt-4 flex items-center gap-2">
|
||||
<span class="text-sm text-$vp-c-text-2">AMOLED</span>
|
||||
<Switch v-model="isAmoledMode" @click="isAmoledMode = !isAmoledMode" />
|
||||
</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>
|
||||
</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',
|
||||
|
|
|
|||
208
docs/ai.md
208
docs/ai.md
|
|
@ -12,62 +12,59 @@ # ► AI Chatbots
|
|||
|
||||
## ▷ Official Model Sites
|
||||
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** - Gemini 2.5 Pro / Unlimited / Sign-Up Required / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Grok](https://grok.com/)** - Grok 4 Fast + Grok 3 (96 daily) / Grok 4 (24 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 / Sign-Up Required / [Subreddit](https://www.reddit.com/r/kimi/) / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
||||
* ⭐ **[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)
|
||||
* [ChatGPT](https://chatgpt.com/) - GPT-5 / [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)
|
||||
* [Gemini](https://gemini.google.com/) - Gemini 2.5 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)
|
||||
* [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) / [Discord](https://discord.gg/3Wb36Zp7)
|
||||
* [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 / Sign-Up Required
|
||||
* [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://publicai.co/chat), [2](https://chat.publicai.co/) - Apertus 70B
|
||||
* [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)
|
||||
* [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/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [Yupp.ai](https://yupp.ai/) - Multiple Chatbots / Google Login Required / [Discord](https://discord.com/invite/yuppai)
|
||||
* [HuggingChat](https://huggingface.co/chat/) - Multiple Chatbots
|
||||
* [ISH](https://ish.chat/) - GPT-5 / Grok 4 / Kimi K2 / Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [DuckDuckGo AI](https://duck.ai/) - GPT-5 mini / Multiple Chatbots / No Sign-Up
|
||||
* [Genspark](https://www.genspark.ai/) - GPT-5-high / Gemini 2.5 Pro / Grok 4 / Sign-Up Required / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
* ⭐ **[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)
|
||||
* [Groq](https://groq.com/) - Kimi K2-0905 / GPT-OSS 120B / Sign-Up Required / [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
|
||||
* [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 / No Sign-Up / [Telegram](https://t.me/freepass_ai)
|
||||
* [HiveChat](https://ai.wr.do/chat) - Kimi K2 / DeepSeek R1-0528 / Multiple Chatbots / Sign-Up Required / [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/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[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)
|
||||
|
|
@ -82,7 +79,7 @@ ## ▷ Local AI Frontends
|
|||
|
||||
* ⭐ **[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)
|
||||
|
|
@ -110,6 +107,7 @@ ## ▷ Self-Hosting Tools
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -118,38 +116,42 @@ ## ▷ Roleplaying Chatbots
|
|||
* 🌐 **[Sukino-Findings](https://rentry.org/Sukino-Findings)** - AI Roleplay Resources
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[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)
|
||||
* [Qwen Code](https://github.com/QwenLM/qwen-code) - CLI Coding AI / [Docs](https://qwenlm.github.io/qwen-code-docs/en/)
|
||||
* ↪️ **[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
|
||||
* [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)
|
||||
|
|
@ -159,7 +161,7 @@ ## ▷ Coding AIs
|
|||
* [AnyCoder](https://huggingface.co/spaces/akhaliq/anycoder) - Coding 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)
|
||||
|
|
@ -206,12 +208,11 @@ ## ▷ AI Prompts
|
|||
* 🌐 **[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
|
||||
|
|
@ -224,7 +225,7 @@ # ► AI Indexes
|
|||
* ⭐ **[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
|
||||
|
|
@ -235,47 +236,47 @@ # ► AI Indexes
|
|||
|
||||
***
|
||||
|
||||
## ▷ AI Benchmarks
|
||||
# ► AI Benchmarks
|
||||
|
||||
* ⭐ **[Artificial Analysis](https://artificialanalysis.ai/)** - Chatbot Benchmarks / [X](https://x.com/ArtificialAnlys)
|
||||
* ⭐ **[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
|
||||
* [Alpha Arena](https://nof1.ai/) - AI Investing Ability Benchmark
|
||||
* [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) or [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
|
||||
|
|
@ -289,17 +290,20 @@ ## ▷ [Grammar Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tool
|
|||
# ► Video Generation
|
||||
|
||||
* 🌐 **[VBench](https://huggingface.co/spaces/Vchitect/VBench_Leaderboard)** - Video Generation Model Leaderboard
|
||||
* [Grok Imagine](https://grok.com/imagine) - Imagine 0.9 / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* [Opal Veo 3](https://opal.withgoogle.com/?flow=drive:/16qMbrhlc7gjTfI1zpnKbyoBxEcDRi4om&shared&mode=app) - Veo 3 / US IP or VPN Required / Use Alt Account
|
||||
* [Genmo](https://www.genmo.ai/) - 30 Monthly / [GitHub](https://github.com/genmoai/mochi)
|
||||
* [PixVerse](https://pixverse.ai/) - 3 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) - 4 Daily
|
||||
* [Qwen](https://chat.qwen.ai/) - 10 Daily / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[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
|
||||
* [FastVideo](https://fastwan.fastvideo.org/) - Unlimited / [GitHub](https://github.com/hao-ai-lab/FastVideo/)
|
||||
* [Vivago](https://vivago.ai/) - 1 Daily
|
||||
* [Qwen](https://chat.qwen.ai/) - 10 Daily / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* [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
|
||||
* [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
|
||||
|
||||
|
|
@ -308,35 +312,33 @@ # ► Video Generation
|
|||
# ► Image Generation
|
||||
|
||||
* 🌐 **[LMArena Text to Image](https://lmarena.ai/leaderboard/text-to-image)** or **[LMArena Editing](https://lmarena.ai/leaderboard/image-edit)** - 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) / Sign-Up Required / Region-Based / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[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
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** - 30 Per 24 Hours / Editing / Sign-Up Required / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - Multiple Generators / Editing / Google Login After 3 / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** - Imagen 3 / Unlimited / Region-Based / Sign-Up Required / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[Grok](https://grok.com/)** - 96 Daily / Editing / Sign-Up Required / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* [Mage](https://www.mage.space/) - Flux Schnell / Sign-Up Required / [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 / [Discord](https://discord.com/invite/yuppai)
|
||||
* [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 4.0 / 4 Gens Per Prompt / Sign-Up Required
|
||||
* [Hunyuan Image Generation](https://hunyuan.tencent.com/image/en) - Hunyuan Image 3.0 / Unlimited / No Sign-Up
|
||||
* [PigenAI](https://pigenai.art/) - Unlimited / Imagen 4
|
||||
* [ISH](https://ish.chat/) - Unlimited / GPT Image 1 mini / Flux Kontext (pro) / Editing / No Sign-Up /[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
|
||||
* [Genspark](https://www.genspark.ai/) - Unlimited / Flux Schnell / Sign-Up Required / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
* [Tater AI](https://taterai.github.io/Text2Image-Generator.html) - Unlimited / Flux Schnell
|
||||
* [Loras](https://www.loras.dev/) - Flux Schnell / Unlimited / [X](https://x.com/tater_ai) / [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)
|
||||
* ⭐ **[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)
|
||||
* [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
|
||||
* [PigenAI](https://pigenai.art/) - Unlimited / Imagen 4 / Qwen
|
||||
* [Ernie](https://ernie.baidu.com/) - Unlimited / Editing / Sign-Up Required
|
||||
* [ZonerAI](https://zonerai.com/) - Unlimited / Editing
|
||||
* [Ernie](https://ernie.baidu.com/) - Unlimited / Editing / Sign-Up Required / [Discord](https://discord.gg/3Wb36Zp7)
|
||||
* [AI Gallery](https://aigallery.app/) - Unlimited / No Sign-Up / [Telegram](https://t.me/aigalleryapp)
|
||||
* [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)
|
||||
|
||||
|
|
@ -356,7 +358,7 @@ ## ▷ Local Frontends
|
|||
* [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 / [X](https://x.com/Amuse_AI)
|
||||
|
|
@ -372,7 +374,7 @@ ## ▷ Guides / Tools
|
|||
* [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
|
||||
|
||||
|
|
@ -388,9 +390,8 @@ # ► Audio Generation
|
|||
* [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)
|
||||
* [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 @@ ## ▷ Text to Speech
|
|||
* [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)
|
||||
|
|
@ -468,9 +470,9 @@ ## ▷ Voice Removal / Separation
|
|||
* [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/)
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
153
docs/audio.md
153
docs/audio.md
|
|
@ -8,11 +8,10 @@ # ► Audio Streaming
|
|||
|
||||
## ▷ 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
|
||||
* ⭐ **[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
|
||||
|
|
@ -32,20 +31,22 @@ ## ▷ Streaming Sites
|
|||
|
||||
* ⭐ **[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://dab.yeet.su/)**, [2](https://dabmusic.xyz/) - Browser Music / Lossless / [Invite](https://discord.com/invite/rmzH6ttgcC) / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9)
|
||||
* ⭐ **[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
|
||||
* ⭐ **[TrackerHub](https://artistgrid.cx/)** - Unreleased / [Discord](https://discord.gg/trackerhub)
|
||||
* ⭐ **[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/), [QQDL](https://tidal.qqdl.site/) or [BiniLossless](https://music.binimum.org/) - HiFi Tidal Instances / [Full List](https://github.com/eduardprigoana/hifi-instances/)
|
||||
* [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/) 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
|
||||
|
|
@ -91,7 +92,7 @@ ## ▷ Concerts / Live Shows
|
|||
* 🌐 **[365 Radio](https://365.ilysm.nl/)** - List of YouTube DJ Channels
|
||||
* ⭐ **[bt.etree](https://bt.etree.org/)** - Concert Recordings / Torrents
|
||||
* ⭐ **[hate5six](https://hate5six.com/)** - Concert Recordings
|
||||
* ⭐ **[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
|
||||
|
|
@ -124,7 +125,7 @@ ## ▷ Concerts / Live Shows
|
|||
## ▷ 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 / [Companion](https://sebschaef.bitbucket.io/podify/) / [RSS](https://github.com/Yetangitu/Spodcast) / [Video Download](https://rentry.co/spotifypodcast) / [Audio Download](https://rentry.co/dlspotifypodcast)
|
||||
* ⭐ **[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
|
||||
|
|
@ -216,6 +217,7 @@ ## ▷ Internet Radio
|
|||
* [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
|
||||
* [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/)
|
||||
|
|
@ -257,7 +259,7 @@ ## ▷ Internet Radio
|
|||
|
||||
## ▷ Radio Directories
|
||||
|
||||
* ⭐ **[Radio Garden](https://radio.garden/)** / [Site Unblock](https://redd.it/18e12gf), [2](https://redd.it/13b53zs), [WorldRadioMap](https://worldradiomap.com/), [GlobeRadio](https://globeradio.app/), [Radio Globe](https://watchio.live/radio) or [RadioCast](https://www.radiocast.co/) - Worldwide Radio Globes
|
||||
* ⭐ **[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
|
||||
|
|
@ -305,6 +307,7 @@ # ► Spotify Tools
|
|||
* ↪️ **[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
|
||||
|
|
@ -326,8 +329,8 @@ # ► Spotify Tools
|
|||
## ▷ 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/) / [GitHub](https://github.com/Pushan2005/SpotTransfer), [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
|
||||
|
|
@ -351,10 +354,11 @@ # ► Audio Ripping
|
|||
## ▷ Audio Ripping Sites
|
||||
|
||||
* ⭐ **[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 / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic)
|
||||
* ⭐ **[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 / [Invites](https://discord.com/invite/rmzH6ttgcC) / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9)
|
||||
* ⭐ **[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)
|
||||
|
|
@ -373,10 +377,12 @@ ## ▷ Audio Ripping Tools
|
|||
* [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
|
||||
* [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 Premiuim / Nice Metadata / FLAC / Use Firehawk52
|
||||
* [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
|
||||
|
|
@ -387,18 +393,16 @@ ## ▷ Audio Ripping Tools
|
|||
|
||||
## ▷ 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), [VK Music Bot](https://t.me/vkmusic_bot), [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -409,7 +413,7 @@ ## ▷ Download Sites
|
|||
***
|
||||
|
||||
* 🌐 **[Music Download Guide](https://rentry.co/wheredownloadmusic)** - Downloading Guide / Site Index
|
||||
* ⭐ **[TrackerHub](https://artistgrid.cx/)** - Unreleased / [Discord](https://discord.gg/trackerhub)
|
||||
* ⭐ **[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
|
||||
|
|
@ -461,7 +465,7 @@ ## ▷ Download Sites
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -511,6 +515,7 @@ ## ▷ Genre Specific Ripping
|
|||
* [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
|
||||
|
||||
|
|
@ -598,7 +603,7 @@ ## ▷ Game Soundtracks
|
|||
* [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
|
||||
|
|
@ -612,79 +617,87 @@ ## ▷ Game Soundtracks
|
|||
|
||||
# ► 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/)** - Music Genre Discovery Tool / [New Music](https://www.furia.com/page.cgi?type=log#id492)
|
||||
* ⭐ **[Tunefind](https://www.tunefind.com/)** - Find Music from Movies / TV Shows
|
||||
* [Chosic](https://www.chosic.com/), [lazyrecords](https://lazyrecords.app/), [Discover Quickly](https://discoverquickly.com/), [TapeFear](https://www.tapefear.com/), [SongsLikeX](https://songslikex.com/), [Dubolt](https://dubolt.com/) or [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/), [SampleRoulette](https://www.sampleroulette.io/) or [Samplette](https://samplette.io/) - Play Random YouTube Songs
|
||||
* [1001 Albums Generator](https://1001albumsgenerator.com/) - Daily Random Album Recommendation
|
||||
* [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, Sample and Remix Databases
|
||||
* [SoundtrackTracklist](https://soundtracktracklist.com/) or [FilmMusicSite](https://www.filmmusicsite.com/en/) - Soundtrack Databases
|
||||
* [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)
|
||||
|
|
@ -694,8 +707,8 @@ ## ▷ Last.fm Tools
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -708,7 +721,7 @@ # ► Audio Tools
|
|||
* ↪️ **[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
|
||||
|
|
@ -723,7 +736,7 @@ ## ▷ 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 Badges](https://wiki.musichoarders.xyz/reference/musicbee/)
|
||||
|
|
@ -767,7 +780,6 @@ ## ▷ Audio Servers
|
|||
* [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/)
|
||||
|
||||
***
|
||||
|
|
@ -775,7 +787,7 @@ ## ▷ Audio Servers
|
|||
## ▷ 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
|
||||
|
|
@ -790,7 +802,7 @@ ## ▷ Audio Metadata
|
|||
## ▷ 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 Downloader / 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
|
||||
|
|
@ -822,6 +834,7 @@ ## ▷ Lyric Sites
|
|||
* [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
|
||||
|
||||
|
|
@ -856,7 +869,7 @@ ## ▷ Spectrum Analyzers
|
|||
* ⭐ **[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/)
|
||||
* [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
|
||||
|
||||
|
|
@ -967,7 +980,7 @@ ## ▷ SFX / Loops
|
|||
|
||||
* ⭐ **[Kits4Beats](https://kits4beats.com/)** - Download / Torrent / [Telegram](https://t.me/kits4beats)
|
||||
* ⭐ **[PLUGG SUPPLY](https://t.me/pluggsupply)** - Telegram / [VK](https://vk.com/pluggsupply)
|
||||
* ⭐ **[OrangeFreeSounds](https://orangefreesounds.com/)**, [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
|
||||
|
|
|
|||
|
|
@ -20,6 +20,16 @@ ### Adblocking
|
|||
|
||||
***
|
||||
|
||||
### 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?
|
||||
|
|
@ -46,7 +56,7 @@ ### Base64
|
|||
|
||||
### Movies / Shows
|
||||
|
||||
* **Streaming: [Cineby](https://www.cineby.gd/) / [P-Stream](https://pstream.mov/) / [Aether](https://aether.mom/)**
|
||||
* **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/)**
|
||||
|
|
@ -89,21 +99,11 @@ ### Reading
|
|||
* **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/) + [Theme Guide](https://claraiscute.neocities.org/Guides/moontheme/), [2](https://claraiscute.pages.dev/Guides/moontheme) / [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://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.
|
||||
|
||||
***
|
||||
|
||||
### Privacy
|
||||
|
||||
> I don't have anything to hide, why should I care about privacy?
|
||||
|
|
@ -122,7 +122,7 @@ ### Windows Piracy
|
|||
|
||||
> 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 @@ # ► Dev News
|
|||
* [Talos Blog](https://blog.talosintelligence.com/) - Cybersecurity News
|
||||
* [IT Security Guru](https://www.itsecurityguru.org/) - Cybersecurity News
|
||||
* [This Week in Rust](https://this-week-in-rust.org/) - Rust News / Updates
|
||||
* [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 @@ # ► Developer Tools
|
|||
* [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
|
||||
|
|
@ -65,7 +65,6 @@ # ► Developer Tools
|
|||
* [Hajimari](https://hajimari.io/) - Kubernetes Startpage / [Discord](https://discord.com/invite/HWGZSWJsA8)
|
||||
* [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
|
||||
|
|
@ -87,13 +86,13 @@ ## ▷ Dev Tool Indexes
|
|||
|
||||
* ⭐ **[Free for Developers](https://free-for.dev/)** / [GitHub](https://github.com/ripienaar/free-for-dev)
|
||||
* [Useful Tools](https://trolologuy.github.io/useful-tools/) / [GitHub](https://github.com/trolologuy/useful-tools)
|
||||
* [Best-Websites](https://github.com/sdmg15/Best-websites-a-programmer-should-visit)
|
||||
* [Tiny Helpers](https://tiny-helpers.dev/) / [GitHub](https://github.com/stefanjudis/tiny-helpers)
|
||||
* [Tiny Tools](https://tinytools.directory/)
|
||||
* [Free For Life](https://free.hrsn.dev/) / [GitHub](https://github.com/wdhdev/free-for-life/)
|
||||
* [WebdevHome](https://webdevhome.github.io/)
|
||||
* [Free Developer Stuff](https://freestuff.dev/)
|
||||
* [Addy](https://toolkit.addy.codes/)
|
||||
* [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
|
||||
|
|
@ -106,8 +105,8 @@ ## ▷ Online Toolkits
|
|||
* [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/)
|
||||
|
|
@ -258,7 +257,6 @@ ## ▷ GitHub Tools
|
|||
* [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
|
||||
|
|
@ -311,7 +309,6 @@ ## ▷ Docker Tools
|
|||
* [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
|
||||
|
|
@ -347,11 +344,11 @@ ## ▷ API Tools
|
|||
* 🌐 **[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
|
||||
* 🌐 **[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
|
||||
|
|
@ -381,7 +378,7 @@ ## ▷ Machine Learning
|
|||
* 🌐 **[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/)**, [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](http://playground.tensorflow.org/)** - Neural Networks Playground
|
||||
* ⭐ **[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
|
||||
|
|
@ -465,7 +462,7 @@ # ► IDEs / Code Editors
|
|||
* 🌐 **[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/)**
|
||||
* ⭐ **[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 / [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)
|
||||
|
|
@ -554,7 +551,7 @@ ## ▷ Coding Tools
|
|||
* [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://beauty.codes/) or [Chalk](https://chalk.ist/) - Code Screenshot Tools
|
||||
* [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)
|
||||
|
|
@ -584,8 +581,8 @@ ## ▷ Vim / Neovim Tools
|
|||
* [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
|
||||
|
|
@ -618,7 +615,7 @@ ## ▷ **[Coding AIs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.2
|
|||
# ► 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/)
|
||||
|
|
@ -723,7 +720,6 @@ ## ▷ JavaScript
|
|||
* ↪️ **[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
|
||||
|
|
@ -743,6 +739,7 @@ ## ▷ React
|
|||
* [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
|
||||
|
|
@ -791,7 +788,7 @@ # ► Web Dev Tools
|
|||
* [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)
|
||||
* [cURL](https://curl.se/) or [xh](https://github.com/ducaale/xh) - HTTP Clients / Transfer Data with URLs / [Converter](https://curlconverter.com/) / [IP Lookup](http://ifconfig.me/) / [Recipes](https://catonmat.net/cookbooks/curl)
|
||||
* [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
|
||||
|
|
@ -1026,43 +1023,44 @@ ## ▷ SVG Tools
|
|||
|
||||
# ► 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
|
||||
* [OONI](https://ooni.org/) - Check Site Location Availability
|
||||
* [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), [is-a.dev](https://www.is-a.dev/), [JS.ORG](https://js.org/), [TheDev](https://thedev.id/) or [GetFreeDomain](https://www.getfreedomain.name/) - Subdomains
|
||||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1123,7 +1121,7 @@ ## ▷ Static Page Hosting
|
|||
* [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
|
||||
|
|
@ -1212,7 +1210,7 @@ ## ▷ Web Security
|
|||
* [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
|
||||
|
||||
***
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ # ► Download Sites
|
|||
* [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
|
||||
* [1DDL](https://1ddl.org/) - Audio / Books / Comics / Magazines
|
||||
|
|
@ -61,7 +61,6 @@ ## ▷ Search Sites
|
|||
***
|
||||
|
||||
* ⭐ **[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/)**
|
||||
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1)
|
||||
* [Linktury](https://www.ddlspot.com/)
|
||||
|
|
@ -99,7 +98,7 @@ # ► Software Sites
|
|||
|
||||
* 🌐 **[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/)** / [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)
|
||||
|
|
@ -108,6 +107,7 @@ # ► Software Sites
|
|||
* ⭐ **[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
|
||||
|
|
@ -119,7 +119,7 @@ # ► Software Sites
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -134,7 +134,7 @@ ## ▷ FOSS Sites
|
|||
* [Awesome CLI Apps](https://github.com/toolleeo/awesome-cli-apps-in-a-csv) or [CLI Club](https://cli.club/) - FOSS CLI Apps / Tools
|
||||
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page) - FOSS Wikis
|
||||
* [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories) - FOSS Wikis
|
||||
* [Is It Really FOSS](https://isitreallyfoss.com/projects/) - Determine if Software is FOSS / [Source Code](https://codeberg.org/danb/isitreallyfoss)
|
||||
* [Is It Really FOSS](https://isitreallyfoss.com/) - Determine if Software is FOSS / [Source Code](https://codeberg.org/danb/isitreallyfoss)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -152,7 +152,7 @@ ## ▷ Freeware Sites
|
|||
* [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
|
||||
|
|
@ -186,10 +186,9 @@ ## ▷ IRC Tools
|
|||
|
||||
# ► 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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -203,7 +202,6 @@ ## ▷ Indexers
|
|||
* [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/)
|
||||
|
|
@ -221,10 +219,8 @@ ## ▷ Providers
|
|||
|
||||
* 🌐 **[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)
|
||||
|
||||
***
|
||||
|
|
@ -235,16 +231,14 @@ ## ▷ Downloaders
|
|||
* ⭐ **[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 / Leeches
|
||||
|
||||
* 🌐 **[Debrid Services Comparison](https://debridcompare.xyz)** / [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
|
||||
* ⭐ **[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 @@ # ► Documentaries
|
|||
* ⭐ **[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 @@ ## ▷ Streaming
|
|||
* ⭐ **[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,10 +70,10 @@ ## ▷ Downloading
|
|||
* 🌐 **[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
|
||||
* ⭐ **[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/) - Courses
|
||||
* [FreeEducationWeb](https://freeeducationweb.com/latest-posts/) - Courses
|
||||
* [OneHack](https://onehack.us/) - Courses / [Telegram](https://t.me/Official_OneHack)
|
||||
* [technet24](https://technet24.ir/category/videos) - Courses
|
||||
* [AfraTafreeh](https://afratafreeh.com/) - Courses
|
||||
|
|
@ -125,12 +126,11 @@ # ► Learning Sites
|
|||
|
||||
## ▷ 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/) / [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
|
||||
* [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
|
||||
|
|
@ -212,6 +212,7 @@ ## ▷ Philosophy
|
|||
* ⭐ **[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
|
||||
|
|
@ -261,7 +262,7 @@ ## ▷ Music
|
|||
* [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)
|
||||
|
||||
|
|
@ -285,7 +286,7 @@ ## ▷ Art / Editing
|
|||
* [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
|
||||
|
|
@ -321,10 +322,10 @@ ## ▷ Geography / Sociology
|
|||
* ↪️ **[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
|
||||
|
|
@ -482,10 +483,12 @@ ## ▷ Engineering
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -498,7 +501,7 @@ ## ▷ Chemistry
|
|||
* ⭐ **[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
|
||||
|
|
@ -592,7 +595,7 @@ ## ▷ Med School
|
|||
* [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
|
||||
|
|
@ -624,7 +627,7 @@ # ► Space
|
|||
|
||||
* ⭐ **[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
|
||||
|
|
@ -639,7 +642,7 @@ # ► Space
|
|||
* [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
|
||||
|
||||
|
|
@ -688,17 +691,18 @@ ## ▷ Spacecraft
|
|||
|
||||
* ⭐ **[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
|
||||
* [Spaceflight Archive](https://spaceflight-archive.com/) - Rocket Launch History / Visualizations / Stats
|
||||
* [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)
|
||||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -767,7 +771,7 @@ ## ▷ Language Exchange
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -897,7 +901,7 @@ ## ▷ South Asian
|
|||
## ▷ 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
|
||||
|
|
@ -906,11 +910,13 @@ ## ▷ Sign Languages
|
|||
* [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)
|
||||
|
|
@ -930,7 +936,7 @@ ## ▷ Rubiks Cube
|
|||
* [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) - 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
|
||||
|
|
@ -953,6 +959,7 @@ ## ▷ Chess
|
|||
* [Chess Tempo](https://chesstempo.com/) - Chess Practice
|
||||
* [Lucas Chess](https://lucaschess.pythonanywhere.com/) - Chess Practice
|
||||
* [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
|
||||
|
|
@ -972,7 +979,7 @@ ## ▷ Dungeons & Dragons
|
|||
|
||||
* ↪️ **[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
|
||||
|
|
@ -1039,7 +1046,7 @@ # ► Developer Learning
|
|||
* [The Linux Kernel](https://www.kernel.org/doc/html/latest/) - Linux Kernel Development Guides / [Archives](https://kernel.org/)
|
||||
* [Workbench](https://apps.gnome.org/Workbench) - Learn / Experiment with Gnome / [GitHub](https://github.com/workbenchdev/Workbench)
|
||||
* [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
|
||||
|
|
@ -1141,7 +1148,7 @@ ## ▷ Computer Science
|
|||
* ⭐ **[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
|
||||
|
|
@ -1200,7 +1207,6 @@ ## ▷ Data Structures
|
|||
* [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
|
||||
|
|
@ -1228,7 +1234,7 @@ ## ▷ UI / UX
|
|||
* [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
|
||||
|
|
@ -1254,6 +1260,7 @@ ## ▷ Cybersecurity
|
|||
* [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
|
||||
|
|
@ -1336,7 +1343,7 @@ ## ▷ JEE / NEET
|
|||
* ⭐ **[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)
|
||||
|
|
@ -1389,7 +1396,7 @@ ## ▷ Study / Research
|
|||
* ⭐ **[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
|
||||
* [StudyCraft](https://studycraft.dev/) - Flashcards / Markdown Notes / PDF Reader / [GitHub](https://github.com/rodmarkun/StudyCraft)
|
||||
* [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
|
||||
* [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
|
||||
|
|
@ -1417,7 +1424,6 @@ ## ▷ Study / Research
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1428,7 +1434,6 @@ ## ▷ Calculators
|
|||
* ⭐ **[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
|
||||
|
|
@ -1499,10 +1504,10 @@ ## ▷ Wikipedia Tools
|
|||
* [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
|
||||
* [WikiNearby](https://wikinearby.toolforge.org/) - Location Search
|
||||
* [EntiTree](https://www.entitree.com/) - WikiData Visualization Tool / [GitHub](https://github.com/codeledge/entitree)
|
||||
* [Wiki Timeline](https://wiki-timeline.com/) - Create Timelines from Wiki Articles
|
||||
* [Wiki Timeline](https://wiki-timeline.com/) - Create Timelines from Wiki Articles
|
||||
|
|
@ -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/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -40,7 +28,7 @@ ## ▷ Download Managers
|
|||
* ⭐ **[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://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) / [2](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)
|
||||
* ⭐ **[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)
|
||||
* [FDM](https://www.freedownloadmanager.org/) - Download Manager / [YTDL Addon](https://github.com/meowcateatrat/elephant)
|
||||
|
|
@ -94,15 +82,15 @@ ## ▷ File Converters
|
|||
|
||||
## ▷ File Managers
|
||||
|
||||
* ⭐ **[Files](https://files.community/)** - Customizable File Manager / Use Classic Installer / [Discord](https://discord.gg/files)
|
||||
* ⭐ **[Directory Opus](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites)** (search) - Windows File Manager
|
||||
* [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross-Platform File Managers
|
||||
* [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,11 +103,8 @@ ## ▷ File Managers
|
|||
## ▷ File Searching
|
||||
|
||||
* ⭐ **[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/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.io/) or [Orange](https://0-range.github.io/) - Cross-Platform Search Engines
|
||||
|
||||
* [Recoll](https://www.recoll.org/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [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
|
||||
* [fd](https://github.com/sharkdp/fd) - User Friendly "find" Alternative
|
||||
|
|
@ -130,10 +115,11 @@ ## ▷ File Searching
|
|||
## ▷ 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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -178,6 +164,24 @@ ## ▷ File Recovery
|
|||
|
||||
***
|
||||
|
||||
## ▷ 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
|
||||
|
|
@ -205,7 +209,6 @@ ## ▷ Data Automation
|
|||
# ► 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
|
||||
|
|
@ -224,6 +227,7 @@ ## ▷ Online PDF Toolkits
|
|||
* [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)
|
||||
|
|
@ -232,13 +236,13 @@ ## ▷ Online PDF Toolkits
|
|||
|
||||
## ▷ Offline PDF Toolkits
|
||||
|
||||
* ⭐ **[PDF24](https://www.pdf24.org/)**
|
||||
* [BentoPDF](https://bentopdf.com/) / [GitHub](https://github.com/alam00000/bentopdf)
|
||||
* [PDF4QT](https://jakubmelka.github.io/) / [GitHub](https://github.com/JakubMelka/PDF4QT)
|
||||
* [Foxit](https://www.foxit.com/pdf-reader/) / [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/)
|
||||
* [PDF Arranger](https://github.com/pdfarranger/pdfarranger)
|
||||
* [Stirling-PDF](https://www.stirlingpdf.com/) - Signup Required / [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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -263,6 +267,7 @@ # ► File Transfer
|
|||
* [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
|
||||
|
|
@ -273,6 +278,7 @@ # ► File Transfer
|
|||
* [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/)
|
||||
|
||||
***
|
||||
|
|
@ -300,7 +306,7 @@ # ► 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/)
|
||||
|
|
@ -308,7 +314,9 @@ # ► File Hosts
|
|||
* [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)
|
||||
|
|
@ -316,6 +324,7 @@ # ► File Hosts
|
|||
* [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 / 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
|
||||
|
|
@ -336,7 +345,6 @@ # ► File Hosts
|
|||
* [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
|
||||
|
|
@ -344,7 +352,6 @@ # ► File Hosts
|
|||
* [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
|
||||
|
|
@ -377,7 +384,7 @@ ## ▷ Cloud Storage
|
|||
***
|
||||
|
||||
* 🌐 **[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
|
||||
|
|
@ -404,7 +411,7 @@ ## ▷ Cloud Storage
|
|||
## ▷ 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
|
||||
|
|
@ -430,7 +437,6 @@ ## ▷ Google Drive Tools
|
|||
* [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
|
||||
|
||||
|
|
@ -441,4 +447,4 @@ ## ▷ MEGA Tools
|
|||
* ⭐ **[Megabasterd](https://github.com/tonikelope/megabasterd)** - Download Quota Bypass / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#megabasterd-note)
|
||||
* ⭐ **[Mega Account Generators](https://rentry.co/FMHYB64#mega-gen)** - Account Gen / Unlimited Upload Size / [Fix](https://rentry.co/mega_account_generator)
|
||||
* [MEGA Desktop](https://mega.io/desktop) - Official GUI App / [GitHub](https://github.com/meganz/MEGAsync)
|
||||
* [MEGA CMD](https://mega.io/cmd) - Official CLI App / [GitHub](https://github.com/meganz/MEGAcmd)
|
||||
* [MEGA CMD](https://mega.io/cmd) - Official CLI App / [GitHub](https://github.com/meganz/MEGAcmd)
|
||||
|
|
@ -19,6 +19,7 @@ # ► Gaming Tools
|
|||
* [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
|
||||
|
|
@ -37,6 +38,7 @@ # ► Gaming Tools
|
|||
* [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
|
||||
* [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)
|
||||
|
|
@ -55,6 +57,7 @@ ## ▷ Game Launchers
|
|||
* [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)
|
||||
|
||||
***
|
||||
|
|
@ -65,10 +68,10 @@ ## ▷ Optimization Tools
|
|||
* ⭐ **[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)** - 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://fmhy.net/gaming#download-games)** (search), **[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
|
||||
|
|
@ -101,8 +104,9 @@ ## ▷ Controller Tools
|
|||
* [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)
|
||||
|
|
@ -206,7 +210,7 @@ ## ▷ Git Gud
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -253,6 +257,7 @@ # ► Tracking / Databases
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -280,6 +285,7 @@ # ► Steam / Epic
|
|||
* [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
|
||||
|
|
@ -311,14 +317,13 @@ ## ▷ Client Tools
|
|||
## ▷ 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) / [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
|
||||
|
||||
***
|
||||
|
|
@ -363,7 +368,6 @@ # ► Multiplayer Tools
|
|||
## ▷ 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
|
||||
|
|
@ -392,7 +396,7 @@ ## ▷ Multiplayer Mods
|
|||
* [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)
|
||||
|
|
@ -422,7 +426,6 @@ ## ▷ Multiplayer Servers
|
|||
* [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)
|
||||
|
|
@ -469,7 +472,7 @@ ## ▷ Switch Homebrew
|
|||
* ⭐ **[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
|
||||
|
|
@ -567,7 +570,7 @@ # ► Minecraft Tools
|
|||
* ⭐ **[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
|
||||
* [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
|
||||
|
|
@ -616,18 +619,19 @@ ## ▷ Hosting Tools
|
|||
## ▷ Launchers
|
||||
|
||||
* ⭐ **[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/)** or [Technic Launcher](https://www.technicpack.net/) - Modpack Launchers
|
||||
* ⭐ **[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
|
||||
* [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/)
|
||||
|
||||
***
|
||||
|
|
@ -644,7 +648,7 @@ ## ▷ Mods / Data Packs
|
|||
* [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
|
||||
|
|
@ -665,8 +669,9 @@ ## ▷ Mods / Data Packs
|
|||
## ▷ 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)
|
||||
|
|
@ -683,15 +688,16 @@ ## ▷ Technical Tools
|
|||
|
||||
* 🌐 **[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
|
||||
|
||||
|
|
@ -699,34 +705,34 @@ ## ▷ Technical Tools
|
|||
|
||||
## ▷ 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
|
||||
|
||||
* ⭐ **[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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -788,10 +794,10 @@ ## ▷ Pokemon Tools
|
|||
* 🌐 **[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/) or [Pokémon Database](https://pokemondb.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
|
||||
|
|
@ -834,11 +840,10 @@ ## ▷ GTA Tools
|
|||
* 🌐 **[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
|
||||
|
|
@ -909,17 +914,16 @@ ## ▷ Geometry Dash Tools
|
|||
|
||||
## ▷ Roblox Tools
|
||||
|
||||
* ⭐ **[Rolimon's](https://www.rolimons.com/games)**, [Rotrends](https://rotrends.com/) or [RoMonitor Stats](https://romonitorstats.com/) - Roblox Analytics / Stats
|
||||
* ⭐ **[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
|
||||
* [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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -961,6 +965,7 @@ ## ▷ Gacha Tools
|
|||
## ▷ Tabletop Tools
|
||||
|
||||
* 🌐 **[Awesome TTRPGs](https://github.com/Zireael07/awesome-tabletop-rpgs)** - Online TTRPGs & Resources
|
||||
* ↪️ **[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
|
||||
|
|
@ -977,8 +982,9 @@ ## ▷ Tabletop Tools
|
|||
|
||||
## ▷ 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
|
||||
|
|
|
|||
|
|
@ -15,30 +15,31 @@ # ► Download Games
|
|||
* ⭐ **[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)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[AnkerGames](https://ankergames.net/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/Anker_Games_/) / [Discord](https://discord.gg/nnMnGzDbwg)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[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/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
|
||||
* [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
|
||||
* [scene cat](https://rentry.co/FMHYB64#scene-cat) - Download / [Discord](https://discord.gg/wXdNEhf73x)
|
||||
* [SteamGG](https://steamgg.net/) - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/OfficialSteamGG/) / [Discord](https://discord.gg/Rw6AT3hZZE)
|
||||
* [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
|
||||
|
|
@ -59,10 +60,11 @@ ## ▷ Game Repacks
|
|||
* ⭐ **[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)
|
||||
* [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
|
||||
|
|
@ -89,6 +91,7 @@ # ► Special Interest
|
|||
* [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)
|
||||
|
|
@ -165,6 +168,7 @@ ## ▷ Decomps / Ports
|
|||
* 🌐 **[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)
|
||||
|
|
@ -246,14 +250,14 @@ ## ▷ Emulators
|
|||
* 🌐 **[Multi System Emulators](https://emulation.gametechwiki.com/index.php/Multi-system_emulators)** / [Frontends](https://emulation.gametechwiki.com/index.php/Frontends) - Emulators with Multiple Consoles
|
||||
* 🌐 **[RedSquirrel Project List](https://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://emulation.gametechwiki.com/)** - Search for "Emulator Files"
|
||||
* ⭐ **[RetroAchievements](https://retroachievements.org/)** - Achievements for Emulators / [DAT Files](https://rentry.co/FMHYB64#ra-dat)
|
||||
* ⭐ **[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
|
||||
|
|
@ -293,7 +297,7 @@ ## ▷ ROM Sites
|
|||
|
||||
* 🌐 **[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/)** - ROMs / [Discord](https://discord.gg/3NyMZKxhUA)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[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)
|
||||
|
|
@ -301,18 +305,19 @@ ## ▷ ROM Sites
|
|||
* ⭐ **[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
|
||||
|
|
@ -326,7 +331,6 @@ ## ▷ ROM Sites
|
|||
* [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
|
||||
|
|
@ -336,9 +340,8 @@ ## ▷ ROM Sites
|
|||
* [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)
|
||||
|
|
@ -352,7 +355,6 @@ ## ▷ Nintendo ROMs
|
|||
* ⭐ **[hShop](https://hshop.erista.me/)** / [Discord](https://discord.gg/dYKm279) or [3DS ROMS](https://3dsroms.org) - ROMs / 3DS
|
||||
* ⭐ **[WiiUDownloader](https://github.com/Xpl0itU/WiiUDownloader)**, [WiiUSBHelper](https://github.com/FailedShack/USBHelperInstaller/releases) or [JNUSTool](https://gbatemp.net/threads/jnustool-nusgrabber-and-cdecrypt-combined.413179/) - ROMs / Wii U
|
||||
* ⭐ **[NesFiles](https://www.nesfiles.com/)** or [FC Gallery](https://fcpic.nesbbs.com/index_en.html) - ROMs / NES / Famicom
|
||||
* [ROM Heaven](https://romheaven.com/switch) - ROMs / Switch
|
||||
* [taodung](https://taodung.com/) - ROMs / 3DS / Switch
|
||||
* [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROMs / NES / Game Boy
|
||||
* [64DD.org](https://64dd.org/) - ROMs / 64DD
|
||||
|
|
@ -363,6 +365,7 @@ ## ▷ Nintendo ROMs
|
|||
* [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
|
||||
|
|
@ -432,7 +435,7 @@ ## ▷ 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](http://github.com/BdR76/lcdgame.js) - Retro LCD Game Emulators
|
||||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -450,7 +453,7 @@ # ► Puzzle Games
|
|||
* [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
|
||||
|
|
@ -494,7 +497,6 @@ ## ▷ Minesweeper
|
|||
## ▷ 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
|
||||
|
|
@ -514,6 +516,7 @@ ## ▷ Word Games
|
|||
* [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
|
||||
|
|
@ -538,7 +541,7 @@ # ► Tabletop Games
|
|||
|
||||
* 🌐 **[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
|
||||
|
|
@ -620,9 +623,9 @@ # ► Browser Games
|
|||
* [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
|
||||
|
|
@ -678,15 +681,12 @@ ## ▷ Multi-Game Sites
|
|||
* [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
|
||||
|
|
@ -699,7 +699,7 @@ ## ▷ Multi-Game Sites
|
|||
* [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
|
||||
|
|
@ -712,23 +712,24 @@ ## ▷ Party / Multiplayer
|
|||
* ⭐ **[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
|
||||
* [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
|
||||
|
|
@ -758,7 +759,7 @@ ## ▷ Text Adventures
|
|||
* [IFArchive](https://www.ifarchive.org/) - Text Adventures
|
||||
* [Web Adventures](https://www.web-adventures.org/) - Text Adventures
|
||||
* [Seedship](https://philome.la/johnayliff/seedship/play/index.html) - Text Adventures
|
||||
* [TextAventures](http://textadventures.co.uk/) - User-Made Text Adventures
|
||||
* [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
|
||||
|
|
@ -770,14 +771,13 @@ ## ▷ Shooter
|
|||
* ⭐ **[Play-CS](https://play-cs.com/)** - Browser Counter-Strike 1.6
|
||||
* ⭐ **[NZP](https://nzp.gay/)** - Browser COD Zombies
|
||||
* ⭐ **[Krunker.io](https://krunker.io/)**, [2](https://browserfps.com/) - PvP FPS
|
||||
* [OpenArena Live](https://kosmi.io/openarena) 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
|
||||
|
|
@ -805,7 +805,8 @@ ## ▷ Platformer
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -855,7 +856,7 @@ ## ▷ Strategy
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -897,7 +898,7 @@ ## ▷ Trivia
|
|||
* [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/) (signup), [Musicle](https://musicle.app/), [Bandle](https://bandle.app/), [Spotle](https://spotle.io/) or [Lofidle](https://lofidle.com/) - Music / Song Guessing Games
|
||||
|
|
@ -926,9 +927,10 @@ ## ▷ Trivia
|
|||
|
||||
## ▷ Tetris
|
||||
|
||||
* ⭐ **[TETR.IO](https://tetr.io/)** - Multiplayer Browser 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/)
|
||||
* ⭐ **[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
|
||||
|
|
@ -940,7 +942,7 @@ ## ▷ 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 @@ # ► Image Editing
|
|||
* [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
|
||||
|
||||
|
|
@ -26,14 +26,12 @@ ## ▷ Editing Software
|
|||
* ↪️ **[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)
|
||||
* ⭐ **[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
|
||||
* [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 @@ ## ▷ Online Editors
|
|||
* [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)
|
||||
|
|
@ -118,7 +116,7 @@ ## ▷ Image Effects
|
|||
* [Text-Image](https://www.text-image.com/) - Text Image Generator
|
||||
* [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
|
||||
|
|
@ -192,9 +190,9 @@ ## ▷ Pixel Art
|
|||
* [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
|
||||
|
|
@ -280,7 +278,7 @@ ## ▷ Icons / Avatars
|
|||
* [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
|
||||
|
|
@ -324,9 +322,9 @@ ## ▷ Free Assets
|
|||
|
||||
* [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/)
|
||||
|
|
@ -439,20 +437,20 @@ ## ▷ Stock Images
|
|||
* [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 / [Patreon Redirect](https://greasyfork.org/en/scripts/553616) / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* ⭐ **[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
|
||||
|
|
@ -483,7 +481,7 @@ ## ▷ Art / Illustrations
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -542,7 +540,7 @@ # ► 3D Models
|
|||
## ▷ 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
|
||||
|
|
@ -550,7 +548,7 @@ ## ▷ 3D Modeling Apps
|
|||
* [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
|
||||
|
|
@ -564,8 +562,6 @@ ## ▷ 3D Modeling Apps
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -576,7 +572,16 @@ ## ▷ 3D Modeling Tools
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -603,17 +608,9 @@ # ► Image Tools
|
|||
* ⭐ **[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
|
||||
|
|
@ -631,8 +628,6 @@ # ► Image Tools
|
|||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -797,7 +792,7 @@ ## ▷ Online Galleries
|
|||
|
||||
## ▷ 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)
|
||||
|
|
@ -841,7 +836,7 @@ ## ▷ Screenshot Tools
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -873,11 +868,35 @@ ## ▷ Color Pickers
|
|||
|
||||
***
|
||||
|
||||
## ▷ 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
|
||||
* [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
|
||||
|
|
@ -886,12 +905,4 @@ ## ▷ Photo Forensics
|
|||
* [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)
|
||||
* [Base64 Image](https://www.base64-image.de/) - Encode / Decode Images
|
||||
|
|
@ -7,10 +7,10 @@
|
|||
name: freemediaheckyeah
|
||||
tagline: The largest collection of free stuff on the internet!
|
||||
announcement:
|
||||
title: Nov 2025 Updates 🍂
|
||||
link: /posts/Nov-2025
|
||||
title: Dec 2025 Updates ❄️
|
||||
link: /posts/dec-2025
|
||||
image:
|
||||
src: /test.png
|
||||
src: /xmasfmhy.png
|
||||
alt: FMHY Icon
|
||||
actions:
|
||||
- theme: brand
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
const resetKawaii = () => {
|
||||
const images = document.querySelectorAll('.VPImage.image-src')
|
||||
images.forEach((img) => {
|
||||
img.src = '/test.png'
|
||||
img.src = '/xmasfmhy.png'
|
||||
})
|
||||
}
|
||||
if (kawaii === 'true') {
|
||||
|
|
@ -217,4 +217,4 @@
|
|||
heroImage.addEventListener('click', handleClick);
|
||||
}
|
||||
})
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -17,8 +17,9 @@ # ► Internet Tools
|
|||
|
||||
## ▷ 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 @@ ## ▷ Network Tools
|
|||
* [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
|
||||
|
|
@ -89,10 +89,12 @@ ## ▷ Captcha Tools
|
|||
|
||||
## ▷ 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/), [otr.to](https://otr.to/) / [GitHub](https://github.com/jermainee/otr.to), [Blarb](https://blarb.net/), [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
|
||||
|
|
@ -181,7 +183,7 @@ # ► Search Tools
|
|||
* ↪️ **[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
|
||||
|
|
@ -234,7 +236,6 @@ ## ▷ Search Engines
|
|||
* [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)
|
||||
|
|
@ -410,7 +411,6 @@ # ► Email Tools
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -476,7 +476,7 @@ ## ▷ Temp Mail
|
|||
* [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
|
||||
|
|
@ -487,10 +487,10 @@ ## ▷ Temp Mail
|
|||
|
||||
## ▷ 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 / 10 Alias Limit / [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,7 +541,7 @@ # ► 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/)
|
||||
* ⭐ **[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/)
|
||||
|
|
@ -567,7 +567,7 @@ # ► Browser Startpages
|
|||
|
||||
## ▷ Custom New Tab Pages
|
||||
|
||||
* ⭐ **[Anori](https://anori.app/)**
|
||||
* ⭐ **[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/)
|
||||
|
|
@ -635,9 +635,8 @@ ## ▷ Browser Extensions
|
|||
* ⭐ **[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
|
||||
|
|
@ -645,6 +644,7 @@ ## ▷ Browser Extensions
|
|||
* [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
|
||||
|
|
@ -660,7 +660,7 @@ ## ▷ Browser Extensions
|
|||
* [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
|
||||
|
|
@ -670,7 +670,7 @@ ## ▷ Browser Extensions
|
|||
* [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
|
||||
|
|
@ -692,9 +692,9 @@ ## ▷ Browser Extensions
|
|||
* [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
|
||||
|
|
@ -709,10 +709,10 @@ ## ▷ Firefox Extensions
|
|||
* 🌐 **[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, Copy or 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
|
||||
|
|
@ -742,9 +742,10 @@ ## ▷ Chrome Extensions
|
|||
* ⭐ **[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
|
||||
|
|
@ -767,7 +768,6 @@ ## ▷ Chrome Extensions
|
|||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -868,7 +868,6 @@ ## ▷ Web Scraping / Crawling
|
|||
# ► 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
|
||||
|
|
|
|||
|
|
@ -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 @@ # ► Linux Guides
|
|||
|
||||
## ▷ 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 Communities
|
|||
|
||||
# ► 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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -79,7 +82,7 @@ # ► Linux Apps
|
|||
* ⭐ **[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), [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) or [Apache Guacamole](https://guacamole.apache.org/) - Remote Desktop Clients
|
||||
* ⭐ **[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 Apps
|
|||
* [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 @@ ## ▷ Software Sites
|
|||
* [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,11 +197,9 @@ ## ▷ Linux Video
|
|||
* [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) / [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) / [Discord](https://discord.com/invite/Z87Nh7c4Ac)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Anime Torrent Streaming App
|
||||
* [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
|
||||
|
|
@ -221,22 +223,22 @@ ## ▷ Linux Audio
|
|||
* [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
|
||||
* [Sonosano](https://github.com/KRSHH/Sonosano) - Self-Hosted P2P Lossless Music Player
|
||||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -272,23 +274,21 @@ ## ▷ Linux Gaming
|
|||
* ⭐ **[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
|
||||
|
|
@ -298,7 +298,7 @@ ## ▷ Linux Gaming
|
|||
* [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
|
||||
* [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
|
||||
|
|
@ -345,7 +345,7 @@ ## ▷ Linux Internet
|
|||
* ⭐ **[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
|
||||
|
|
@ -376,7 +376,6 @@ ## ▷ Linux Internet
|
|||
* [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
|
||||
|
||||
|
|
@ -384,17 +383,16 @@ ## ▷ Linux Internet
|
|||
|
||||
## ▷ 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
|
||||
* [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
|
||||
* [EasyPanel](https://easypanel.io/) - Server Control Panel
|
||||
* [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
|
||||
|
|
@ -403,7 +401,6 @@ ## ▷ Server / Selfhosting
|
|||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -412,7 +409,9 @@ ## ▷ File Tools
|
|||
|
||||
* 🌐 **[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
|
||||
* ⭐ **[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
|
||||
|
|
@ -490,7 +489,7 @@ ## ▷ Raspberry Pi
|
|||
# ► 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)
|
||||
|
||||
***
|
||||
|
|
@ -502,7 +501,7 @@ ## ▷ Desktop Environment
|
|||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -515,7 +514,7 @@ ## ▷ Window Managers
|
|||
* 🌐 **[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
|
||||
|
|
@ -560,6 +559,8 @@ # ► Mac Apps
|
|||
* [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
|
||||
|
|
@ -570,7 +571,7 @@ # ► Mac Apps
|
|||
* [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
|
||||
|
|
@ -586,8 +587,6 @@ # ► Mac Apps
|
|||
* [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
|
||||
|
|
@ -620,7 +619,6 @@ ## ▷ Software Sites
|
|||
* [AppsTorrent](https://appstorrent.ru/)
|
||||
* [nMac](https://nmac.to/)
|
||||
* [MacBB](https://macbb.org/)
|
||||
* [Mac App Store](https://macappstre.com/)
|
||||
* [Antibiotic's](https://t.me/AntibioticsChannel)
|
||||
* [Haxmac](https://haxmac.cc/)
|
||||
* [Mac Torrents](https://www.torrentmac.net/)
|
||||
|
|
@ -637,9 +635,8 @@ ## ▷ Software Sites
|
|||
## ▷ Mac Video
|
||||
|
||||
* [IINA](https://iina.io/) - Video Player
|
||||
* [Hayase](https://hayase.watch/) - Anime Torrent Streaming App / [Extensions](https://rentry.co/FMHYB64#hayase) / [Discord](https://discord.com/invite/Z87Nh7c4Ac)
|
||||
* [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)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Anime Torrent Streaming
|
||||
* [Yattee](https://github.com/yattee/yattee) - YouTube Player
|
||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
||||
* [Cap](https://cap.so/) / [GitHub](https://github.com/CapSoftware/Cap), [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders
|
||||
|
|
@ -738,7 +735,7 @@ ## ▷ Mac Internet
|
|||
* [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)
|
||||
|
||||
***
|
||||
|
|
@ -769,7 +766,6 @@ ## ▷ System Tools
|
|||
* [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
|
||||
|
|
@ -785,7 +781,7 @@ ## ▷ System Tools
|
|||
* [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
|
||||
|
|
@ -827,4 +823,4 @@ # ► Unix-Like
|
|||
* [GameShell](https://github.com/phyver/GameShell) - Unix Shell Learning Game
|
||||
* [Modern Unix](https://github.com/ibraheemdev/modern-unix) - Unix Shells
|
||||
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
|
||||
* [Plan9Port](https://9fans.github.io/plan9port/) - Unix Port for Plan9 Libraries + Programs / [GitHub](https://github.com/9fans/plan9port)
|
||||
* [Plan9Port](https://9fans.github.io/plan9port/) - Unix Port for Plan9 Libraries + Programs / [GitHub](https://github.com/9fans/plan9port)
|
||||
|
|
|
|||
79
docs/misc.md
79
docs/misc.md
|
|
@ -120,6 +120,7 @@ ## ▷ Assistance / Charity
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -167,6 +168,7 @@ ## ▷ Recipes
|
|||
* [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
|
||||
|
|
@ -179,7 +181,7 @@ ## ▷ Recipes
|
|||
## ▷ 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)
|
||||
|
|
@ -187,7 +189,6 @@ ## ▷ Drinks
|
|||
* [/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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -277,7 +278,7 @@ ## ▷ Flights
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[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)
|
||||
|
|
@ -323,11 +324,11 @@ # ► Maps
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -422,7 +423,7 @@ ## ▷ Geology Maps
|
|||
## ▷ 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
|
||||
|
|
@ -495,13 +496,12 @@ # ► News
|
|||
* [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
|
||||
|
|
@ -607,7 +607,7 @@ ## ▷ Physical Health
|
|||
* ⭐ **[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/)
|
||||
|
|
@ -628,7 +628,7 @@ ## ▷ Workout / Exercise
|
|||
* 🌐 **[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
|
||||
|
|
@ -716,8 +716,8 @@ ## ▷ Porn Quitting
|
|||
* [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://haramblur.com/) / [2](https://linktr.ee/haramblur) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
|
||||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -750,7 +750,6 @@ # ► Career
|
|||
* [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
|
||||
|
|
@ -772,7 +771,7 @@ ## ▷ Job Search / Application
|
|||
* ⭐ **[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
|
||||
|
|
@ -786,7 +785,7 @@ ## ▷ 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
|
||||
|
|
@ -826,7 +825,7 @@ ## ▷ Remote Jobs
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -930,7 +929,7 @@ ## ▷ Crypto / Bitcoin
|
|||
***
|
||||
|
||||
* 🌐 **[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
|
||||
|
|
@ -938,7 +937,6 @@ ## ▷ Crypto / Bitcoin
|
|||
* [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
|
||||
* [CoinGlass](http://www.coinglass.com) - Crypto Derivatives Data
|
||||
* [Dora](https://www.ondora.xyz/) - Cross-Chain Search Engine
|
||||
* [DefiLlama](https://defillama.com/) - TVL Aggregator
|
||||
* [WalletExplorer](https://www.walletexplorer.com/) - Bitcoin Block Explorers
|
||||
* [Cryptopedia](https://www.gemini.com/cryptopedia) or [Crypto Canon](https://a16zcrypto.com/posts/article/crypto-readings-resources/) - Crypto Learning Resources
|
||||
|
|
@ -954,10 +952,11 @@ # ► Shopping
|
|||
* 🌐 **[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
|
||||
* [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
|
||||
|
|
@ -977,17 +976,18 @@ # ► Shopping
|
|||
* [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)**
|
||||
* ⭐ **[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/), [Antutu](https://www.antutu.com/en/ranking/rank1.htm) 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
|
||||
|
|
@ -1002,6 +1002,7 @@ ## ▷ Electronics
|
|||
* [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
|
||||
|
|
@ -1021,6 +1022,7 @@ ## ▷ Electronics
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1103,11 +1105,10 @@ # ► Useful Sites
|
|||
* [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/)
|
||||
* [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)
|
||||
|
|
@ -1135,7 +1136,7 @@ ## ▷ Multi Tool Sites
|
|||
* 🌐 **[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
|
||||
|
|
@ -1184,13 +1185,14 @@ ## ▷ Productivity Tools
|
|||
* [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
|
||||
|
|
@ -1220,7 +1222,6 @@ ## ▷ Chat / Forums
|
|||
* ⭐ **[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
|
||||
|
|
@ -1228,8 +1229,8 @@ ## ▷ Chat / Forums
|
|||
* [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
|
||||
|
|
@ -1249,7 +1250,7 @@ ## ▷ Image / Video
|
|||
|
||||
* ↪️ **[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)**
|
||||
|
|
@ -1266,7 +1267,7 @@ ## ▷ Image / Video
|
|||
* [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
|
||||
|
|
@ -1295,7 +1296,6 @@ ## ▷ Image / Video
|
|||
* [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
|
||||
|
|
@ -1323,7 +1323,6 @@ ## ▷ Image / Video
|
|||
* [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/)
|
||||
|
|
@ -1396,7 +1395,7 @@ ## ▷ Interactive
|
|||
* [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
|
||||
|
|
@ -1425,6 +1424,7 @@ ## ▷ Interactive
|
|||
* [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
|
||||
|
|
@ -1437,14 +1437,15 @@ ## ▷ Interesting
|
|||
|
||||
* 🌐 **[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
|
||||
|
|
@ -1488,7 +1489,7 @@ ## ▷ Interesting
|
|||
* [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
|
||||
|
|
|
|||
111
docs/mobile.md
111
docs/mobile.md
|
|
@ -80,7 +80,7 @@ ## ▷ Untouched APKs
|
|||
* ↪️ **[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/)
|
||||
|
|
@ -103,7 +103,7 @@ ## ▷ App Launchers
|
|||
* [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)
|
||||
|
|
@ -159,15 +159,15 @@ ## ▷ Social Media Apps
|
|||
* ↪️ **[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
|
||||
* [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
|
||||
|
|
@ -203,7 +203,8 @@ # ► Android Device
|
|||
* 🌐 **[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
|
||||
|
|
@ -310,7 +311,7 @@ ## ▷ Number / SMS
|
|||
## ▷ 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
|
||||
|
|
@ -321,7 +322,6 @@ ## ▷ Root / Flash
|
|||
* [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
|
||||
|
||||
|
|
@ -339,7 +339,7 @@ ## ▷ Operating Systems
|
|||
# ► 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
|
||||
|
|
@ -363,7 +363,6 @@ ## ▷ Image Tools
|
|||
* [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
|
||||
|
|
@ -381,7 +380,7 @@ ## ▷ Image Galleries
|
|||
|
||||
* ⭐ **[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
|
||||
|
|
@ -400,6 +399,7 @@ ## ▷ Android Utilities
|
|||
* ⭐ **[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
|
||||
* [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
|
||||
|
|
@ -410,6 +410,7 @@ ## ▷ Android Utilities
|
|||
* [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)
|
||||
|
|
@ -419,7 +420,6 @@ ## ▷ Android Utilities
|
|||
* [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
|
||||
|
|
@ -483,7 +483,7 @@ ## ▷ Android Internet
|
|||
* ⭐ **[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)** / [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
|
||||
* [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
|
||||
|
|
@ -494,7 +494,7 @@ ## ▷ Android Internet
|
|||
* [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
|
||||
|
|
@ -510,12 +510,13 @@ ## ▷ Android Browsers
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[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
|
||||
|
|
@ -526,15 +527,13 @@ ## ▷ 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)** / [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://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_untouched_apks) (search) - Advanced Root File Explorer / Manager / [Themes](https://play.google.com/store/apps/details?id=de.dertyp7214.mixplorerthemecreator) / [Note](https://pastebin.com/fM9XzMkd)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[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) or [Prism File Explorer](https://github.com/Raival-e/Prism-File-Explorer) - 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
|
||||
|
|
@ -562,12 +561,14 @@ ## ▷ Android Text Tools
|
|||
* [Markor](https://fossdroid.com/a/markor.html) - Text Editor with Markdown 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
|
||||
* [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
|
||||
|
|
@ -621,10 +622,10 @@ ## ▷ Date & Time
|
|||
## ▷ 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
|
||||
|
|
@ -677,22 +678,22 @@ ## ▷ Weather Apps
|
|||
|
||||
***
|
||||
|
||||
# ► 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)
|
||||
* 🌐 **[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)
|
||||
* [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
|
||||
* [GameHub Lite](https://github.com/gamehublite/gamehub-oss) - Windows Game Emulator on Android / [Discord](https://discord.gg/CYhCzApXav)
|
||||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -707,6 +708,7 @@ ## ▷ Android on Windows
|
|||
* ⭐ **[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)
|
||||
|
|
@ -749,19 +751,18 @@ # ► Android Reading
|
|||
* ↪️ **[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 / [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)** - Ebook Reader
|
||||
* ⭐ **[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
|
||||
|
|
@ -779,11 +780,10 @@ # ► Android Reading
|
|||
|
||||
## ▷ 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)
|
||||
* ⭐ **[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 / [Discord](https://discord.com/invite/EjfBuYahsP)
|
||||
* [Kotatsu](https://kotatsu.app/) - Manga Reader / [Nightly](https://github.com/KotatsuApp/Kotatsu-nightly) / [Telegram](https://t.me/kotatsuapp) / [Discord](https://discord.gg/NNJ5RgVBC5)
|
||||
* [LNReader](https://github.com/LNReader/lnreader) - Manga Reader / [Discord](https://discord.com/invite/QdcWN4MD63)
|
||||
* [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
|
||||
|
|
@ -796,13 +796,14 @@ # ► Android Audio
|
|||
* ↪️ **[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://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) 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://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://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
|
||||
|
|
@ -810,9 +811,8 @@ # ► Android Audio
|
|||
* [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
|
||||
|
|
@ -832,7 +832,7 @@ ## ▷ Android Audio Players
|
|||
* ⭐ **[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)
|
||||
|
|
@ -856,10 +856,11 @@ ## ▷ YouTube Music
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[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
|
||||
* ⭐ **[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
|
||||
|
|
@ -914,7 +915,7 @@ # ► Android Streaming
|
|||
* ⭐ **[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://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://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
|
||||
|
|
@ -946,9 +947,10 @@ ## ▷ Android Video Players
|
|||
* ⭐ **[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)
|
||||
* [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)
|
||||
|
|
@ -967,9 +969,8 @@ ## ▷ Android Anime
|
|||
* [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)
|
||||
* [AnimeTV](https://discord.gg/WmHr7TG6)
|
||||
* [Hayase](https://hayase.watch/) - Torrent Streaming App / [Extensions](https://rentry.co/FMHYB64#hayase) / [Discord](https://discord.com/invite/Z87Nh7c4Ac)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Torrent Streaming App
|
||||
* [AnimeTV](https://discord.com/invite/zD6URsM4ms)
|
||||
* [Hayase](https://hayase.watch/) - Torrent Streaming App / [Extensions](https://rentry.co/FMHYB64#hayase)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1084,12 +1085,12 @@ ## ▷ iOS Jailbreaking
|
|||
* ⭐ **[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/)
|
||||
|
|
@ -1099,13 +1100,11 @@ ## ▷ iOS Jailbreaking
|
|||
* [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)
|
||||
|
|
@ -1135,7 +1134,7 @@ ## ▷ iOS Jailbreaking
|
|||
## ▷ 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
|
||||
|
|
@ -1222,7 +1221,7 @@ ## ▷ Telegram Channels
|
|||
|
||||
## ▷ 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,7 +1246,7 @@ # ► iOS Audio
|
|||
* ⭐ **[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), [FooBar](https://apps.apple.com/us/app/foobar2000/id1072807669) or [Melodista](https://apps.apple.com/app/id1293175325) - Audio Players
|
||||
* [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
|
||||
|
|
@ -1332,16 +1331,16 @@ # ► iOS Reading
|
|||
* [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
|
||||
* [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 / [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 @@ ## ▷ Downloading / تحميل
|
|||
* [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 @@ ## ▷ Streaming / البث
|
|||
* ⭐ **[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
|
||||
|
|
@ -53,7 +52,7 @@ ## ▷ Streaming / البث
|
|||
* [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
|
||||
|
|
@ -234,6 +233,8 @@ ## ▷ Torrenting / 下载种子
|
|||
* [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
|
||||
|
|
@ -271,7 +272,6 @@ ## ▷ Streaming / 流媒体
|
|||
* [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
|
||||
* [Myself-BBS](https://myself-bbs.com/) - Anime / Sub / 1080p
|
||||
* [AGE Anime](https://www.agedm.tv/) - Anime / Sub / 1080p
|
||||
|
|
@ -301,6 +301,7 @@ ## ▷ Reading / 阅读
|
|||
* [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
|
||||
|
|
@ -347,7 +348,6 @@ ## ▷ Manga
|
|||
* [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
|
||||
|
|
@ -359,7 +359,6 @@ ## ▷ Manga
|
|||
* [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
|
||||
|
|
@ -388,8 +387,12 @@ ## ▷ Streaming / Streamování
|
|||
* [Bombuj](https://bombuj.si/) - Movies / TV
|
||||
* [Sledujteto](https://www.sledujteto.cz/) - Movies / TV / Anime / 1080p
|
||||
* [videoserialy](https://videoserialy.to/) - Movies / TV / Anime / 1080p
|
||||
* [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
|
||||
* [Dupe](https://dupe.cz/) - Movies / TV / Anime / Concerts / 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://sledujserialy.io/) - Movies / TV / Anime / 1080p
|
||||
* [najserialy](https://www.najserialy.io/) - Movies / TV / Anime / 1080p
|
||||
|
|
@ -457,11 +460,11 @@ # ► French / Français
|
|||
* [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
|
||||
|
|
@ -478,7 +481,7 @@ ## ▷ Torrenting
|
|||
|
||||
## ▷ 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://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)
|
||||
|
|
@ -493,6 +496,7 @@ ## ▷ Streaming
|
|||
* [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
|
||||
|
|
@ -575,18 +579,20 @@ ## ▷ Streaming
|
|||
* ⭐ **[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)
|
||||
* [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
|
||||
|
|
@ -597,7 +603,6 @@ ## ▷ Streaming
|
|||
* [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
|
||||
|
|
@ -637,8 +642,8 @@ ## ▷ Streaming
|
|||
* [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
|
||||
|
|
@ -692,7 +697,6 @@ ## ▷ Streaming / Streamelés
|
|||
|
||||
## ▷ 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
|
||||
|
||||
|
|
@ -708,19 +712,19 @@ # ► Indian Languages
|
|||
|
||||
## ▷ Downloading
|
||||
|
||||
* ⭐ **[VegaMovies](https://vegamovies.menu/)**, [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.kids/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K
|
||||
* ⭐ **[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
|
||||
* ⭐ **[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
|
||||
* [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)
|
||||
|
|
@ -734,13 +738,13 @@ ## ▷ Downloading
|
|||
* [Cinemalux](https://cinemalux.zip/) - Movies / TV / 1080p
|
||||
* [ProtonMovies](https://m2.protonmovies.top/) - Movies / TV
|
||||
* [isaiDub](https://rentry.co/FMHYB64#isaidub) - Movies / TV / 720p
|
||||
* [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)
|
||||
* [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
|
||||
|
|
@ -757,21 +761,22 @@ ## ▷ Torrenting
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)** - Hindi-Dub Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[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.gg/bosskingdom-comeback-1090560322760347649)
|
||||
* ⭐ **[ToonStream](https://toonstream.love/)** - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[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
|
||||
* [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
|
||||
|
|
@ -784,6 +789,7 @@ ## ▷ Streaming
|
|||
* [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
|
||||
|
|
@ -831,7 +837,7 @@ ## ▷ Streaming / Menyiarkan
|
|||
* ⭐ **[sontolfilm](https://sontolmovie.xyz/)** - Movies / TV / Anime
|
||||
* [ngefilm21](https://www.ngefilm21.pw/) - Movies / TV / Anime
|
||||
* [baladfilm](https://tv4.baladfilm.asia/) - Movies / TV
|
||||
* [idlixku](https://tv9.idlixku.com/) - 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
|
||||
|
|
@ -841,7 +847,6 @@ ## ▷ Streaming / Menyiarkan
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -862,6 +867,7 @@ ## ▷ 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
|
||||
|
|
@ -945,7 +951,7 @@ ## ▷ Reading / 読書
|
|||
|
||||
* 🌐 **[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
|
||||
|
|
@ -961,12 +967,16 @@ ## ▷ Reading / 読書
|
|||
* [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
|
||||
|
|
@ -1126,6 +1136,7 @@ ## ▷ Streaming
|
|||
* [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
|
||||
|
||||
|
|
@ -1180,10 +1191,9 @@ ## ▷ Torrenting
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[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
|
||||
|
|
@ -1305,6 +1315,7 @@ ## ▷ Streaming
|
|||
* [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
|
||||
|
|
@ -1354,7 +1365,7 @@ ## ▷ Downloading / Скачивание
|
|||
* [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
|
||||
|
|
@ -1401,10 +1412,10 @@ ## ▷ Streaming / Стриминг
|
|||
* [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.com/) - Russian Turkish TV Streaming
|
||||
* [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)
|
||||
|
|
@ -1431,7 +1442,7 @@ ## ▷ Streaming / Стриминг
|
|||
* [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
|
||||
|
|
@ -1442,6 +1453,7 @@ ## ▷ Streaming / Стриминг
|
|||
* [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
|
||||
|
|
@ -1474,6 +1486,7 @@ ## ▷ Reading / Чтение
|
|||
* [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
|
||||
|
|
@ -1486,6 +1499,7 @@ ## ▷ Reading / Чтение
|
|||
* [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
|
||||
|
|
@ -1515,6 +1529,7 @@ ## ▷ Torrenting
|
|||
## ▷ Reading
|
||||
|
||||
* [pdfknihy](https://pdfknihy.sk/zadarmo/) - Books
|
||||
* [eknizky](https://eknizky.sk/) - Books / Signup Required for Downloads
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1587,7 +1602,6 @@ ## ▷ Torrenting / Torrentear
|
|||
* [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
|
||||
|
|
@ -1601,9 +1615,10 @@ ## ▷ Torrenting / Torrentear
|
|||
|
||||
## ▷ Streaming / Streamear
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[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
|
||||
|
|
@ -1624,11 +1639,10 @@ ## ▷ Streaming / Streamear
|
|||
* [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
|
||||
* [Listas-IPTV](https://rentry.co/fmhyb64#iptv-playlists) - Spanish IPTV Resources
|
||||
* [Cinecalidad.gg](https://vwv.cinecalidad.gg/) - Movies / TV / Animation / Latino
|
||||
* [Cinecalidad.tel](https://w1.cinecalidad.tel/) - Movies / Latino
|
||||
* [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
|
||||
|
|
@ -1671,12 +1685,12 @@ ## ▷ Streaming / Streamear
|
|||
* [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 Anime Streaming
|
||||
* [Streamflix](https://github.com/streamflix-reborn/streamflix) - Android Streaming App
|
||||
|
||||
## ▷ Reading / Leer
|
||||
|
||||
|
|
@ -1705,7 +1719,6 @@ ## ▷ Reading / Leer
|
|||
* [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
|
||||
|
|
@ -1759,28 +1772,31 @@ ## ▷ Downloading / İndirme
|
|||
## ▷ Streaming / İzleme
|
||||
|
||||
* ⭐ **[Hdfilmcehennemi](https://www.hdfilmcehennemi.la/)** - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[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
|
||||
* ⭐ **[Yabancıdizi](https://yabancidizi.so/)** - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[FullHDFilmizlesene](https://www.fullhdfilmizlesene.tv/)**, [2](https://www.fullhdfilmizlesene.com) - Movies / Sub / Dub / 1080p
|
||||
* ⭐ **[Film Makinesi](https://filmmakinesi.sh/)** - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[Dizi Film Botu](https://t.me/Difix9Bot)** - TV / Sub / Dub / Anime / 1080p / 2K / 4K / Movies / TV / Documentaries
|
||||
* [Film Makinesi](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
|
||||
* [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
|
||||
* [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)
|
||||
|
|
@ -1854,7 +1870,7 @@ ## ▷ Torrenting / Tải tệp bằng torrent
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -1910,12 +1926,11 @@ # ► Other Languages
|
|||
* [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 AAndroid pp
|
||||
* [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
|
||||
|
|
@ -1936,6 +1951,7 @@ # ► Other Languages
|
|||
* [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
|
||||
|
|
|
|||
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/)
|
||||
|
|
@ -112,12 +112,70 @@ #### Step 6: Deploy
|
|||
|
||||
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
|
||||
|
||||
|
|
@ -130,4 +188,8 @@ #### Troubleshooting
|
|||
|
||||
# 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)
|
||||
|
|
@ -22,7 +22,7 @@ # 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. Thank you to @Zenith for making 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.
|
||||
|
||||
|
|
|
|||
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.
|
||||
|
|
@ -21,6 +21,7 @@ # ► Adblocking
|
|||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -91,11 +92,11 @@ # ► Antivirus / Anti-Malware
|
|||
|
||||
* 🌐 **[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://claraiscute.neocities.org/Guides/sandboxie-guide/), [2](https://claraiscute.pages.dev/Guides/sandboxie-guide/) / [GitHub](https://github.com/sandboxie-plus/Sandboxie)
|
||||
|
|
@ -142,6 +143,7 @@ # ► Privacy
|
|||
* ↪️ **[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
|
||||
|
|
@ -187,7 +189,6 @@ ## ▷ Privacy Indexes
|
|||
|
||||
## ▷ Network Security
|
||||
|
||||
* ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall / [Discord](https://discord.com/invite/safing) / [GitHub](https://github.com/safing)
|
||||
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P) / [GitLab](https://i2pgit.org/)
|
||||
* [Simplewall](https://github.com/henrypp/simplewall) - Firewall
|
||||
* [Fort](https://github.com/tnodir/fort) - Firewall
|
||||
|
|
@ -224,7 +225,6 @@ # ► Web Privacy
|
|||
* [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://github.com/jvoisin/mat2) - Remove Metadata from Files / [Web Version](https://0xacab.org/jvoisin/mat2-web)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -320,7 +320,6 @@ ## ▷ Data Breach Monitoring
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -359,7 +358,7 @@ # ► VPN
|
|||
|
||||
* 🌐 **[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/)
|
||||
* ⭐ **[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 / [GitHub](https://github.com/riseupnet)
|
||||
|
|
@ -378,6 +377,7 @@ ## ▷ VPN Server
|
|||
* [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
|
||||
* [IPsec VPN](https://github.com/hwdsl2/setup-ipsec-vpn) - VPN Server
|
||||
|
|
@ -420,7 +420,7 @@ # ► Proxy
|
|||
## ▷ Proxy Servers
|
||||
|
||||
* ⭐ **[Censordex](https://censordex.fr.to/)** - Server Setup
|
||||
* ⭐ **[3X-UI](https://github.com/MHSanaei/3x-ui)** - Proxy Panel / [Telegram](https://t.me/XrayUI) / **[Warning](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.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)
|
||||
|
|
@ -438,13 +438,14 @@ ## ▷ Proxy Servers
|
|||
|
||||
## ▷ Proxy Clients
|
||||
|
||||
* ⭐ **[v2rayN](https://github.com/2dust/v2rayN)** - Proxy Client / Windows, Mac, Linux
|
||||
* ⭐ **[v2rayN](https://github.com/2dust/v2rayN)** - Proxy Client / Windows, Mac, Linux
|
||||
* ⭐ **[NekoBoxForAndroid](https://matsuridayo.github.io/)** - Proxy Client / Android / [GitHub](https://github.com/MatsuriDayo/NekoBoxForAndroid/)
|
||||
* [v2rayNG](https://github.com/2dust/v2rayNG) - Proxy Client / Android
|
||||
* [Hiddify](https://hiddify.com/) - Proxy Client / All Platforms / [Telegram](https://t.me/hiddify) / [GitHub](https://github.com/hiddify)
|
||||
* [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
|
||||
|
|
@ -481,7 +482,7 @@ ## ▷ Proxy Sites
|
|||
* [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://studying-central.global.ssl.fastly.net/), [3](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/xmasfmhy.png
Normal file
BIN
docs/public/xmasfmhy.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 574 KiB |
141
docs/reading.md
141
docs/reading.md
|
|
@ -13,21 +13,21 @@ # ► Ebooks
|
|||
* ⭐ **[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)
|
||||
* [WeLib](https://welib.org/) - Anna's Archive Mirror / [Unofficial](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#welib-note)
|
||||
* [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
|
||||
* [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
|
||||
* [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
|
||||
|
|
@ -62,6 +62,7 @@ ## ▷ Public Domain
|
|||
* [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
|
||||
|
|
@ -81,7 +82,7 @@ ## ▷ PDF Search
|
|||
* [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
|
||||
|
|
@ -106,7 +107,7 @@ ## ▷ Ebook Readers
|
|||
* 🌐 **[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
|
||||
* ⭐ **[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 / Windows, Mac, Linux / [GitHub](https://github.com/koodo-reader/koodo-reader)
|
||||
* ⭐ **[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,7 @@ ## ▷ Ebook Readers
|
|||
* [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)
|
||||
|
|
@ -139,6 +141,7 @@ ## ▷ Ebook Readers
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -189,8 +192,7 @@ # ► Special Interest
|
|||
* [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
|
||||
|
|
@ -203,46 +205,39 @@ # ► Special Interest
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -263,6 +258,7 @@ ## ▷ Fanfiction / 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
|
||||
|
|
@ -336,6 +332,7 @@ ## ▷ Esoteric / Cultural
|
|||
* [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
|
||||
|
|
@ -398,15 +395,16 @@ ## ▷ Streaming
|
|||
* ⭐ **[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
|
||||
|
||||
***
|
||||
|
|
@ -414,10 +412,10 @@ ## ▷ Streaming
|
|||
## ▷ Audiobook Tools
|
||||
|
||||
* [AudiobookCovers](https://audiobookcovers.com/) - Download Audiobook Covers
|
||||
* [Audiblez](https://github.com/santinic/audiblez), [Ebook2Audiobook](https://github.com/DrewThomasson/ebook2audiobook) / [2](https://huggingface.co/spaces/drewThomasson/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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -425,7 +423,7 @@ # ► Visual Media
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -437,12 +435,11 @@ ## ▷ Comics
|
|||
* [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
|
||||
|
|
@ -468,6 +465,7 @@ ## ▷ Manga
|
|||
* ⭐ **[Weeb Central](https://weebcentral.com/)**
|
||||
* ⭐ **[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)
|
||||
|
|
@ -499,7 +497,6 @@ ## ▷ Manga
|
|||
* [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
|
||||
|
|
@ -543,18 +540,17 @@ ## ▷ Magazines
|
|||
|
||||
# ► 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/)
|
||||
|
|
@ -582,14 +578,7 @@ # ► Educational Books
|
|||
* [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
|
||||
|
|
@ -605,6 +594,21 @@ # ► Educational 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
|
||||
|
||||
***
|
||||
|
||||
## ▷ STEM Resources
|
||||
|
||||
* 🌐 **[Awesome AI](https://github.com/owainlewis/awesome-artificial-intelligence#free-content)** - Artificial Intelligence Books
|
||||
|
|
@ -628,7 +632,6 @@ ## ▷ STEM Resources
|
|||
## ▷ 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
|
||||
|
|
@ -648,6 +651,7 @@ ## ▷ History Books
|
|||
* [Jewish Virtual Library](https://www.jewishvirtuallibrary.org/) - Encyclopedia of Jewish / Israeli History
|
||||
* [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
|
||||
|
|
@ -667,7 +671,6 @@ ## ▷ Quotes / Poetry
|
|||
* [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/)
|
||||
|
|
@ -858,10 +861,12 @@ # ► Tracking / Database
|
|||
* ⭐ **[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
|
||||
|
|
@ -870,12 +875,11 @@ # ► Tracking / Database
|
|||
* [Literal](https://literal.club/) - Social Book Tracking Platform
|
||||
* [BookWyrm](https://joinbookwyrm.com/) - Book Tracking Platform / [Official Instance](https://bookwyrm.social/)
|
||||
* [MangaUpdates](https://www.mangaupdates.com/) - Manga Tracking
|
||||
* [RanobeDB](https://ranobedb.org/) - Light Novel Tracking
|
||||
* [Hardcover](https://hardcover.app/) - Tracking / Reviews / Recommendations
|
||||
* [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
|
||||
|
||||
***
|
||||
|
|
@ -894,7 +898,6 @@ ## ▷ Curated Recommendations
|
|||
* [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
|
||||
|
|
@ -921,7 +924,7 @@ ## ▷ Curated 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
|
||||
|
|
@ -945,7 +948,7 @@ # ► Helpful Sites / Apps
|
|||
* [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
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ # ► Social Media Tools
|
|||
* ⭐ **[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
|
||||
|
|
@ -46,7 +47,6 @@ # ► Discord Tools
|
|||
* [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/) - 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
|
||||
* [Discord-Api](https://discord.gg/discord-api) - Discord API Chat
|
||||
|
|
@ -70,9 +70,10 @@ ## ▷ Discord Clients
|
|||
* [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
|
||||
|
|
@ -147,7 +148,6 @@ ## ▷ Server / Bot Indexes
|
|||
* [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 @@ ## ▷ Server / Bot Indexes
|
|||
# ► 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 Tools
|
|||
* [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
|
||||
|
|
@ -207,11 +206,11 @@ ## ▷ Reddit Alternatives
|
|||
## ▷ Reddit Search
|
||||
|
||||
* [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
|
||||
|
|
@ -237,7 +236,7 @@ ## ▷ Subreddit Discovery
|
|||
|
||||
# ► 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
|
||||
|
|
@ -269,7 +268,7 @@ ## ▷ Telegram File Tools
|
|||
* [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
|
||||
|
|
@ -281,7 +280,6 @@ ## ▷ Telegram File Tools
|
|||
## ▷ 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
|
||||
|
|
@ -351,7 +349,7 @@ ## ▷ Players / Frontends
|
|||
|
||||
* ↪️ **[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 [Materialious](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
|
||||
|
|
@ -359,8 +357,9 @@ ## ▷ Players / Frontends
|
|||
* [YouTube Clone KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
|
||||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -606,9 +605,8 @@ ## ▷ Viewers / Downloaders
|
|||
|
||||
# ► 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
|
||||
|
|
@ -687,7 +685,6 @@ ## ▷ Lemmy Tools
|
|||
* ⭐ **[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
|
||||
|
||||
***
|
||||
|
|
@ -717,6 +714,7 @@ # ► 4chan Tools
|
|||
|
||||
* ⭐ **[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
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ ## App / Site Mockups
|
|||
* [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)
|
||||
[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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -52,7 +52,7 @@ ## Data Visualization Tools
|
|||
* [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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -87,6 +87,19 @@ ## DNS Filters
|
|||
|
||||
***
|
||||
|
||||
## 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.
|
||||
|
|
@ -263,7 +276,7 @@ ### Letterboxd Tools
|
|||
|
||||
### 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
|
||||
|
||||
|
|
@ -278,10 +291,10 @@ ### Mod / Resource Pack Indexes
|
|||
* ⭐ **[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)
|
||||
|
||||
|
|
@ -339,7 +352,7 @@ ## PNG Images / Clipart
|
|||
|
||||
## Poll Sites
|
||||
|
||||
[PollCode](https://pollcode.com/), [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
|
||||
|
||||
|
|
@ -370,16 +383,22 @@ ## Proxy Lists
|
|||
|
||||
***
|
||||
|
||||
## 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/)
|
||||
|
||||
***
|
||||
|
||||
## SMS Verification Sites
|
||||
|
||||
* ⭐ **[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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -404,7 +423,7 @@ ## SVG Icons
|
|||
* [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/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -412,7 +431,7 @@ ## Tab Managers
|
|||
|
||||
* ⭐ **[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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -453,4 +472,4 @@ ## Udemy Coupons
|
|||
* [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 @@ # ► System Tools
|
|||
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch), [CPU Fetch](https://github.com/Dr-Noob/cpufetch), [Glow](https://github.com/turkaysoftware/glow) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Info Tools
|
||||
* ⭐ **[SuperF4](https://stefansundin.github.io/superf4/)** or [FKill](https://github.com/sindresorhus/fkill-cli) - Process Killers
|
||||
* ⭐ **[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 @@ # ► System Tools
|
|||
* [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 Tools
|
|||
## ▷ 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 @@ ## ▷ Task Automation
|
|||
* [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 @@ ## ▷ Remote Desktop
|
|||
* ⭐ **[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
|
||||
|
|
@ -134,7 +134,6 @@ ## ▷ Remote Desktop
|
|||
* [Screensy](https://screensy.marijn.it/) - Web-Based / [GitHub](https://github.com/screensy/screensy)
|
||||
* [Screego](https://app.screego.net/) - Web-Based / [GitHub](https://github.com/screego/server/)
|
||||
* [Screen-Sharing](https://share-your-screen.vercel.app/) - Web-Based / [GitHub](https://github.com/tonghohin/screen-sharing)
|
||||
* [Kasm](https://kasm.com/) - Container Streaming Platform / Resource Intensive / [Guide](https://2305878273.7844380499.cfd/Server/Kasm/) / [GitHub](https://github.com/kasmtech/KasmVNC)
|
||||
* [TigerVNC](https://tigervnc.org/) - VNC Client / [GitHub](https://github.com/TigerVNC/tigervnc)
|
||||
* [TightVNC](https://www.tightvnc.com/) - VNC Client
|
||||
* [noVNC](https://novnc.com/info.html) - JavaScript VNC Client / [GitHub](https://github.com/novnc/noVNC)
|
||||
|
|
@ -155,8 +154,10 @@ ## ▷ Clipboard Managers
|
|||
|
||||
## ▷ 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
|
||||
|
||||
|
|
@ -165,7 +166,7 @@ ## ▷ Window Managers
|
|||
## ▷ 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
|
||||
|
|
@ -250,7 +251,7 @@ ## ▷ Disk Tools
|
|||
|
||||
* 🌐 **[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://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
|
||||
|
|
@ -313,7 +314,7 @@ ## ▷ Mouse / Keyboard
|
|||
* [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
|
||||
|
|
@ -331,14 +332,14 @@ ## ▷ System Audio
|
|||
* [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
|
||||
|
|
@ -364,7 +365,6 @@ ## ▷ USB / Bootloaders
|
|||
## ▷ 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
|
||||
|
||||
***
|
||||
|
|
@ -393,10 +393,10 @@ ## ▷ Windows Repair
|
|||
# ► Customization
|
||||
|
||||
* 🌐 **[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/)** - Desktop Customization / [Discord](https://discord.com/invite/rainmeter)
|
||||
* ⭐ **[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
|
||||
|
|
@ -418,7 +418,7 @@ # ► Customization
|
|||
* [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
|
||||
|
|
@ -451,9 +451,10 @@ ## ▷ 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
|
||||
* [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
|
||||
|
|
@ -472,6 +473,5 @@ ## ▷ Wallpaper Tools
|
|||
* [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
|
||||
|
|
@ -29,26 +29,24 @@ # ► Text Tools
|
|||
|
||||
## ▷ 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 @@ ## ▷ Pastebins
|
|||
* [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 @@ ## ▷ Translators
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[Google Translate](https://translate.google.com/)** / [Extension](https://chromewebstore.google.com/detail/google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb)
|
||||
* ⭐ **[DeepL](https://www.deepl.com/translator)** - 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
|
||||
|
|
@ -132,15 +130,17 @@ ## ▷ Grammar Check
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[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) / [Features](https://rentry.co/FMHYB64#quill)
|
||||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -177,14 +177,12 @@ ## ▷ Typing Lessons
|
|||
* ⭐ **[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
|
||||
|
||||
|
|
@ -222,9 +220,9 @@ ## ▷ Note-Taking
|
|||
|
||||
* ↪️ **[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/)
|
||||
* ⭐ **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)
|
||||
|
|
@ -260,10 +258,10 @@ ## ▷ Note-Taking
|
|||
|
||||
## ▷ 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
|
||||
|
||||
|
|
@ -351,7 +349,7 @@ ## ▷ Text / Code Collaboration
|
|||
## ▷ 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
|
||||
|
|
@ -368,7 +366,6 @@ ## ▷ Spreadsheet Editors
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -380,7 +377,7 @@ ## ▷ Writing Tools
|
|||
* [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/) - Interactive Worldbuilding / Story Writing Tool / [Modules](https://gatewayforge.com/resources) / [Discord](https://discord.gg/c3PEQxxKfn)
|
||||
* [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)
|
||||
|
|
@ -427,7 +424,7 @@ ## ▷ ASCII Art
|
|||
* [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
|
||||
|
|
@ -459,8 +456,10 @@ ## ▷ Open Source / Freeware
|
|||
* [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
|
||||
|
|
@ -556,6 +555,7 @@ ## ▷ Unicode Text Generators
|
|||
* ⭐ **[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/)
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ # ► Torrent Sites
|
|||
* ⭐ **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://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
|
||||
|
|
@ -122,8 +122,8 @@ ## ▷ qBittorrent Tools
|
|||
|
||||
## ▷ Remote Torrenting
|
||||
|
||||
* ⭐ **[Seedr](https://www.seedr.cc/)** - 2GB / [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/ [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
|
||||
|
|
@ -144,6 +144,7 @@ # ► Private Trackers
|
|||
* [r/OpenSignups](https://www.reddit.com/r/OpenSignups/) or [r/OpenedSignups](https://www.reddit.com/r/OpenedSignups/) - Open Tracker Signup Subs
|
||||
* [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
|
||||
|
||||
|
|
@ -167,7 +168,7 @@ # ► Helpful Sites / Apps
|
|||
* [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
|
||||
* [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), [TorrentTools](https://github.com/fbdtemme/torrenttools) 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)
|
||||
|
|
@ -79,7 +79,6 @@ ### Torrent Sites / Clients
|
|||
### 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
|
||||
|
|
@ -93,10 +92,11 @@ ### Software / Apps
|
|||
* 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.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
|
||||
|
||||
***
|
||||
|
||||
### [Fake Z-Lib Sites](https://www.reddit.com/r/zlibrary/wiki/index/scamsites/)
|
||||
|
||||
### [Fake Windows Activators](https://pastebin.com/gCmWs2GR)
|
||||
### [Fake Windows Activators](https://pastebin.com/gCmWs2GR)
|
||||
|
|
@ -70,6 +70,7 @@ ## ▷ Screen Recording
|
|||
* [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)
|
||||
|
|
@ -139,10 +140,10 @@ ## ▷ Live Streaming
|
|||
* 🌐 **[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
|
||||
* [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/Streamer.bot)
|
||||
* [TwitchChat](https://twitchat.fr/) - Live Stream Manager / [Discord](https://discord.com/invite/fmqD2xUYvP) / [GitHub](https://github.com/Durss/Twitchat)
|
||||
* [VDO Ninja](https://vdo.ninja/) - Live Stream Colab Tool
|
||||
* [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) - Live Stream Recorders / Windows, Mac, Linux
|
||||
|
|
@ -236,7 +237,7 @@ ## ▷ MPV Tools
|
|||
|
||||
* 🌐 **[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)
|
||||
|
|
@ -270,13 +271,14 @@ # ► Media Servers
|
|||
* ⭐ **[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 @@ # ► Media Servers
|
|||
* [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 @@ ## ▷ Jellyfin Tools
|
|||
* ⭐ **[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 @@ ## ▷ Kodi Tools
|
|||
* ⭐ **[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,7 +353,7 @@ # ► Video Download
|
|||
* ↪️ **[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)
|
||||
* ⭐ **[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)
|
||||
|
|
@ -382,9 +383,9 @@ # ► Video Editing
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -433,7 +434,7 @@ ## ▷ Online Editors
|
|||
## ▷ 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
|
||||
|
|
@ -468,7 +469,7 @@ ## ▷ Animation Tools
|
|||
* 🌐 **[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
|
||||
|
|
@ -486,7 +487,7 @@ ## ▷ Animation Tools
|
|||
* [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
|
||||
|
|
|
|||
216
docs/video.md
216
docs/video.md
|
|
@ -12,23 +12,25 @@ # ► Streaming Sites
|
|||
|
||||
* ⭐ **[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.tv/)**, [2](https://xprime.today/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/pDjg5ccSgg)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Flixer](https://flixer.sh)** / [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)
|
||||
* [FlickyStream](https://flickystream.ru/) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.com/invite/flickystream)
|
||||
* [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)
|
||||
* [Aether](https://aether.mom/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/MadMF7xb5q)
|
||||
* [Cinegram](https://cinegram.net/) - Movies / TV / Anime / Auto-Next
|
||||
* [SpenFlix](https://watch.spencerdevs.xyz/), [2](https://spenflix.ru/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||
* [FilmCave](https://filmcave.net/) - 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)
|
||||
* [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)
|
||||
* [StreamM4u](https://streamm4u.com.co/) - Movies / TV / Anime / [Clones](https://rentry.co/sflix#streamm4u-clones)
|
||||
* [BFLIX](https://bflix.sh/) - Movies / TV
|
||||
* [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 / Mostly 3rd Party Hosts / [Status](https://rentry.co/primewire)
|
||||
* [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
|
||||
|
|
@ -43,22 +45,25 @@ ## ▷ Stream Aggregators
|
|||
***
|
||||
|
||||
* ⭐ **[BEECH](https://www.beech.watch/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* ⭐ **[Cinezo](https://www.cinezo.net/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* ⭐ **[CinemaOS](https://cinemaos.live/)**, [2](https://cinemaos.tech/), [3](https://cinemaos.me/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/38yFnFCJnA)
|
||||
* ⭐ **[Filmex](https://filmex.to/)**, [2](https://fmovies4u.com/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.com/invite/WWrWnG8qmh)
|
||||
* ⭐ **[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)
|
||||
* [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://mapple.mov/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [Youflex](https://youflex.live/) - Movies / TV / Anime
|
||||
* [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/) - Movies / TV / Anime / [Discord](https://discord.com/invite/R7a6yWMmfK)
|
||||
* [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)
|
||||
* [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)
|
||||
* [Cinepeace](https://cinepeace.in/) - Movies / TV / Anime / [Discord](https://discord.gg/htmB2TbK)
|
||||
* [Flixvo](https://flixvo.live/), [2](https://flixvo.fun/) - Movies / TV / Anime
|
||||
|
|
@ -66,22 +71,24 @@ ## ▷ Stream Aggregators
|
|||
* [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)
|
||||
* [LunaStream](https://lunastream.fun/) - 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)
|
||||
* [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
|
||||
* [AuroraScreen](https://www.aurorascreen.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/kPUWwAQCzk)
|
||||
* [CineGo](https://cinego.co/) - Movies / TV
|
||||
* [PlayTorrio](https://playtorrio.pages.dev/) - Desktop App / Use Streaming Mode / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio)
|
||||
|
||||
|
||||
***
|
||||
|
||||
## ▷ Single Server
|
||||
|
|
@ -91,25 +98,24 @@ ## ▷ Single Server
|
|||
***
|
||||
|
||||
* ⭐ **[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
|
||||
|
|
@ -121,7 +127,7 @@ ## ▷ Free w/ Ads
|
|||
* 🌐 **[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
|
||||
|
|
@ -187,7 +193,7 @@ # ► Specialty Streaming
|
|||
* [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)
|
||||
|
|
@ -197,7 +203,7 @@ # ► Specialty Streaming
|
|||
* [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
|
||||
* [BMCC](https://www.youtube.com/@BMCC1967/) or [MovieCommentaries](https://www.youtube.com/@moviecommentaries) - Movie / TV Director Commentaries
|
||||
* [BonusDisk](https://www.youtube.com/@BonusDisk/) or [SpecialFeatureArchive](https://youtube.com/@specialfeaturesarchive) - DVD Extras / Special Features
|
||||
* [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
|
||||
|
||||
|
|
@ -206,32 +212,33 @@ # ► Specialty Streaming
|
|||
## ▷ 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/), [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/)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** or **[Kuroiru](https://kuroiru.co/)** - Multi-Site Anime Search
|
||||
* ⭐ **[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
|
||||
* [JustAnime](https://justanime.to/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/P3yqksmGun)
|
||||
* [TAnime](https://tanime.tv/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/R7a6yWMmfK)
|
||||
* [AnimeRealms](https://www.animerealms.org/) - Sub / Dub / [Discord](https://discord.gg/P3yqksmGun)
|
||||
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub
|
||||
* [Anime Nexus](https://anime.nexus/) - Sub / Dub / [Discord](https://discord.gg/AfMau96ppt)
|
||||
* [Anixl](https://anixl.to/) - Sub / Dub / [Discord](https://discord.gg/prmJz2av76)
|
||||
* [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)
|
||||
|
|
@ -246,7 +253,7 @@ ## ▷ Anime Streaming
|
|||
* [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
|
||||
* [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), [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), [PlayTorrio](https://playtorrio.pages.dev/) / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman707-ux/PlayTorrio) 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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -255,10 +262,10 @@ ## ▷ Cartoon Streaming
|
|||
* ⭐ **[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
|
||||
|
||||
|
|
@ -294,7 +301,7 @@ ## ▷ Drama Streaming
|
|||
|
||||
* 🌐 **[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)
|
||||
* ⭐ **[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
|
||||
|
|
@ -305,7 +312,6 @@ ## ▷ Drama Streaming
|
|||
* [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
|
||||
|
|
@ -320,7 +326,8 @@ ## ▷ Classics / Public Domain
|
|||
* [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
|
||||
|
|
@ -370,17 +377,16 @@ ## ▷ Live TV
|
|||
|
||||
* ⭐ **[tv.garden](https://tv.garden/)** - 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
|
||||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - 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/), - TV / [Mirrors](https://daddyny.com/)
|
||||
* ⭐ **[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](http://huhu.to/), [vavoo.to](http://vavoo.to/), [kool.to](http://kool.to/) or [oha.to](http://oha.to/) - TV / Sports / European
|
||||
* [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)
|
||||
* [LiveHDTV](https://www.livehdtv.com/) - TV
|
||||
* [Watchio](https://watchio.live/) - TV / Sports
|
||||
* [Globe TV](https://globetv.app/) - TV / Sports
|
||||
* [CXtv](https://www.cxtvlive.com/) - TV / Sports
|
||||
* [lmao.love](https://lmao.love/channels/) - TV / Sports
|
||||
|
|
@ -401,7 +407,7 @@ ## ▷ Live TV
|
|||
* [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
|
||||
* [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
|
||||
|
|
@ -416,27 +422,27 @@ ## ▷ 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
|
||||
* ⭐ **[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/)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[NTV](https://ntvstream.cx/)** - TV / Sports / Aggregator / [Telegram](https://t.me/ntvsteam) / [Discord](https://discord.gg/uY3ud5gcpW)
|
||||
* ⭐ **[FSTV](https://fstv.online/)**, [2](https://fstv.space/) / [Mirrors](https://gofstv.live/) / [Discord](https://discord.gg/j9EfEm4AMW)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[GoToStreamly](https://gotostreamly.sbs/)** or [SoccerStreamLinks](https://soccerstreamlinks.site/) - Stream Aggregator / [Discord](https://discord.gg/HwXeKNu8FU)
|
||||
* ⭐ **[StreamEast](https://streameast.ga/)**, [2](https://streameast.tw/), [3](https://streameast.ph/) / [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/)**
|
||||
* ⭐ **[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)
|
||||
* [Watch Footy](https://watchfooty.live/), [2](https://www.watchfooty.cc/), [3](https://www.watchfooty.vip/) - Stream Aggregator / [Discord](https://discord.gg/T38kUWZHtB) / [Mirrors](https://watchfty.win/)
|
||||
* [Streamex](http://streamex.cc/) or [CrackStreams](https://crackstreams.li/), [2](https://streameast.art/), [3](https://hesgoal.lol/) - Stream Aggregator / [Discord](https://discord.gg/G4HxTYejNT)
|
||||
* ⭐ **[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
|
||||
* [SportDB](https://sportdb.pro/) - Stream Aggregator
|
||||
* [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/)
|
||||
* [SportsBite](https://sportsbite.cc/) / [Status](https://allbite.xyz/) / [Telegram](https://t.me/+Zo7CoigxqRczMjRk) / [Discord](https://discord.gg/Qg7uRXWAhU)
|
||||
* [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)
|
||||
|
|
@ -445,11 +451,14 @@ ## ▷ Live Sports
|
|||
* [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.nu/)
|
||||
* [720pStream](https://720pstream.lc/)
|
||||
* [BuffStream](https://app.buffstream.io/)
|
||||
* [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
|
||||
|
|
@ -462,7 +471,7 @@ ## ▷ Live Sports
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -485,6 +494,7 @@ ## ▷ Sports Replays
|
|||
* [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
|
||||
|
|
@ -494,8 +504,6 @@ ## ▷ Sports Replays
|
|||
* [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
|
||||
|
|
@ -517,6 +525,7 @@ ## ▷ IPTV Tools
|
|||
* [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
|
||||
* [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
|
||||
|
|
@ -532,17 +541,16 @@ ## ▷ IPTV Tools
|
|||
|
||||
# ► Smart TV / Firestick
|
||||
|
||||
* 🌐 **[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://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search), [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
|
||||
|
|
@ -552,8 +560,8 @@ # ► Smart TV / Firestick
|
|||
|
||||
## ▷ 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
|
||||
|
|
@ -584,7 +592,11 @@ # ► Download Sites
|
|||
|
||||
* ↪️ **[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.menu/)**, [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)
|
||||
|
|
@ -592,25 +604,29 @@ # ► Download Sites
|
|||
* ⭐ **[Cinepeace](https://cinepeace.in/)** - Movies / TV / Anime / [Discord](https://discord.gg/htmB2TbK)
|
||||
* ⭐ **[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)
|
||||
* [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/) - 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)
|
||||
* [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 / 3D / Remuxes
|
||||
* [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.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 / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.gg/M7y867cg)
|
||||
* [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)
|
||||
|
|
@ -619,11 +635,9 @@ # ► Download Sites
|
|||
* [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/)
|
||||
* [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)
|
||||
* [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
|
||||
|
|
@ -636,9 +650,14 @@ # ► Download Sites
|
|||
* [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
|
||||
|
|
@ -648,29 +667,15 @@ # ► Download Sites
|
|||
* [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.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 / [Desktop App](https://playtorrio.pages.dev/) (unofficial) / [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)
|
||||
* [Vadapav](https://rentry.co/FMHYB64#vadapav) - Movies / TV
|
||||
* [isaiDub](https://rentry.co/FMHYB64#isaidub) - Movies / TV / 720p
|
||||
* [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)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -735,18 +740,18 @@ # ► Torrent Apps
|
|||
* [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)
|
||||
|
|
@ -766,7 +771,7 @@ # ► Torrent Sites
|
|||
|
||||
* ↪️ **[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
|
||||
|
|
@ -778,7 +783,7 @@ # ► Torrent Sites
|
|||
* [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
|
||||
|
|
@ -789,10 +794,10 @@ ## ▷ Anime Torrenting
|
|||
|
||||
* ⭐ **[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 / [Extensions](https://rentry.co/FMHYB64#hayase) / [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) - 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
|
||||
|
|
@ -831,9 +836,9 @@ # ► Tracking / Databases
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -844,6 +849,7 @@ ## ▷ Anime Tracking / Databases
|
|||
* [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
|
||||
|
|
@ -853,7 +859,7 @@ ## ▷ Anime Tracking / Databases
|
|||
## ▷ 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
|
||||
|
|
@ -970,14 +976,14 @@ # ► Helpful Sites / Tools
|
|||
* [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
|
||||
|
|
@ -986,7 +992,7 @@ # ► Helpful Sites / Tools
|
|||
* [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
|
||||
|
|
@ -999,4 +1005,4 @@ # ► Helpful Sites / Tools
|
|||
|
||||
***
|
||||
|
||||
## ▷ [Video Players / Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools)
|
||||
## ▷ [Video Players / Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools)
|
||||
BIN
package-lock.json
generated
BIN
package-lock.json
generated
Binary file not shown.
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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
BIN
pests-repellent/pnpm-lock.yaml
Normal file
BIN
pests-repellent/pnpm-lock.yaml
Normal file
Binary file not shown.
|
|
@ -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>
|
||||
"
|
||||
`);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
BIN
pnpm-lock.yaml
BIN
pnpm-lock.yaml
Binary file not shown.
Loading…
Reference in a new issue