Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27bec76f21 |
@@ -105,12 +105,6 @@ export default defineConfig({
|
|||||||
replacement: fileURLToPath(
|
replacement: fileURLToPath(
|
||||||
new URL('./theme/components/VPLocalSearchBox.vue', import.meta.url)
|
new URL('./theme/components/VPLocalSearchBox.vue', import.meta.url)
|
||||||
)
|
)
|
||||||
},
|
|
||||||
{
|
|
||||||
find: /^.*VPNav\.vue$/,
|
|
||||||
replacement: fileURLToPath(
|
|
||||||
new URL('./theme/components/VPNav.vue', import.meta.url)
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
#### ChatGPT Limits
|
#### ChatGPT Limits
|
||||||
|
|
||||||
GPT-5.2 Instant (no reasoning; 16K context) / 10 messages every 5 hours, then gpt-5-mini
|
* GPT-5.1-medium (1 Daily)
|
||||||
|
* GPT-5.1-chat (10 per 5 hours)
|
||||||
|
* GPT-5.1- mini (Unlimited)
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
This site uses credits ("magicubes") to generate images and videos, you get 100 daily. It costs 2 magicubes per image for Qwen, 1 for Z-Image, and 28 for Wan 2.2 14b I2V. Linking an Alibaba Cloud account (free, ignore the final part of account setup where it asks for payment info and link the account anyways) gets you 50 extra magicubes daily.
|
|
||||||
@@ -15,3 +15,6 @@ If you're hitting limits on the chat site:
|
|||||||
1. Slow down slightly (wait 3-5s between messages).
|
1. Slow down slightly (wait 3-5s between messages).
|
||||||
2. **Log in** at [enter.pollinations.ai](https://enter.pollinations.ai) to use your daily free credits.
|
2. **Log in** at [enter.pollinations.ai](https://enter.pollinations.ai) to use your daily free credits.
|
||||||
3. If you need massive throughput, use an API key (`sk_`) with purchased credits.
|
3. If you need massive throughput, use an API key (`sk_`) with purchased credits.
|
||||||
|
|
||||||
|
To use this site for image generation, scroll down to "Image Feed" and change it to "Try" from "Watch". Available models are flux (schnell), turbo (SDXL Turbo), and gptimage. For gptimage, allowed resolutions are 1024x1024, 1536x1024 (landscape), and 1024x1536 (portrait). Change the seed to a random number for different output. The "Write the 'Imagine' word only" button is the submit button. Pretty sure its unlimited for all models, at least through UI.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#### 1337x Ranks
|
#### Ranks 1337x
|
||||||
|
|
||||||
* ⬛ Black - Admin
|
* ⬛ Black - Admin
|
||||||
* 🟩 Green - Moderator
|
* 🟩 Green - Moderator
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { withBase } from 'vitepress'
|
import { withBase } from 'vitepress'
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { useMediaQuery } from '@vueuse/core'
|
|
||||||
|
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{ title?: string; icon?: string }>(),
|
defineProps<{ title?: string; icon?: string }>(),
|
||||||
@@ -9,19 +8,16 @@ const props = withDefaults(
|
|||||||
)
|
)
|
||||||
|
|
||||||
const resolvedIcon = computed(() => withBase(props.icon))
|
const resolvedIcon = computed(() => withBase(props.icon))
|
||||||
|
|
||||||
const isHoverable = useMediaQuery('(hover: hover)')
|
|
||||||
const triggers = computed(() => isHoverable.value ? ['hover'] : ['click'])
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VDropdown :triggers="triggers" :popper-triggers="triggers" :delay="{ show: 50, hide: 50 }" :auto-hide="true" :distance="15" placement="auto">
|
<VDropdown :triggers="['click', 'touch']" :auto-hide="true" :distance="15" placement="auto">
|
||||||
<button
|
<button
|
||||||
aria-label="Tooltip"
|
aria-label="Tooltip"
|
||||||
class="text-brand-1 relative inline-flex align-middle items-center justify-center leading-none p-0 select-none font-bold cursor-pointer transition-all h-[1.2em] w-[1.5em]"
|
class="text-brand-1 relative inline-flex align-middle items-center justify-center leading-none p-0 select-none font-bold cursor-pointer transition-all h-[1em] w-[1.7em]"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1.2 w-[1.3em] h-[1.3em] bg-current transition-all"
|
class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-2.5 w-[1.6em] h-[1.6em] bg-current transition-all"
|
||||||
:style="{
|
:style="{
|
||||||
mask: `url(${resolvedIcon}) no-repeat center / contain`,
|
mask: `url(${resolvedIcon}) no-repeat center / contain`,
|
||||||
'-webkit-mask': `url(${resolvedIcon}) no-repeat center / contain`,
|
'-webkit-mask': `url(${resolvedIcon}) no-repeat center / contain`,
|
||||||
@@ -30,14 +26,12 @@ const triggers = computed(() => isHoverable.value ? ['hover'] : ['click'])
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
<template #popper>
|
<template #popper>
|
||||||
<div class="border-$vp-c-divider bg-$vp-c-bg-alt b-rd-4 max-w-md max-h-md border-2 border-solid flex flex-col transition-all overflow-hidden">
|
<div class="border-$vp-c-divider bg-$vp-c-bg-alt b-rd-4 max-w-md max-h-md border-2 border-solid p-4 transition-all">
|
||||||
<div class="overflow-y-auto p-4">
|
|
||||||
<h3 v-if="title" class="text-$vp-c-text-1 mb-2 text-lg font-semibold" v-text="title" />
|
<h3 v-if="title" class="text-$vp-c-text-1 mb-2 text-lg font-semibold" v-text="title" />
|
||||||
<div class="text-$vp-c-text-1 text-sm content vp-doc">
|
<div class="text-$vp-c-text-1 text-sm content">
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</VDropdown>
|
</VDropdown>
|
||||||
</template>
|
</template>
|
||||||
@@ -53,8 +47,20 @@ const triggers = computed(() => isHoverable.value ? ['hover'] : ['click'])
|
|||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vp-doc a.tooltip-source-link {
|
.v-popper__popper .content ul {
|
||||||
color: inherit;
|
list-style: disc;
|
||||||
text-decoration: none;
|
padding-left: 1.25rem;
|
||||||
|
margin: 0.5rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.v-popper__popper .content ol {
|
||||||
|
list-style: decimal;
|
||||||
|
padding-left: 1.25rem;
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.v-popper__popper .content li {
|
||||||
|
margin: 0.25rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -402,10 +402,6 @@ function resetSearch() {
|
|||||||
nextTick().then(() => focusSearchInput(false))
|
nextTick().then(() => focusSearchInput(false))
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleInput(e: Event) {
|
|
||||||
filterText.value = (e.target as HTMLInputElement).value
|
|
||||||
}
|
|
||||||
|
|
||||||
function toggleFuzzySearch() {
|
function toggleFuzzySearch() {
|
||||||
isFuzzySearch.value = !isFuzzySearch.value
|
isFuzzySearch.value = !isFuzzySearch.value
|
||||||
}
|
}
|
||||||
@@ -468,8 +464,7 @@ function onMouseMove(e: MouseEvent) {
|
|||||||
</div>
|
</div>
|
||||||
<input
|
<input
|
||||||
ref="searchInput"
|
ref="searchInput"
|
||||||
:value="filterText"
|
v-model="filterText"
|
||||||
@input="handleInput"
|
|
||||||
:aria-activedescendant="selectedIndex > -1 ? ('localsearch-item-' + selectedIndex) : undefined"
|
:aria-activedescendant="selectedIndex > -1 ? ('localsearch-item-' + selectedIndex) : undefined"
|
||||||
aria-autocomplete="both"
|
aria-autocomplete="both"
|
||||||
:aria-controls="results?.length ? 'localsearch-list' : undefined"
|
:aria-controls="results?.length ? 'localsearch-list' : undefined"
|
||||||
|
|||||||
@@ -1,157 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
import { useData } from 'vitepress'
|
|
||||||
import { inBrowser } from 'vitepress'
|
|
||||||
import { computed, provide, watchEffect, ref, watch, onMounted } from 'vue'
|
|
||||||
import { useNav } from 'vitepress/dist/client/theme-default/composables/nav'
|
|
||||||
import VPNavBar from 'vitepress/dist/client/theme-default/components/VPNavBar.vue'
|
|
||||||
import VPNavScreen from 'vitepress/dist/client/theme-default/components/VPNavScreen.vue'
|
|
||||||
import { useWindowScroll, useWindowSize } from '@vueuse/core'
|
|
||||||
|
|
||||||
const { isScreenOpen, closeScreen, toggleScreen } = useNav()
|
|
||||||
const { frontmatter } = useData()
|
|
||||||
|
|
||||||
const hasNavbar = computed(() => {
|
|
||||||
return frontmatter.value.navbar !== false
|
|
||||||
})
|
|
||||||
|
|
||||||
provide('close-screen', closeScreen)
|
|
||||||
|
|
||||||
watchEffect(() => {
|
|
||||||
if (inBrowser) {
|
|
||||||
document.documentElement.classList.toggle('hide-nav', !hasNavbar.value)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
// Scroll logic for mobile sticky header
|
|
||||||
const { y } = useWindowScroll()
|
|
||||||
const { width } = useWindowSize()
|
|
||||||
const isHidden = ref(false)
|
|
||||||
|
|
||||||
const updateMobileNavClass = (hidden: boolean) => {
|
|
||||||
if (!inBrowser) return
|
|
||||||
if (hidden) {
|
|
||||||
document.documentElement.classList.remove('vp-nav-shown-mobile')
|
|
||||||
} else {
|
|
||||||
document.documentElement.classList.add('vp-nav-shown-mobile')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
watch(y, (newY, oldY) => {
|
|
||||||
if (!inBrowser) return
|
|
||||||
|
|
||||||
// If at top, show
|
|
||||||
if (newY <= 0) {
|
|
||||||
isHidden.value = false
|
|
||||||
updateMobileNavClass(false)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Only apply on mobile (< 960px usually)
|
|
||||||
if (width.value < 960) {
|
|
||||||
if (newY > oldY) {
|
|
||||||
// Scrolling down -> hide
|
|
||||||
isHidden.value = true
|
|
||||||
updateMobileNavClass(true)
|
|
||||||
} else {
|
|
||||||
// Scrolling up -> show
|
|
||||||
isHidden.value = false
|
|
||||||
updateMobileNavClass(false)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
isHidden.value = false
|
|
||||||
updateMobileNavClass(false)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
updateMobileNavClass(isHidden.value)
|
|
||||||
})
|
|
||||||
|
|
||||||
// Watch width to reset if resizing to desktop
|
|
||||||
watch(width, (newWidth) => {
|
|
||||||
if(newWidth >= 960) {
|
|
||||||
isHidden.value = false
|
|
||||||
updateMobileNavClass(false)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<!-- Spacer to prevent content jump when header is fixed on mobile -->
|
|
||||||
<div v-if="hasNavbar" class="vp-nav-spacer"></div>
|
|
||||||
|
|
||||||
<header v-if="hasNavbar" class="VPNav" :class="{ 'nav-hidden': isHidden }">
|
|
||||||
<VPNavBar :is-screen-open="isScreenOpen" @toggle-screen="toggleScreen">
|
|
||||||
<template #nav-bar-title-before><slot name="nav-bar-title-before" /></template>
|
|
||||||
<template #nav-bar-title-after><slot name="nav-bar-title-after" /></template>
|
|
||||||
<template #nav-bar-content-before><slot name="nav-bar-content-before" /></template>
|
|
||||||
<template #nav-bar-content-after><slot name="nav-bar-content-after" /></template>
|
|
||||||
</VPNavBar>
|
|
||||||
<VPNavScreen :open="isScreenOpen">
|
|
||||||
<template #nav-screen-content-before><slot name="nav-screen-content-before" /></template>
|
|
||||||
<template #nav-screen-content-after><slot name="nav-screen-content-after" /></template>
|
|
||||||
</VPNavScreen>
|
|
||||||
</header>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.VPNav {
|
|
||||||
position: relative;
|
|
||||||
top: var(--vp-layout-top-height, 0px);
|
|
||||||
left: 0;
|
|
||||||
z-index: var(--vp-z-index-nav);
|
|
||||||
width: 100%;
|
|
||||||
pointer-events: none;
|
|
||||||
transition: background-color 0.5s, transform 0.25s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 960px) {
|
|
||||||
.VPNav {
|
|
||||||
position: fixed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Mobile adjustments */
|
|
||||||
@media (max-width: 959px) {
|
|
||||||
.VPNav {
|
|
||||||
position: fixed; /* Fix header on mobile */
|
|
||||||
}
|
|
||||||
|
|
||||||
.VPNav.nav-hidden {
|
|
||||||
transform: translateY(-100%); /* Hide on scroll down */
|
|
||||||
}
|
|
||||||
|
|
||||||
.vp-nav-spacer {
|
|
||||||
display: block;
|
|
||||||
height: var(--vp-nav-height);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 960px) {
|
|
||||||
.vp-nav-spacer {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Ensure Nav Screen is visible above everything else when open */
|
|
||||||
:deep(.VPNav.screen-open) {
|
|
||||||
z-index: var(--vp-z-index-nav) !important;
|
|
||||||
}
|
|
||||||
/* When screen is open, disable the hide transform so it doesn't fly away if they scroll */
|
|
||||||
:global(.VPNav:has(.VPNavScreen[style*="display: block"])) {
|
|
||||||
transform: none !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
/* Global override for VPLocalNav on mobile to respect nav visibility */
|
|
||||||
@media (max-width: 959px) {
|
|
||||||
:root.vp-nav-shown-mobile .VPLocalNav {
|
|
||||||
top: var(--vp-nav-height) !important;
|
|
||||||
}
|
|
||||||
.VPLocalNav {
|
|
||||||
transition: top 0.25s ease-in-out !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -256,80 +256,80 @@ const transformLinks = (text: string): string =>
|
|||||||
name: 'Discord',
|
name: 'Discord',
|
||||||
find: /\[Discord\]\(([^\)]*?)\)/gm,
|
find: /\[Discord\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'Discord\'" alt="Discord" class="i-carbon:logo-discord" /></a>'
|
'<a target="_blank" href="$1"><div alt="Discord" class="i-carbon:logo-discord" /></a>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'GitHub',
|
name: 'GitHub',
|
||||||
find: /\[GitHub\]\(([^\)]*?)\)/gm,
|
find: /\[GitHub\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'GitHub\'" alt="GitHub" class="i-carbon:logo-github" /></a>'
|
'<a target="_blank" href="$1"><div alt="GitHub" class="i-carbon:logo-github" /></a>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'GitLab',
|
name: 'GitLab',
|
||||||
find: /(?<=\/ )\[GitLab\]\(([^\)]*?)\)/gm,
|
find: /(?<=\/ )\[GitLab\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'GitLab\'" alt="GitLab" class="i-carbon:logo-gitlab" /></a>'
|
'<a target="_blank" href="$1"><div alt="GitLab" class="i-carbon:logo-gitlab" /></a>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Source Code',
|
name: 'Source Code',
|
||||||
find: /\[Source Code\]\(([^\)]*?)\)/gm,
|
find: /\[Source Code\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'Source Code\'" alt="Source Code" class="i-gravity-ui:code" /></a>'
|
'<a target="_blank" href="$1"><div alt="Source Code" class="i-gravity-ui:code" /></a>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Telegram',
|
name: 'Telegram',
|
||||||
find: /\[Telegram\]\(([^\)]*?)\)/gm,
|
find: /\[Telegram\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'Telegram\'" alt="Telegram" class="i-mdi:telegram" /></a>'
|
'<a target="_blank" href="$1"><div alt="Telegram" class="i-mdi:telegram" /></a>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Subreddit',
|
name: 'Subreddit',
|
||||||
find: /\[Subreddit\]\(([^\)]*?)\)/gm,
|
find: /\[Subreddit\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'Reddit\'" alt="Reddit" class="i-mdi:reddit" /></a>'
|
'<a target="_blank" href="$1"><div alt="Reddit" class="i-mdi:reddit" /></a>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'X',
|
name: 'X',
|
||||||
find: /\[X\]\(([^\)]*?)\)/gm,
|
find: /\[X\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'X\'" alt="X" class="i-carbon:logo-x" /></a>'
|
'<a target="_blank" href="$1"><div alt="X" class="i-carbon:logo-x" /></a>'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Tor',
|
name: 'Tor',
|
||||||
find: /\[.onion\]\(([^\)]*?)\)/gm,
|
find: /\[.onion\]\(([^\)]*?)\)/gm,
|
||||||
replace:
|
replace:
|
||||||
'<a target="_blank" href="$1"><div v-tooltip="\'.onion\'" alt=".onion" class="i-simple-icons:torbrowser w-1em h-1em" /></a>'
|
'<a target="_blank" href="$1"><div alt=".onion" class="i-simple-icons:torbrowser w-1em h-1em" /></a>'
|
||||||
},
|
},
|
||||||
// Platform indicators
|
// Platform indicators
|
||||||
{
|
{
|
||||||
name: 'Windows',
|
name: 'Windows',
|
||||||
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Windows(?=,|[ \t]\/|$)/gm,
|
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Windows(?=,|[ \t]\/|$)/gm,
|
||||||
replace: ' <div v-tooltip="\'Windows\'" alt="Windows" class="i-qlementine-icons:windows-24" /> '
|
replace: ' <div alt="Windows" class="i-qlementine-icons:windows-24" /> '
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Mac',
|
name: 'Mac',
|
||||||
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Mac(?=,|[ \t]\/|$)/gm,
|
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Mac(?=,|[ \t]\/|$)/gm,
|
||||||
replace: ' <div v-tooltip="\'Mac\'" alt="Mac" class="i-qlementine-icons:mac-fill-16" /> '
|
replace: ' <div alt="Mac" class="i-qlementine-icons:mac-fill-16" /> '
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Linux',
|
name: 'Linux',
|
||||||
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Linux(?=,|[ \t]\/|$)/gm,
|
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Linux(?=,|[ \t]\/|$)/gm,
|
||||||
replace: ' <div v-tooltip="\'Linux\'" alt="Linux" class="i-fluent-mdl2:linux-logo-32" /> '
|
replace: ' <div alt="Linux" class="i-fluent-mdl2:linux-logo-32" /> '
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Android',
|
name: 'Android',
|
||||||
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Android(?=,|[ \t]\/|$)/gm,
|
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Android(?=,|[ \t]\/|$)/gm,
|
||||||
replace: ' <div v-tooltip="\'Android\'" alt="Android" class="i-material-symbols:android" /> '
|
replace: ' <div alt="Android" class="i-material-symbols:android" /> '
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'iOS',
|
name: 'iOS',
|
||||||
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)iOS(?=,|[ \t]\/|$)/gm,
|
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)iOS(?=,|[ \t]\/|$)/gm,
|
||||||
replace: ' <div v-tooltip="\'iOS\'" alt="iOS" class="i-simple-icons:ios" /> '
|
replace: ' <div alt="iOS" class="i-simple-icons:ios" /> '
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Web',
|
name: 'Web',
|
||||||
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Web(?=,|[ \t]\/|$)/gm,
|
find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(?<![a-z]\s)Web(?=,|[ \t]\/|$)/gm,
|
||||||
replace: ' <div v-tooltip="\'Web\'" alt="Web" class="i-fluent:globe-32-filled" /> '
|
replace: ' <div alt="Web" class="i-fluent:globe-32-filled" /> '
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
.getText()
|
.getText()
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export function replaceNoteLink(md: MarkdownRenderer) {
|
|||||||
|
|
||||||
const rendered = md.render(content)
|
const rendered = md.render(content)
|
||||||
const props = title ? `title="${title.replace(/"/g, '"')}"` : ''
|
const props = title ? `title="${title.replace(/"/g, '"')}"` : ''
|
||||||
const footer = `<div class="mt-2 text-right opacity-50 text-xs"><a class="tooltip-source-link" href="${href}">Source</a></div>`
|
const footer = `<div class="mt-2 text-right opacity-50 text-xs"><a href="${href}">Source</a></div>`
|
||||||
tooltip.content = `<Tooltip ${props}>${rendered}${footer}</Tooltip>`
|
tooltip.content = `<Tooltip ${props}>${rendered}${footer}</Tooltip>`
|
||||||
|
|
||||||
children.splice(i, j - i + 1, tooltip)
|
children.splice(i, j - i + 1, tooltip)
|
||||||
|
|||||||
20
docs/.vitepress/vue-shim.d.ts
vendored
@@ -18,23 +18,3 @@ declare module '*.vue' {
|
|||||||
const component: import('vue').Component
|
const component: import('vue').Component
|
||||||
export default component
|
export default component
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
declare module 'vitepress/dist/client/theme-default/composables/nav' {
|
|
||||||
export function useNav(): {
|
|
||||||
isScreenOpen: import('vue').Ref<boolean>
|
|
||||||
openScreen: () => void
|
|
||||||
closeScreen: () => void
|
|
||||||
toggleScreen: () => void
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module 'vitepress/dist/client/theme-default/components/VPNavBar.vue' {
|
|
||||||
const component: import('vue').Component
|
|
||||||
export default component
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module 'vitepress/dist/client/theme-default/components/VPNavScreen.vue' {
|
|
||||||
const component: import('vue').Component
|
|
||||||
export default component
|
|
||||||
}
|
|
||||||
45
docs/ai.md
@@ -12,14 +12,14 @@
|
|||||||
|
|
||||||
## ▷ Official Model Sites
|
## ▷ Official Model Sites
|
||||||
|
|
||||||
* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** - Gemini 3 Pro Preview / 100 Daily / 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)
|
||||||
* ⭐ **[Z.ai](https://chat.z.ai/)** - GLM 4.7 / Slides / Unlimited / [Discord](https://discord.gg/QR7SARHRxK)
|
* ⭐ **[Z.ai](https://chat.z.ai/)** - GLM 4.7 / Slides / Unlimited / [Discord](https://discord.gg/QR7SARHRxK)
|
||||||
* ⭐ **[Grok](https://grok.com/)** - Grok 4 Fast (96 daily) / Grok 4.1 (24 daily) / [Rate Display](https://greasyfork.org/en/scripts/533963), [2](https://chromewebstore.google.com/detail/grok-rate-limit-display/fcoijmefliggikpeofhojmkpoooocifk) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
* ⭐ **[Grok](https://grok.com/)** - Grok 4 Fast (96 daily) / Grok 4.1 (24 daily) / [Rate Display](https://greasyfork.org/en/scripts/533963), [2](https://chromewebstore.google.com/detail/grok-rate-limit-display/fcoijmefliggikpeofhojmkpoooocifk) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||||
* ⭐ **[Gemini](https://gemini.google.com/)** - Gemini 3 Pro (5 per day) / Gemini 3 Flash (Unlimited) / [Limits](https://support.google.com/gemini/answer/16275805) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
* ⭐ **[Gemini](https://gemini.google.com/)** - Gemini 3 Pro (5 per day) / 3 Flash (Unlimited) / [Limits](https://support.google.com/gemini/answer/16275805) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||||
* ⭐ **[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)
|
* ⭐ **[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)
|
||||||
* ⭐ **[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)
|
* ⭐ **[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)
|
||||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5.1 / Unlimited / [Reasoning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/better-reasoning.md) / [Discord](https://discord.com/invite/go-copilot)
|
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5.1 / Unlimited / [Reasoning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/better-reasoning.md) / [Discord](https://discord.com/invite/go-copilot)
|
||||||
* [ChatGPT](https://chatgpt.com/) - GPT-5.2 Instant / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/chatgpt-limits.md) / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
* [ChatGPT](https://chatgpt.com/) - GPT-5.2 / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/chatgpt-limits.md) / / [Discord](https://discord.com/invite/openai)
|
||||||
* [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)
|
* [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)
|
||||||
* [Claude](https://claude.ai/) - Claude 4.5 Sonnet / Google Login Required / [Learning Resources](https://github.com/ComposioHQ/awesome-claude-skills) / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/6PPFFzqPDZ)
|
* [Claude](https://claude.ai/) - Claude 4.5 Sonnet / Google Login Required / [Learning Resources](https://github.com/ComposioHQ/awesome-claude-skills) / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/6PPFFzqPDZ)
|
||||||
* [Ernie](https://ernie.baidu.com/) - ERNIE 5.0 Preview 1220 / x1 Demo / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo)
|
* [Ernie](https://ernie.baidu.com/) - ERNIE 5.0 Preview 1220 / x1 Demo / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo)
|
||||||
@@ -41,27 +41,27 @@
|
|||||||
|
|
||||||
## ▷ Multiple Model Sites
|
## ▷ Multiple Model Sites
|
||||||
|
|
||||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct)** - Claude 4.5 Opus / Multiple Models / No Sign-Up / Reset Limits w/ Cookie Delete or Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
* ⭐ **[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/) - Google Login / Multiple Models / [Discord](https://discord.com/invite/yuppai)
|
* [Yupp.ai](https://yupp.ai/) - Multiple Chatbots / Google Login / / [Discord](https://discord.com/invite/yuppai)
|
||||||
* [Pollinations](https://chat.pollinations.ai/) - Gemini 3 Pro / Claude 4.5 Opus / GPT 5.2 / No Sign-Up / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/pollinations-limits.md)
|
* [Pollinations](https://chat.pollinations.ai/) - Gemini 3 Pro / Claude 4.5 Opus / GPT 5.2 / No Sign-Up / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/pollinations-limits.md)
|
||||||
* [ISH](https://ish.chat/) - GPT-5 / Grok 4.1 / Kimi K2 / Multiple Models / No Sign-Up / [Subreddit](https://www.reddit.com/r/Ishchat/) / [Discord](https://discord.gg/cwDTVKyKJz)
|
* [ISH](https://ish.chat/) - GPT-5 / Grok 4.1 / Kimi K2 / Multiple Chatbots / No Sign-Up / [Subreddit](https://www.reddit.com/r/Ishchat/) / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||||
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-V3.2 / GLM-4.7 / Mistral Large 3 / Kimi K2 / Multiple Models / No Sign-Up
|
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-V3.2/ GLM-4.7/ Mistral Large 3 / Kimi K2 / Multiple Chatbots / No Sign-Up
|
||||||
* [Khoj](https://app.khoj.dev/) - Grok 4.1 Fast (non-reasoning) / Deepseek V3.2 / Gemini 3 Flash / Reset Limits w/ Temp Mail
|
* [Khoj](https://app.khoj.dev/) - Grok 4.1 / Gemini 3 Flash / Reset Limits w/ Temp Mail
|
||||||
* [Cerebras Chat](https://chat.cerebras.ai/) - GLM 4.7 / Multiple Models / Sign-Up Required
|
|
||||||
* [Groq](https://groq.com/) - Kimi K2-0905 / GPT-OSS 120B / Sign-Up Required / [Discord](https://discord.com/invite/e6cj7aA4Ts)
|
* [Groq](https://groq.com/) - Kimi K2-0905 / GPT-OSS 120B / Sign-Up Required / [Discord](https://discord.com/invite/e6cj7aA4Ts)
|
||||||
* [Together.ai](https://chat.together.ai/) - DeepSeek V3.1 / Qwen 3 235B-2507 / Up-To 110 Daily / [Discord](https://discord.gg/9Rk6sSeWEG)
|
* [Together.ai](https://chat.together.ai/) - DeepSeek V3.1 / Qwen 3 235B-2507 / Up-To 110 Daily / [Discord](https://discord.gg/9Rk6sSeWEG)
|
||||||
* [Woozlit](https://woozlit.com/) - Gemini 3 / Multiple Models / No Sign-Up / [Discord](https://discord.gg/XE65JfWm)
|
* [Woozlit](https://woozlit.com/) - Gemini 3 / Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/XE65JfWm)
|
||||||
* [Duck AI](https://duck.ai/) - GPT-5 mini / Multiple Models / No Sign-Up
|
* [EaseMate AI](https://www.easemate.ai/ai-chat) - Multiple Chatbots / No Sign-Up
|
||||||
* [NVIDIA NIM](https://build.nvidia.com/) - GLM-4.7 / Deepseek V3.1 / Kimi K2 Thinking / Multiple Models / No Sign-Up
|
* [Duck AI](https://duck.ai/) - GPT-5 mini / Multiple Chatbots / No Sign-Up
|
||||||
|
* [NVIDIA NIM](https://build.nvidia.com/) - DeepSeek V3.1 / Kimi K2 / Multiple Chatbots / No Sign-Up
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Specialized Chatbots
|
## ▷ 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
|
* 🌐 **[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 / Reset Limits w/ Cookie Delete or Temp Mail / [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)
|
* ⭐ **[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 / [Anki Export](https://chromewebstore.google.com/detail/ankinlm/ecoealfdeebafjpmhjdlbdgpgegjeaem) / [X](https://x.com/NotebookLM) / [Subreddit](https://www.reddit.com/r/notebooklm/) / [Discord](https://discord.com/invite/notebooklm)
|
* ⭐ **[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
|
* [Google AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50) - AI Search Engine
|
||||||
* [Ask Brave](https://search.brave.com/ask) - AI Search Engine
|
* [Ask Brave](https://search.brave.com/ask) - AI Search Engine
|
||||||
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - FOSS AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT)
|
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - FOSS AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT)
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
* ⭐ **[Open WebUI](https://openwebui.com/)** - Self-Hosted Interface / [Discord](https://discord.gg/5rJgQTnV4s) / [GitHub](https://github.com/open-webui/open-webui)
|
* ⭐ **[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 / [Demo](https://g4f.dev/chat/pro.html), [2](https://g4f.dev/chat/) / [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)
|
* [Msty](https://msty.app/) - Download & Run Models Locally / [Discord](https://discord.gg/2QBw6XxkCC)
|
||||||
* [Cherry Studio](https://www.cherry-ai.com/) - Desktop App / [Mobile](https://github.com/CherryHQ/cherry-studio-app) / [Discord](https://discord.gg/wez8HtpxqQ) / [GitHub](https://github.com/CherryHQ/cherry-studio)
|
* [Cherry Studio](www.cherry-ai.com/) - Desktop App / [Mobile](https://github.com/CherryHQ/cherry-studio-app) / [Discord](https://discord.gg/wez8HtpxqQ) / [GitHub](https://github.com/CherryHQ/cherry-studio)
|
||||||
* [LobeChat](https://lobechat.com/chat) - Desktop App / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
* [LobeChat](https://lobechat.com/chat) - Desktop App / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||||
* [Noi](https://noib.app/) - Desktop App / [Discord](https://discord.gg/kq2HXcpJSQ) / [GitHub](https://github.com/lencx/Noi)
|
* [Noi](https://noib.app/) - Desktop App / [Discord](https://discord.gg/kq2HXcpJSQ) / [GitHub](https://github.com/lencx/Noi)
|
||||||
* [Chatbot UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
|
* [Chatbot UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
|
||||||
@@ -307,10 +307,9 @@
|
|||||||
* [Vheer](https://vheer.com/) - Unlimited / No Sign-Up
|
* [Vheer](https://vheer.com/) - Unlimited / No Sign-Up
|
||||||
* [AIFreeVideo](https://aifreevideo.com/) - Unlimited / MiniMax Video-01 / Sign-Up Required
|
* [AIFreeVideo](https://aifreevideo.com/) - Unlimited / MiniMax Video-01 / Sign-Up Required
|
||||||
* [Meta AI](https://www.meta.ai/) - Unlimited / Sign-Up Required
|
* [Meta AI](https://www.meta.ai/) - Unlimited / Sign-Up Required
|
||||||
* [LMArena](https://lmarena.ai/?mode=direct) - 3 Daily / Sign-Up Required / Random Models / Reset Limits w/ Cookie Delete or Temp Mail / End-Watermark / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
* [LMArena](https://lmarena.ai/?mode=direct) - 3 Daily / Sign-Up Required / Random Models / Reset Limits w/ Temp Mail / End-Watermark / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||||
* [LMArena (Discord)](https://discord.com/invite/lmarena) - 5 Daily / Random Models / Discord Only / Check #how-to-video-bot / End-Watermark
|
* [LMArena (Discord)](https://discord.com/invite/lmarena) - 5 Daily / Random Models / Discord Only / Check #how-to-video-bot / End-Watermark
|
||||||
* [Klipy](https://klipy.com/) - Klipy / Veo 3 / GIFs / Unlimited / Sign-Up Required
|
* [Klipy](https://klipy.com/) - Klipy / Veo 3 / GIFs / Unlimited / Sign-Up Required
|
||||||
* [ModelScope Video](https://modelscope.ai/civision/videoGeneration) - Wan 2.2 14B / 3 Daily / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/modelscope.md)
|
|
||||||
* [Google Whisk](https://labs.google/fx/en/tools/whisk) - Veo 3 / 10 Monthly
|
* [Google Whisk](https://labs.google/fx/en/tools/whisk) - Veo 3 / 10 Monthly
|
||||||
* [Google Flow](https://labs.google/fx/tools/flow) - Veo 2 (10 Monthly) / Veo 3.1 (5 Monthly)
|
* [Google Flow](https://labs.google/fx/tools/flow) - Veo 2 (10 Monthly) / Veo 3.1 (5 Monthly)
|
||||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 120 Credits Daily
|
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 120 Credits Daily
|
||||||
@@ -325,12 +324,12 @@
|
|||||||
|
|
||||||
# ► Image Generation
|
# ► Image Generation
|
||||||
|
|
||||||
* 🌐 **[LMArena Text to Image](https://lmarena.ai/leaderboard/text-to-image)** or **[LMArena Editing](https://lmarena.ai/leaderboard/image-edit)** - Image Gen Benchmarks / Leaderboards
|
* 🌐 **[LMArena Text to Image](https://lmarena.ai/leaderboard/text-to-image)** or **[LMArena Editing](https://lmarena.ai/leaderboard/image-edit)** - Image Generator Benchmarks / Leaderboards
|
||||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - GPT Image 1.5 / Nano Banana Pro / Multiple Generators / Editing / Reset Limits w/ Cookie Delete or Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - GPT Image 1.5 / Nano Banana Pro / Multiple Generators / Editing / Reset Limits w/ Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||||
* ⭐ **[Gemini](https://gemini.google.com/)** - Nano Banana (100 per day) / Nano Banana Pro (2 per day) / Sign-Up Required / Region-Based / [Remove Watermarks](https://banana.ovo.re/) / [Discord](https://discord.com/invite/gemini)
|
* ⭐ **[Gemini](https://gemini.google.com/)** - Nano Banana (100 per day) / Nano Banana Pro (2 per day) / Sign-Up Required / Region-Based / [Remove Watermarks](https://banana.ovo.re/) / [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)
|
* ⭐ **[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
|
* ⭐ **[Bing Create](https://www.bing.com/images/create)** - Unlimited / GPT-4o / MAI-Image-1 / Editing / Sign-Up Required
|
||||||
* ⭐ **[PigenAI](https://pigenai.art/)** - 50 Credits Daily / Editing / Generating / Z-Image Turbo / Unlimited / Multiple Generators
|
* ⭐ **[PigenAI](https://pigenai.art/)** - 50 Credits Daily / Editing / Generating/ Z-Image Turbo / Unlimited / Multiple Generators
|
||||||
* ⭐ **[Dreamina](https://dreamina.capcut.com/ai-tool/home)** - 120 Credits Daily / Seedream 4.5/ Nano Banana / Sign-Up Required
|
* ⭐ **[Dreamina](https://dreamina.capcut.com/ai-tool/home)** - 120 Credits Daily / Seedream 4.5/ Nano Banana / Sign-Up Required
|
||||||
* ⭐ **[Perchance](https://perchance.org/ai-photo-generator)** / [2](https://perchance.org/ai-text-to-image-generator) - Chroma-Based / Unlimited / No Sign-Up / [Resources](https://perchance.org/perlist) / [Lemmy](https://lemmy.world/u/perchance) / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
* ⭐ **[Perchance](https://perchance.org/ai-photo-generator)** / [2](https://perchance.org/ai-text-to-image-generator) - Chroma-Based / Unlimited / No Sign-Up / [Resources](https://perchance.org/perlist) / [Lemmy](https://lemmy.world/u/perchance) / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
||||||
* [Yupp.ai](https://yupp.ai/) - GPT Image 1.5 / Nano Banana Pro / Multiple Generators / Google Login / [Discord](https://discord.com/invite/yuppai)
|
* [Yupp.ai](https://yupp.ai/) - GPT Image 1.5 / Nano Banana Pro / Multiple Generators / Google Login / [Discord](https://discord.com/invite/yuppai)
|
||||||
@@ -347,8 +346,7 @@
|
|||||||
* [AIGazou](https://muryou-aigazou.com/) - Flux / Z-Image Turbo / Unlimited / No Sign-Up / Seedream 3 / GPT Image 1 / 10 Daily / Sign-Up Required / [Discord](https://discord.gg/v6KzUbPeKh)
|
* [AIGazou](https://muryou-aigazou.com/) - Flux / Z-Image Turbo / Unlimited / No Sign-Up / Seedream 3 / GPT Image 1 / 10 Daily / Sign-Up Required / [Discord](https://discord.gg/v6KzUbPeKh)
|
||||||
* [Meta AI](https://www.meta.ai/) - Unlimited / Sign-Up Required
|
* [Meta AI](https://www.meta.ai/) - Unlimited / Sign-Up Required
|
||||||
* [Vheer](https://vheer.com/) - Unlimited / Flux Kontext Dev / Flux Schnell
|
* [Vheer](https://vheer.com/) - Unlimited / Flux Kontext Dev / Flux Schnell
|
||||||
* [ModelScope Images](https://modelscope.ai/civision/imageGeneration) - Qwen Image Edit (50 Daily) / Z-Image Turbo (100 Daily) / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/modelscope.md)
|
* [Z-Image](https://huggingface.co/spaces/Tongyi-MAI/Z-Image-Turbo) / [GitHub](https://github.com/Tongyi-MAI/Z-Image), [Pollinations Play](https://pollinations.ai/play) or [Z-GEN TURBO](https://z-gen-turbo.vercel.app/) - Z-Image Turbo
|
||||||
* [Pollinations Play](https://pollinations.ai/play) or [Z-GEN TURBO](https://z-gen-turbo.vercel.app/) - Z-Image Turbo
|
|
||||||
* [Ernie](https://ernie.baidu.com/) - Unlimited / Editing / Sign-Up Required
|
* [Ernie](https://ernie.baidu.com/) - Unlimited / Editing / Sign-Up Required
|
||||||
* [LongCat AI](https://longcat.chat/) - 100 Daily / Editing
|
* [LongCat AI](https://longcat.chat/) - 100 Daily / Editing
|
||||||
* [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), [AI Gallery](https://aigallery.app/) / [Telegram](https://t.me/aigalleryapp), [AIFreeForever](https://aifreeforever.com/image-generators), [ZonerAI](https://zonerai.com/) or [Art Genie](https://artgenie.pages.dev/) - Flux Schnell
|
* [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), [AI Gallery](https://aigallery.app/) / [Telegram](https://t.me/aigalleryapp), [AIFreeForever](https://aifreeforever.com/image-generators), [ZonerAI](https://zonerai.com/) or [Art Genie](https://artgenie.pages.dev/) - Flux Schnell
|
||||||
@@ -427,7 +425,6 @@
|
|||||||
## ▷ Text to Speech
|
## ▷ Text to Speech
|
||||||
|
|
||||||
* ⭐ **[TTS Online](https://www.text-to-speech.online/)** / No Sign-Up
|
* ⭐ **[TTS Online](https://www.text-to-speech.online/)** / No Sign-Up
|
||||||
* [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
|
|
||||||
* [Google Illuminate](https://illuminate.google.com/) - Generate AI Conversations
|
* [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)
|
* [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)
|
* [Google Speech Gen](https://aistudio.google.com/generate-speech)
|
||||||
@@ -509,10 +506,10 @@
|
|||||||
* [minitorch](https://github.com/minitorch/minitorch) - Machine Learning Engineering Course Code
|
* [minitorch](https://github.com/minitorch/minitorch) - Machine Learning Engineering Course Code
|
||||||
* [ML YouTube Courses](https://github.com/dair-ai/ML-YouTube-Courses) or [Deep Learning Drizzle](https://deep-learning-drizzle.github.io/) - Machine Learning Courses on YouTube
|
* [ML YouTube Courses](https://github.com/dair-ai/ML-YouTube-Courses) or [Deep Learning Drizzle](https://deep-learning-drizzle.github.io/) - Machine Learning Courses on YouTube
|
||||||
* [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)
|
* [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)
|
||||||
* [ModelScop Finetuninge](https://modelscope.ai/civision/modelTraining) - Image Gen Model Finetuning / Up to 100 Images Per LoRA
|
|
||||||
* [Markdown Web Browser](https://github.com/Dicklesworthstone/markdown_web_browser) - Webpage > Markdown Converter
|
* [Markdown Web Browser](https://github.com/Dicklesworthstone/markdown_web_browser) - Webpage > Markdown Converter
|
||||||
* [DeepSpeed](https://www.deepspeed.ai/) - Deep Learning Optimization Library
|
* [DeepSpeed](https://www.deepspeed.ai/) - Deep Learning Optimization Library
|
||||||
* [Netron](https://github.com/lutzroeder/netron) - Visualizer for Neural Network, Deep Learning, and Machine Learning Models
|
* [Netron](https://github.com/lutzroeder/netron) - Visualizer for Neural Network, Deep Learning, and Machine Learning Models
|
||||||
* [MMDeploy](https://mmdeploy.readthedocs.io/en/latest/) - Deep Learning Model Deployment Toolset / [GitHub](https://github.com/open-mmlab/mmdeploy)
|
* [MMDeploy](https://mmdeploy.readthedocs.io/en/latest/) - Deep Learning Model Deployment Toolset / [GitHub](https://github.com/open-mmlab/mmdeploy)
|
||||||
* [ChatGPT-Next-Web](https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web) - Cross-Platform ChatGPT / Gemini UI
|
* [ChatGPT-Next-Web](https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web) - Cross-Platform ChatGPT / Gemini UI
|
||||||
* [Nixified](https://nixified.ai/) - Nix Flake for AI Projects
|
* [Nixified](https://nixified.ai/) - Nix Flake for AI Projects
|
||||||
|
* [Cyberbotics](https://cyberbotics.com/) - Robot Simulator
|
||||||
@@ -20,6 +20,7 @@
|
|||||||
* [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud)
|
* [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud)
|
||||||
* [Nuclear](https://nuclearplayer.com/) - Streaming / [Discord](https://discord.com/invite/JqPjKxE) / [GitHub](https://github.com/nukeop/nuclear)
|
* [Nuclear](https://nuclearplayer.com/) - Streaming / [Discord](https://discord.com/invite/JqPjKxE) / [GitHub](https://github.com/nukeop/nuclear)
|
||||||
* [FunkWhale](https://funkwhale.audio/) - Decentralized Streaming Platform
|
* [FunkWhale](https://funkwhale.audio/) - Decentralized Streaming Platform
|
||||||
|
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
||||||
* [Muffon](https://muffon.netlify.app/) - Streaming
|
* [Muffon](https://muffon.netlify.app/) - Streaming
|
||||||
* [Sonosano](https://github.com/KRSHH/Sonosano) - Self-Hosted P2P Lossless Music Player / [Web App](https://sonosano.krshh.com/) / [Discord](https://discord.gg/Np7YYEVPhR)
|
* [Sonosano](https://github.com/KRSHH/Sonosano) - Self-Hosted P2P Lossless Music Player / [Web App](https://sonosano.krshh.com/) / [Discord](https://discord.gg/Np7YYEVPhR)
|
||||||
|
|
||||||
@@ -47,7 +48,6 @@
|
|||||||
* [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)
|
* [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)
|
||||||
* [jiosaavn](https://www.jiosaavn.com/), [Saavn Web](https://saavn-web-ui.vercel.app/) / [GitHub](https://github.com/wiz64/saavn-web-ui) or [Hayasaka](https://hayasaka.vercel.app/) - Browser Music / [API](https://cyberboysumanjay.github.io/JioSaavnAPI/)
|
* [jiosaavn](https://www.jiosaavn.com/), [Saavn Web](https://saavn-web-ui.vercel.app/) / [GitHub](https://github.com/wiz64/saavn-web-ui) or [Hayasaka](https://hayasaka.vercel.app/) - Browser Music / [API](https://cyberboysumanjay.github.io/JioSaavnAPI/)
|
||||||
* [MTV REWIND](https://wantmymtv.xyz/) / [2](https://wantmymtv.vercel.app/) - Recreates MTV Experience from Different Eras
|
* [MTV REWIND](https://wantmymtv.xyz/) / [2](https://wantmymtv.vercel.app/) - Recreates MTV Experience from Different Eras
|
||||||
* [The 120 Minutes Archive](https://120minutes.org/) - MTV's 120 Minutes Archive
|
|
||||||
* [Ballsack TV](https://bsky.app/profile/feed.ballsack.tv) - MTV Style User-Submitted Music Video Feed / [Discord](https://discord.gg/KT2Dht4zcZ)
|
* [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
|
* [Hype Machine](https://hypem.com/popular) - Rising
|
||||||
* [Bandcamp](https://bandcamp.com/discover/free-music) - Free Music Release Platform
|
* [Bandcamp](https://bandcamp.com/discover/free-music) - Free Music Release Platform
|
||||||
@@ -289,7 +289,7 @@
|
|||||||
* ⭐ **[CityHop](https://www.cityhop.cafe/)** or [Japan Walkaround](https://thatguyedd.github.io/) - Lofi Radio / City Walks
|
* ⭐ **[CityHop](https://www.cityhop.cafe/)** or [Japan Walkaround](https://thatguyedd.github.io/) - Lofi Radio / City Walks
|
||||||
* ⭐ **[Coding Cat](https://hostrider.com/)** - Lofi Radio / Nyan Cat's Cousin
|
* ⭐ **[Coding Cat](https://hostrider.com/)** - Lofi Radio / Nyan Cat's Cousin
|
||||||
* ⭐ **[Chillhop](https://chillhop.com/)** - Lofi Radio
|
* ⭐ **[Chillhop](https://chillhop.com/)** - Lofi Radio
|
||||||
* [Flow-Fi](https://www.flowfi.app/) - Lofi Radio
|
* [Flow-fi](https://www.flowfi.app/) - Lofi Radio / 360+ Combined Channels
|
||||||
* [Lofi and Games](https://lofiandgames.com/) - Lofi Radio + Simple Games
|
* [Lofi and Games](https://lofiandgames.com/) - Lofi Radio + Simple Games
|
||||||
* [FlowTunes](https://www.flowtunes.app/) - Lofi + Focus Radio / Ambient Sounds
|
* [FlowTunes](https://www.flowtunes.app/) - Lofi + Focus Radio / Ambient Sounds
|
||||||
* [Lofizen](https://www.lofizen.co/) - Lofi Radio / Ambient Sounds
|
* [Lofizen](https://www.lofizen.co/) - Lofi Radio / Ambient Sounds
|
||||||
@@ -367,7 +367,7 @@
|
|||||||
* [QQDL](https://tidal.qqdl.site/) or [BiniLossless](https://music.binimum.org/) - Tidal / FLAC / [Full List](https://github.com/SamidyFR/monochrome/blob/main/INSTANCES.md)
|
* [QQDL](https://tidal.qqdl.site/) or [BiniLossless](https://music.binimum.org/) - Tidal / FLAC / [Full List](https://github.com/SamidyFR/monochrome/blob/main/INSTANCES.md)
|
||||||
* [Spotisaver](https://spotisaver.net/) - Multi-Site
|
* [Spotisaver](https://spotisaver.net/) - Multi-Site
|
||||||
* [am-dl](https://am-dl.pages.dev/) - Apple Music / AAC-M4A
|
* [am-dl](https://am-dl.pages.dev/) - Apple Music / AAC-M4A
|
||||||
* [Jumo-DL](https://jumo-dl.pages.dev/) - Qobuz / FLAC / MP3
|
* [Jumo-DL](https://jumo-dl.pages.dev/) - Qobuz
|
||||||
* [EzConv](https://ezconv.cc/) - YouTube / 256kb
|
* [EzConv](https://ezconv.cc/) - YouTube / 256kb
|
||||||
* [YTiz](https://ytiz.xyz/) - SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
* [YTiz](https://ytiz.xyz/) - SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||||
* [cobalt](https://cobalt.tools/) - SoundCloud / 320kb / MP3 / [Instances](https://instances.cobalt.best/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
* [cobalt](https://cobalt.tools/) - SoundCloud / 320kb / MP3 / [Instances](https://instances.cobalt.best/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
||||||
@@ -462,7 +462,7 @@
|
|||||||
* [ThemFire](https://themfire.pro/) - MP3 / FLAC
|
* [ThemFire](https://themfire.pro/) - MP3 / FLAC
|
||||||
* [Music Rider](https://musicrider.org/) - MP3 / FLAC
|
* [Music Rider](https://musicrider.org/) - MP3 / FLAC
|
||||||
* [FindFlac](https://findflac.com/) - FLAC / MP3 / MP4
|
* [FindFlac](https://findflac.com/) - FLAC / MP3 / MP4
|
||||||
* [iPlusFree](https://www7.iplusfree.org/) - iTunes M4A
|
* [iPlusFree](https://www7.iplusfree.org/), [iTopMusic](https://itopmusicx.com/) or [iTDMusic](https://itdmusic.in/) - iTunes M4A
|
||||||
* [xprm](https://xprm.net/) - MP3 / DL / Stream / Requests
|
* [xprm](https://xprm.net/) - MP3 / DL / Stream / Requests
|
||||||
* [SongStems](https://songstems.net/) - STEM Files
|
* [SongStems](https://songstems.net/) - STEM Files
|
||||||
* [BitMidi](https://bitmidi.com/), [Geocities Midis](https://www.midicities.com/GeoCities), [Tricotism](https://www.tricotism.com/), [FreeMIDI](https://freemidi.org/), [ArtScene](http://artscene.textfiles.com/music/midi/) or [VGMusic](https://www.vgmusic.com/) - MIDI Files
|
* [BitMidi](https://bitmidi.com/), [Geocities Midis](https://www.midicities.com/GeoCities), [Tricotism](https://www.tricotism.com/), [FreeMIDI](https://freemidi.org/), [ArtScene](http://artscene.textfiles.com/music/midi/) or [VGMusic](https://www.vgmusic.com/) - MIDI Files
|
||||||
@@ -817,7 +817,7 @@
|
|||||||
|
|
||||||
## ▷ Song Identification
|
## ▷ Song Identification
|
||||||
|
|
||||||
* ⭐ **[Google Song Identification](https://support.google.com/websearch/answer/7554088)** / Android, iOS / [Guide](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/google-song-identification.md)
|
* ⭐ **[Google Song Identification](https://support.google.com/websearch/answer/7554088) ** / Android, iOS / [Guide](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/google-song-identification.md)
|
||||||
* ⭐ **[Shazam](https://www.shazam.com/)** / Android, iOS / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) / [Desktop App](https://github.com/BayernMuller/vibra), [2](https://github.com/zemoto/WhatAmIHearing) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/librezam/) / [Chrome](https://chromewebstore.google.com/detail/shazam-find-song-names-fr/mmioliijnhnoblpgimnlajmefafdfilb)
|
* ⭐ **[Shazam](https://www.shazam.com/)** / Android, iOS / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) / [Desktop App](https://github.com/BayernMuller/vibra), [2](https://github.com/zemoto/WhatAmIHearing) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/librezam/) / [Chrome](https://chromewebstore.google.com/detail/shazam-find-song-names-fr/mmioliijnhnoblpgimnlajmefafdfilb)
|
||||||
* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** or [r/NameThatSong](https://reddit.com/r/NameThatSong) - Song ID Communities
|
* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** or [r/NameThatSong](https://reddit.com/r/NameThatSong) - Song ID Communities
|
||||||
* [FlairMax](https://apps.microsoft.com/detail/9pdzvj34ztxg) / Windows
|
* [FlairMax](https://apps.microsoft.com/detail/9pdzvj34ztxg) / Windows
|
||||||
@@ -974,7 +974,7 @@
|
|||||||
* [IEM Plug-in Suite](https://plugins.iem.at/), [ModularSamples](https://github.com/publicsamples), [Igorski](https://www.igorski.nl/download) / [GitHub](https://github.com/igorski?utf8=✓&tab=repositories&q=vst), [SPARTA](https://leomccormack.github.io/sparta-site/) or [Chowdhury DSP](https://chowdsp.com/products.html) - Open-Source Plugins
|
* [IEM Plug-in Suite](https://plugins.iem.at/), [ModularSamples](https://github.com/publicsamples), [Igorski](https://www.igorski.nl/download) / [GitHub](https://github.com/igorski?utf8=✓&tab=repositories&q=vst), [SPARTA](https://leomccormack.github.io/sparta-site/) or [Chowdhury DSP](https://chowdsp.com/products.html) - Open-Source Plugins
|
||||||
* [Plugins4Free](https://plugins4free.com/), [looperman](https://www.looperman.com/free-music-software) or [AirWindows](https://www.airwindows.com/) / [Consolidated](https://www.airwindows.com/consolidated/) - Plugins
|
* [Plugins4Free](https://plugins4free.com/), [looperman](https://www.looperman.com/free-music-software) or [AirWindows](https://www.airwindows.com/) / [Consolidated](https://www.airwindows.com/consolidated/) - Plugins
|
||||||
* [Krush](https://www.tritik.com/product/krush/) - Bitcrusher Plugin
|
* [Krush](https://www.tritik.com/product/krush/) - Bitcrusher Plugin
|
||||||
* [samplv1](https://samplv1.sourceforge.io/) - Polyphonic Sampler
|
* [samplv1](https://samplv1.sourceforge.io/) - Voice Synth
|
||||||
* [Maim](https://github.com/ArdenButterfield/Maim) - Audio Distortion Plugin
|
* [Maim](https://github.com/ArdenButterfield/Maim) - Audio Distortion Plugin
|
||||||
* [r/SynthRecipes](https://www.reddit.com/r/synthrecipes/) - Synth Request Subreddit
|
* [r/SynthRecipes](https://www.reddit.com/r/synthrecipes/) - Synth Request Subreddit
|
||||||
|
|
||||||
|
|||||||
@@ -70,8 +70,7 @@ If you see a string of text that looks like this `aHR0cHM6Ly9mbWh5Lm5ldC8` you c
|
|||||||
|
|
||||||
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Monochrome](https://monochrome.samidy.com/)**, [2](https://monochrome.tf/), [3](https://monochrome.prigoana.com/), [4](https://monochrome-back.pages.dev/)
|
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Monochrome](https://monochrome.samidy.com/)**, [2](https://monochrome.tf/), [3](https://monochrome.prigoana.com/), [4](https://monochrome-back.pages.dev/)
|
||||||
* **Downloading: [lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/) / [Soulseek](https://slsknet.org/)**
|
* **Downloading: [lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/) / [Soulseek](https://slsknet.org/)**
|
||||||
* **Android: [Metrolist](https://mostafaalagamy.github.io/) / [ReVanced Manager](https://revanced.app/) / [Morphe](https://morphe.software/) / [SpotiFLAC-Mobile](https://github.com/zarzet/SpotiFLAC-Mobile)**
|
* **Mobile: [Metrolist](https://github.com/mostafaalagamy/metrolist) (Android) / [ReVanced Manager](https://revanced.app/) (Android) / [Morphe](https://morphe.software/) (Android) / [SpotC++](https://spotc.yodaluca.dev/) (iOS)**
|
||||||
* **iOS: [SpotC++](https://spotc.yodaluca.dev/) / [SpotiFLAC-Mobile](https://github.com/zarzet/SpotiFLAC-Mobile)**
|
|
||||||
* **Track / Discover: [RateYourMusic](https://rateyourmusic.com/) / [Last.fm](https://www.last.fm/home)**
|
* **Track / Discover: [RateYourMusic](https://rateyourmusic.com/) / [Last.fm](https://www.last.fm/home)**
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|||||||
@@ -96,7 +96,7 @@
|
|||||||
***
|
***
|
||||||
|
|
||||||
* 🌐 **[Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives)**, [2](https://rentry.org/adobealt) - Adobe Software Alternative Index
|
* 🌐 **[Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives)**, [2](https://rentry.org/adobealt) - Adobe Software Alternative Index
|
||||||
* ↪️ **[Editing Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
* ↪️ **[Adobe Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
||||||
* ⭐ **[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
|
* ⭐ **[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/)** / [Download Guide](https://cracksurl.com/how-to-download/) / [Telegram](https://t.me/cracksurldotcom)
|
* ⭐ **[CracksURL](https://cracksurl.com/)** / [Download Guide](https://cracksurl.com/how-to-download/) / [Telegram](https://t.me/cracksurldotcom)
|
||||||
* ⭐ **[LRepacks](https://lrepacks.net/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
* ⭐ **[LRepacks](https://lrepacks.net/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||||
@@ -105,6 +105,8 @@
|
|||||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
|
* ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
|
||||||
* [AIOWares](https://www.aiowares.com/) - Software Forum
|
* [AIOWares](https://www.aiowares.com/) - Software Forum
|
||||||
* [Moum](https://moum.top/en/)
|
* [Moum](https://moum.top/en/)
|
||||||
|
* [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
|
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/) - Oldschool Software
|
||||||
* [Libreware](https://t.me/Libreware) - Telegram Channels
|
* [Libreware](https://t.me/Libreware) - Telegram Channels
|
||||||
* [Rarewares](https://www.rarewares.org/) - Rare Software
|
* [Rarewares](https://www.rarewares.org/) - Rare Software
|
||||||
|
|||||||
@@ -127,9 +127,8 @@
|
|||||||
|
|
||||||
* ↪️ **[Photography / Cameras](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_photography_.2F_cameras)**
|
* ↪️ **[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)**
|
* ↪️ **[Typing Tests / Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_typing_lessons)**
|
||||||
* [HamExam](https://hamexam.org/), [AA9PW](https://www.aa9pw.com/) or [HamStudy](https://hamstudy.org/) - Ham Radio Practice Exams
|
|
||||||
* [Make it Yourself](https://makeityourself.org/) - 1000 DIY Projects / [Video](https://youtu.be/TSFJ2OH1PQA)
|
* [Make it Yourself](https://makeityourself.org/) - 1000 DIY Projects / [Video](https://youtu.be/TSFJ2OH1PQA)
|
||||||
* [Knots 3D](https://knots3d.com/), [Animated Knots](https://www.animatedknots.com/) or [NetKnots](https://www.netknots.com/) - Learn to Tie Knots
|
* [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
|
* [Ian's Shoelace Site](https://www.fieggen.com/shoelace/) - Learn to Tie Shoelaces
|
||||||
* [Perry Morse](https://www.perry.qa/morse), [Morse Typing Trainer](https://morse.withgoogle.com/learn/) or [ICWO](https://lcwo.net/) - Learn / Practice Morse Code
|
* [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
|
* [Lock Picking 101](https://www.lockpicking101.com/) - Lock Picking Forum
|
||||||
@@ -490,7 +489,6 @@
|
|||||||
* [Robot Shop](https://community.robotshop.com/) - Robotics Forum
|
* [Robot Shop](https://community.robotshop.com/) - Robotics Forum
|
||||||
* [VisRo Robotics](https://vis-ro.web.app) / [Discord](https://discord.com/invite/TfwZ3hH2D2) or [VittaScience](https://en.vittascience.com/code) - Robotics Learning
|
* [VisRo Robotics](https://vis-ro.web.app) / [Discord](https://discord.com/invite/TfwZ3hH2D2) or [VittaScience](https://en.vittascience.com/code) - Robotics Learning
|
||||||
* [Humanoid Robots Wiki](https://humanoids.wiki/w/Main_Page) - Robotics Courses Index
|
* [Humanoid Robots Wiki](https://humanoids.wiki/w/Main_Page) - Robotics Courses Index
|
||||||
* [Cyberbotics](https://cyberbotics.com/) - Robot Simulator
|
|
||||||
* [Diode](https://www.withdiode.com/) - 3D Hardware Simulator
|
* [Diode](https://www.withdiode.com/) - 3D Hardware Simulator
|
||||||
* [Wokwi](https://wokwi.com/) - Arduino / ESP32 Board Simulators
|
* [Wokwi](https://wokwi.com/) - Arduino / ESP32 Board Simulators
|
||||||
* [HDLBits](https://hdlbits.01xz.net/) - Learn Circuit Design
|
* [HDLBits](https://hdlbits.01xz.net/) - Learn Circuit Design
|
||||||
@@ -518,7 +516,6 @@
|
|||||||
* [NAR](https://www.nar.org/) - Project Rocketry Safety / Learning / [Facebook](https://www.facebook.com/groups/2255560886/)
|
* [NAR](https://www.nar.org/) - Project Rocketry Safety / Learning / [Facebook](https://www.facebook.com/groups/2255560886/)
|
||||||
* [Nakka Rocketry](https://nakka-rocketry.net/) - Project Rocket Technical Archive
|
* [Nakka Rocketry](https://nakka-rocketry.net/) - Project Rocket Technical Archive
|
||||||
* [Half Cat Rocketry](https://www.halfcatrocketry.com/) - Liquid Rocket Motor Info / Resources / [X](https://x.com/HalfCatRocketry) / [Discord](https://discord.gg/y2AH6ZegBX) / [GitHub](https://github.com/HalfCatRocketry)
|
* [Half Cat Rocketry](https://www.halfcatrocketry.com/) - Liquid Rocket Motor Info / Resources / [X](https://x.com/HalfCatRocketry) / [Discord](https://discord.gg/y2AH6ZegBX) / [GitHub](https://github.com/HalfCatRocketry)
|
||||||
* [ThrustCurve](https://www.thrustcurve.org/) - Rocket Motor Performance Database / [GitHub](https://github.com/JohnCoker/thrustcurve3)
|
|
||||||
* [Jacobs Rocketry](https://www.jacobsrocketry.com/) - Project Rocketry Info / Manuals
|
* [Jacobs Rocketry](https://www.jacobsrocketry.com/) - Project Rocketry Info / Manuals
|
||||||
* [MIT Rocket Team](https://wikis.mit.edu/confluence/display/RocketTeam/MIT+Rocket+Team+Home) - Official MIT Rocket Team Wiki / Resources Wikipedia
|
* [MIT Rocket Team](https://wikis.mit.edu/confluence/display/RocketTeam/MIT+Rocket+Team+Home) - Official MIT Rocket Team Wiki / Resources Wikipedia
|
||||||
* [OpenRocket](https://openrocket.info/) - Model Rocket Simulator / [Discord](https://discord.gg/qD2G5v2FAw) / [GitHub](https://github.com/openrocket/openrocket)
|
* [OpenRocket](https://openrocket.info/) - Model Rocket Simulator / [Discord](https://discord.gg/qD2G5v2FAw) / [GitHub](https://github.com/openrocket/openrocket)
|
||||||
@@ -824,7 +821,7 @@
|
|||||||
* [The Internet TESL Journal](http://iteslj.org/) - Resources for EFL and ESL Teachers
|
* [The Internet TESL Journal](http://iteslj.org/) - Resources for EFL and ESL Teachers
|
||||||
* [EFSET](https://www.efset.org/) - English Proficiency Test
|
* [EFSET](https://www.efset.org/) - English Proficiency Test
|
||||||
* [Spellcheck](https://spellcheck.xyz) - English Spelling Game
|
* [Spellcheck](https://spellcheck.xyz) - English Spelling Game
|
||||||
* [Learn English Online](https://www.learn-english-online.org/), [ESLFast](https://www.eslfast.com/), [AntiMoon](https://www.antimoon.com/), [Oxford Online](https://www.oxfordonlineenglish.com/free-english-lessons), [Learn English](https://learnenglishteens.britishcouncil.org/) or [Cambridge Online](https://www.cambridgeenglish.org/learning-english/) - English Lessons
|
* [Learn English Online](https://www.learn-english-online.org/), [ESLFast](https://www.eslfast.com/), [AntiMoon](https://www.antimoon.com/), [Oxford Online](https://www.oxfordonlineenglish.com/free-english-lessons), [Learn English](https://learnenglishteens.britishcouncil.org/ ) or [Cambridge Online](https://www.cambridgeenglish.org/learning-english/) - English Lessons
|
||||||
* [EnglishCentral](https://www.englishcentral.com/), [EngVid](https://www.engvid.com/) or [Voscreen](https://voscreen.com/) - English Video Lessons
|
* [EnglishCentral](https://www.englishcentral.com/), [EngVid](https://www.engvid.com/) or [Voscreen](https://voscreen.com/) - English Video Lessons
|
||||||
* [Frenglish](https://frenglish.ru/) or [English E-Reader](https://english-e-reader.net/) - English Learning Books
|
* [Frenglish](https://frenglish.ru/) or [English E-Reader](https://english-e-reader.net/) - English Learning Books
|
||||||
* [elllo](https://www.elllo.org/) or [Listening Lab](https://www.esl-lab.com/) - English Listening Lessons / Practice
|
* [elllo](https://www.elllo.org/) or [Listening Lab](https://www.esl-lab.com/) - English Listening Lessons / Practice
|
||||||
@@ -832,7 +829,6 @@
|
|||||||
* [WriteAndImprove](https://writeandimprove.com/) - Improve English Writing
|
* [WriteAndImprove](https://writeandimprove.com/) - Improve English Writing
|
||||||
* [Elsaspeak](https://elsaspeak.com/en/) - Practice English Conversations
|
* [Elsaspeak](https://elsaspeak.com/en/) - Practice English Conversations
|
||||||
* [yell0wsuit](https://yell0wsuit.page/english.html) or [OxfordLearnersDictionaries](https://www.oxfordlearnersdictionaries.com/) - Word Learning Site
|
* [yell0wsuit](https://yell0wsuit.page/english.html) or [OxfordLearnersDictionaries](https://www.oxfordlearnersdictionaries.com/) - Word Learning Site
|
||||||
* [CEFR Lookup](ttps://cefrlookup.com/) - CEFR Word Level Lookup
|
|
||||||
* [Podcasts in English](https://www.podcastsinenglish.com/) - English Learning Podcasts
|
* [Podcasts in English](https://www.podcastsinenglish.com/) - English Learning Podcasts
|
||||||
* [Langeek](https://langeek.co/) or [Ozdic](https://ozdic.com/) - Grammar / Vocabulary Language Learning
|
* [Langeek](https://langeek.co/) or [Ozdic](https://ozdic.com/) - Grammar / Vocabulary Language Learning
|
||||||
* [EnglishAccentMap](https://www.englishaccentsmap.com/) - English Accent Videos / Map
|
* [EnglishAccentMap](https://www.englishaccentsmap.com/) - English Accent Videos / Map
|
||||||
@@ -1372,6 +1368,7 @@
|
|||||||
* [IGCSE Papers](https://igcse.net/igcse-past-papers-download/), [RevisionScience](https://revisionscience.com/) or [Physics & Maths Tutor](https://www.physicsandmathstutor.com/) - Download Past GCSE / IGCSE Papers
|
* [IGCSE Papers](https://igcse.net/igcse-past-papers-download/), [RevisionScience](https://revisionscience.com/) or [Physics & Maths Tutor](https://www.physicsandmathstutor.com/) - Download Past GCSE / IGCSE Papers
|
||||||
* [anthropology](https://t.me/anthropology) - UPSC Telegram Channel
|
* [anthropology](https://t.me/anthropology) - UPSC Telegram Channel
|
||||||
* [GaryChamberlainLectureNotes](https://github.com/paulgp/GaryChamberlainLectureNotes) - Econometrics Lecture Notes
|
* [GaryChamberlainLectureNotes](https://github.com/paulgp/GaryChamberlainLectureNotes) - Econometrics Lecture Notes
|
||||||
|
* [HamExam](https://hamexam.org/), [AA9PW](https://www.aa9pw.com/) or [HamStudy](https://hamstudy.org/) - Ham Radio Practice Exams
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|||||||
@@ -78,7 +78,6 @@
|
|||||||
* [Convertio](https://convertio.co/) - File Converter / 100MB
|
* [Convertio](https://convertio.co/) - File Converter / 100MB
|
||||||
* [AnyConvert](https://anyconv.com/) - File Converter / 100MB
|
* [AnyConvert](https://anyconv.com/) - File Converter / 100MB
|
||||||
* [MiConv](https://miconv.com/) - File Converter / 75MB
|
* [MiConv](https://miconv.com/) - File Converter / 75MB
|
||||||
* [ConvertX](https://github.com/C4illin/ConvertX) - Self-Hosted Online File Converter
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -230,7 +229,6 @@
|
|||||||
* [ILovePDF](https://www.ilovepdf.com/)
|
* [ILovePDF](https://www.ilovepdf.com/)
|
||||||
* [BreezePDF](https://breezepdf.com/)
|
* [BreezePDF](https://breezepdf.com/)
|
||||||
* [ihatepdf](https://www.ihatepdf.cv/)
|
* [ihatepdf](https://www.ihatepdf.cv/)
|
||||||
* [PDRResizer](https://pdfresizer.com/)
|
|
||||||
* [DigiPDF](https://digipdf.app/?lang=en_US)
|
* [DigiPDF](https://digipdf.app/?lang=en_US)
|
||||||
* [PDF2Go](https://www.pdf2go.com/)
|
* [PDF2Go](https://www.pdf2go.com/)
|
||||||
* [PDFClear](https://www.pdfclear.com/)
|
* [PDFClear](https://www.pdfclear.com/)
|
||||||
@@ -323,7 +321,7 @@
|
|||||||
* [Send.now](https://send.now/) - 100GB / 15 Days After Last Download
|
* [Send.now](https://send.now/) - 100GB / 15 Days After Last Download
|
||||||
* [Transfer.it](https://transfer.it/) - Unlimited / 90 Days / Owned by Mega.nz
|
* [Transfer.it](https://transfer.it/) - Unlimited / 90 Days / Owned by Mega.nz
|
||||||
* [DesiUpload](https://desiupload.co/) - 15 Days (2GB per file / 30 Days w/ Account)
|
* [DesiUpload](https://desiupload.co/) - 15 Days (2GB per file / 30 Days w/ Account)
|
||||||
* [hostb](https://hostb.org/) - Unlimited / 30 Days After Last Download / [Source](https://r-w-x.org/r/hostb.git)
|
* [hostb](https://hostb.org/ ) - Unlimited / 30 Days After Last Download / [Source](https://r-w-x.org/r/hostb.git)
|
||||||
* [udrop](https://www.udrop.com/) - 5GB / 50GB on Signup / Forever
|
* [udrop](https://www.udrop.com/) - 5GB / 50GB on Signup / Forever
|
||||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Sign-Up Required
|
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Sign-Up Required
|
||||||
* [Ranoz](https://ranoz.gg/) - 20GB / 30 Days After Last Download
|
* [Ranoz](https://ranoz.gg/) - 20GB / 30 Days After Last Download
|
||||||
@@ -394,7 +392,6 @@
|
|||||||
***
|
***
|
||||||
|
|
||||||
* 🌐 **[Eylenburg Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** or [ComparisonTabl.es](https://comparisontabl.es/cloud-storage/) - Compare Cloud Storage Sites
|
* 🌐 **[Eylenburg Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** or [ComparisonTabl.es](https://comparisontabl.es/cloud-storage/) - Compare Cloud Storage Sites
|
||||||
* ↪️ **[Self-Hosted Cloud Storage](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_server_.2F_selfhosting)**
|
|
||||||
* ⭐ **[Google Drive](https://drive.google.com/)** - 15GB Free / 2 Years
|
* ⭐ **[Google Drive](https://drive.google.com/)** - 15GB Free / 2 Years
|
||||||
* ⭐ **[mega](https://mega.io/)** - 20GB Free / 3 Months / ~$10 for 3TB / [GitHub](https://github.com/meganz)
|
* ⭐ **[mega](https://mega.io/)** - 20GB Free / 3 Months / ~$10 for 3TB / [GitHub](https://github.com/meganz)
|
||||||
* [disk.yandex](https://disk.yandex.com/) - 5GB Free / 2 Years / ~$2 for 1TB
|
* [disk.yandex](https://disk.yandex.com/) - 5GB Free / 2 Years / ~$2 for 1TB
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
* ⭐ **[Project GLD](https://y0urd34th.github.io/Project-GLD/)** / [GitHub](https://github.com/Y0URD34TH/Project-GLD/) or **[GOG Galaxy](https://www.gog.com/galaxy)** (closed source) - Game Libraries / Launchers
|
* ⭐ **[Project GLD](https://y0urd34th.github.io/Project-GLD/)** / [GitHub](https://github.com/Y0URD34TH/Project-GLD/) or **[GOG Galaxy](https://www.gog.com/galaxy)** (closed source) - Game Libraries / Launchers
|
||||||
* [Fit Launcher](https://github.com/CarrotRub/Fit-Launcher/) - Unofficial Game Launcher / Torrent Client / [Discord](https://discord.gg/cXaBWdcUSF)
|
* [Fit Launcher](https://github.com/CarrotRub/Fit-Launcher/) - Unofficial Game Launcher / Torrent Client / [Discord](https://discord.gg/cXaBWdcUSF)
|
||||||
* [Launchbox](https://www.launchbox-app.com/) - Retro / Console Game Library / Launcher
|
* [Launchbox](https://www.launchbox-app.com/) - Retro / Console Game Library / Launcher
|
||||||
* [GameHUB Launcher](https://www.deviantart.com/not-finch/art/GameHUB-launcher-2-for-Rainmeter-785369648) or [GameHUB Lite](https://github.com/Producdevity/gamehub-lite) - Rainmeter Game Launcher
|
* [GameHUB Launcher](https://www.deviantart.com/not-finch/art/GameHUB-launcher-2-for-Rainmeter-785369648) - Rainmeter Game Launcher
|
||||||
* [OpenGamepadUI](https://github.com/ShadowBlip/OpenGamepadUI) - Gamepad Native Launcher
|
* [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)
|
* [TwintailLauncher](https://twintaillauncher.app/) - Game Launcher / Mod Engine for F2P Anime Games / [GitHub](https://github.com/TwintailTeam/TwintailLauncher)
|
||||||
* [Hytale F2P Launcher](https://rentry.co/FMHYB64#ht-launcher) - Modded Hytale Launcher / [Discord](https://discord.gg/MEyWUxt77m)
|
* [Hytale F2P Launcher](https://rentry.co/FMHYB64#ht-launcher) - Modded Hytale Launcher / [Discord](https://discord.gg/MEyWUxt77m)
|
||||||
@@ -134,7 +134,7 @@
|
|||||||
* ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Download Hidden](https://rentry.org/downloadingdeletednexusmods) / [Discord](https://discord.com/invite/nexusmods)
|
* ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Download Hidden](https://rentry.org/downloadingdeletednexusmods) / [Discord](https://discord.com/invite/nexusmods)
|
||||||
* ⭐ **[GameBanana](https://gamebanana.com/)** - Game Mods / [Discord](https://discord.com/invite/h5xJv9M)
|
* ⭐ **[GameBanana](https://gamebanana.com/)** - Game Mods / [Discord](https://discord.com/invite/h5xJv9M)
|
||||||
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** / [Discord](https://discord.com/invite/S99Ary5eba) or [Step Modifications](https://stepmodifications.org/) - Bethesda Game Modding Guides
|
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** / [Discord](https://discord.com/invite/S99Ary5eba) or [Step Modifications](https://stepmodifications.org/) - Bethesda Game Modding Guides
|
||||||
* [Wand](https://wand.com/) - Mods / Trainer Manager / Single Player Only / [Full](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25BA_download_games) (search) / [Discord](https://discord.com/invite/wemod)
|
* [Wand](https://wand.com/) - Mods / Trainer Manager / Single Player Only / [Full](https://cs.rin.ru/forum/index.php) (search) / [Discord](https://discord.com/invite/wemod)
|
||||||
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager
|
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager
|
||||||
* [Otis_Inf Camera Mods](https://kemono.cr/patreon/user/37343853) - Game Camera Mods
|
* [Otis_Inf Camera Mods](https://kemono.cr/patreon/user/37343853) - Game Camera Mods
|
||||||
* [Mod.io](https://www.mod.io/) - Cross-Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
* [Mod.io](https://www.mod.io/) - Cross-Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
||||||
@@ -263,6 +263,7 @@
|
|||||||
* [DC Media List](https://docs.google.com/spreadsheets/d/1znGm7MswCG0yuRHSvyHDUuIdeNSS7DP-yWOEqKYTAIY/) - Full DC Media List (1935-2024)
|
* [DC Media List](https://docs.google.com/spreadsheets/d/1znGm7MswCG0yuRHSvyHDUuIdeNSS7DP-yWOEqKYTAIY/) - Full DC Media List (1935-2024)
|
||||||
* [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database
|
* [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database
|
||||||
* [Delisted Games](https://delistedgames.com/) - Delisted Games Database
|
* [Delisted Games](https://delistedgames.com/) - Delisted Games Database
|
||||||
|
* [BoardGameGeek](https://boardgamegeek.com/) or [Kallax](https://kallax.io/) - Board Game Database
|
||||||
* [Are We Anti-Cheat Yet?](https://areweanticheatyet.com/) - Anti-Cheat Game Database / GNU/Linux or Wine/Proton Compatibility
|
* [Are We Anti-Cheat Yet?](https://areweanticheatyet.com/) - Anti-Cheat Game Database / GNU/Linux or Wine/Proton Compatibility
|
||||||
* [Unseen64](https://www.unseen64.net/) - Cancelled / Lost Games
|
* [Unseen64](https://www.unseen64.net/) - Cancelled / Lost Games
|
||||||
* [Internet Game Cars Database](https://igcd.net/) - Game Vehicle Database
|
* [Internet Game Cars Database](https://igcd.net/) - Game Vehicle Database
|
||||||
@@ -343,7 +344,7 @@
|
|||||||
|
|
||||||
## ▷ Store Tools
|
## ▷ Store Tools
|
||||||
|
|
||||||
* ⭐ **[SteamDB](https://steamdb.info/)** / [Extension](https://steamdb.info/extension/) / [Discord](https://discord.com/invite/steamdb), [BestOfSteam](https://bestofsteam.com/), [Steam250](https://steam250.com/) or [Steambase](https://steambase.io/) / [Extension](https://chromewebstore.google.com/detail/better-steam/iobagpbkbdkobggejjcnidehfenchpec) - Steam Insight Tools / Game Charts
|
* ⭐ **[SteamDB](https://steamdb.info/)** / [Extension](https://steamdb.info/extension/) / [Discord](https://discord.com/invite/steamdb), [Steam250](https://steam250.com/) or [Steambase](https://steambase.io/) / [Extension](https://chromewebstore.google.com/detail/better-steam/iobagpbkbdkobggejjcnidehfenchpec) - Steam Insight Tools
|
||||||
* [EGData](https://egdata.app/) - Epic Games Insight Tools / [GitHub](https://github.com/nachoaldamav/egdata)
|
* [EGData](https://egdata.app/) - Epic Games Insight Tools / [GitHub](https://github.com/nachoaldamav/egdata)
|
||||||
* [AugmentedSteam](https://augmentedsteam.com/) - Steam Web Enhancement Extension
|
* [AugmentedSteam](https://augmentedsteam.com/) - Steam Web Enhancement Extension
|
||||||
* [SteamScout](https://www.togeproductions.com/SteamScout/) - Steam Review Analyzer
|
* [SteamScout](https://www.togeproductions.com/SteamScout/) - Steam Review Analyzer
|
||||||
@@ -397,7 +398,6 @@
|
|||||||
|
|
||||||
* 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Single-Player Games
|
* 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Single-Player Games
|
||||||
* 🌐 **[CoD All](https://gitlab.com/xifil/cod-all)** - CoD Multiplayer Mod Index
|
* 🌐 **[CoD All](https://gitlab.com/xifil/cod-all)** - CoD Multiplayer Mod Index
|
||||||
* 🌐 **[CoD Servers](https://codservers.xyz/)** or **[GameServe.rs](https://gameserve.rs/)** - COD Multiplayer Mod Server Tracker
|
|
||||||
* ⭐ **[Plutonium](https://plutonium.pw/)** - COD BO1/BO2, MW3 and WaW Multiplayer Client / [Setup Guide](https://guides.viren070.me/plutonium) / [Video Guide](https://youtu.be/8F7hv98t8ck) / [Offline Launcher](https://github.com/JugAndDoubleTap/LanLauncher) / [Discord](https://discord.gg/d95y8ah)
|
* ⭐ **[Plutonium](https://plutonium.pw/)** - COD BO1/BO2, MW3 and WaW Multiplayer Client / [Setup Guide](https://guides.viren070.me/plutonium) / [Video Guide](https://youtu.be/8F7hv98t8ck) / [Offline Launcher](https://github.com/JugAndDoubleTap/LanLauncher) / [Discord](https://discord.gg/d95y8ah)
|
||||||
* ⭐ **[CnCNet](https://cncnet.org/)** - Multiplayer Command & Conquer, Red Alert & more / [Discord](https://discord.com/invite/aJRJFe5)
|
* ⭐ **[CnCNet](https://cncnet.org/)** - Multiplayer Command & Conquer, Red Alert & more / [Discord](https://discord.com/invite/aJRJFe5)
|
||||||
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
|
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
|
||||||
@@ -655,14 +655,13 @@
|
|||||||
## ▷ Launchers
|
## ▷ Launchers
|
||||||
|
|
||||||
* 🌐 **[Minecraft Launcher Comparisons](https://mc-launcher.tayou.org/)** - Minecraft Launcher Comparison Chart / [GitHub](https://github.com/TayouVR/MinecraftLauncherComparison)
|
* 🌐 **[Minecraft Launcher Comparisons](https://mc-launcher.tayou.org/)** - Minecraft Launcher Comparison Chart / [GitHub](https://github.com/TayouVR/MinecraftLauncherComparison)
|
||||||
* ⭐ **[ElyPrismLauncher](https://elyprismlauncher.github.io/)** / [Discord](https://discord.gg/5kcBCvnbTp) / [GitHub](https://github.com/ElyPrismLauncher/ElyPrismLauncher), **[Freesm Launcher](https://freesmlauncher.org/)** / [Theme Creator](https://new.freesmlauncher.org/themes) / [Telegram](https://t.me/freesmteam) / [Discord](https://discord.com/invite/6jjw4gjy4w) / [GitHub](https://github.com/FreesmTeam/FreesmLauncher) or [ShatteredPrism](https://github.com/LunaisLazier/ShatteredPrism) - Prism Launcher Forks w/ Alt Auth Server Support / [CurseForge Downloads](https://rentry.co/FMHYB64#curseforge-dl)
|
* ⭐ **[ElyPrismLauncher](https://elyprismlauncher.github.io/)** / [Discord](https://discord.gg/5kcBCvnbTp) / [GitHub](https://github.com/ElyPrismLauncher/ElyPrismLauncher), **[Freesm Launcher](https://freesmlauncher.org/)** / [Theme Creator](https://new.freesmlauncher.org/themes) / [Telegram](https://t.me/freesmteam) / [Discord](https://discord.com/invite/6jjw4gjy4w) / [GitHub](https://github.com/FreesmTeam/FreesmLauncher), [PrismLauncher-Cracked](https://github.com/Diegiwg/PrismLauncher-Cracked) or [ShatteredPrism](https://github.com/LunaisLazier/ShatteredPrism) - Prism Launcher Forks w/ Alt Auth Server Support
|
||||||
* [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
|
* [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 / [Ad Bypass](https://greasyfork.org/en/scripts/563188)
|
* [SkLauncher](https://skmedix.pl/) - User-friendly Launcher
|
||||||
* [AstralRinth](https://git.astralium.su/didirus/AstralRinth) - User-friendly Launcher
|
* [AstralRinth](https://git.astralium.su/didirus/AstralRinth) - User-friendly 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
|
* [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)
|
* [HMCL](https://hmcl.huangyuhui.net/) - Launcher / [GitHub](https://github.com/HMCL-dev/HMCL)
|
||||||
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher / [Discord](https://discord.com/invite/S4cSFjq)
|
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher / [Discord](https://discord.com/invite/S4cSFjq)
|
||||||
* [PrismLauncher-Cracked](https://github.com/Diegiwg/PrismLauncher-Cracked) - Launcher / Prism Launcher Fork w/ Alt Offline Support / [CurseForge Downloads](https://rentry.co/FMHYB64#curseforge-dl)
|
|
||||||
* [X Minecraft Launcher](https://xmcl.app/) - Launcher / [Discord](https://discord.com/invite/W5XVwYY7GQ)
|
* [X Minecraft Launcher](https://xmcl.app/) - Launcher / [Discord](https://discord.com/invite/W5XVwYY7GQ)
|
||||||
* [Legacy Launcher](https://llaun.ch/en) - Minimal Launcher / VPN May Be Required to View Site
|
* [Legacy Launcher](https://llaun.ch/en) - Minimal Launcher / VPN May Be Required to View Site
|
||||||
* [Quantum Launcher](https://mrmayman.github.io/quantumlauncher/) - Lightweight Launcher / [Discord](https://discord.com/invite/bWqRaSXar5) / [GitHub](https://github.com/Mrmayman/quantum-launcher/)
|
* [Quantum Launcher](https://mrmayman.github.io/quantumlauncher/) - Lightweight Launcher / [Discord](https://discord.com/invite/bWqRaSXar5) / [GitHub](https://github.com/Mrmayman/quantum-launcher/)
|
||||||
@@ -672,7 +671,7 @@
|
|||||||
|
|
||||||
## ▷ Mods / Data Packs
|
## ▷ Mods / Data Packs
|
||||||
|
|
||||||
* 🌐 **[Not Essential](https://alternatives.microcontrollers.dev/)** - List of Alternatives to Essential / [GitHub](https://github.com/MicrocontrollersDev/Alternative)
|
* 🌐 **[Not Essential](https://notessential.blurry.gay/)** - List of Alternatives to Essential
|
||||||
* 🌐 **[OptiFine Alternatives](https://optifine.alternatives.lambdaurora.dev/)** - OptiFine Alternatives for Fabric
|
* 🌐 **[OptiFine Alternatives](https://optifine.alternatives.lambdaurora.dev/)** - OptiFine Alternatives for Fabric
|
||||||
* ↪️ **[Mod Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_mod_.2F_resource_pack_indexes)**
|
* ↪️ **[Mod Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_mod_.2F_resource_pack_indexes)**
|
||||||
* ⭐ **[MCModdingGuide](https://rentry.org/MCModdingGuide)** - Minecraft Modding Guide
|
* ⭐ **[MCModdingGuide](https://rentry.org/MCModdingGuide)** - Minecraft Modding Guide
|
||||||
@@ -694,7 +693,7 @@
|
|||||||
* [SimpleVoicechat](https://modrinth.com/plugin/simple-voice-chat) - Feature-Rich Voice Chat Mod / [Discord](https://discord.gg/4dH2zwTmyX)
|
* [SimpleVoicechat](https://modrinth.com/plugin/simple-voice-chat) - Feature-Rich Voice Chat Mod / [Discord](https://discord.gg/4dH2zwTmyX)
|
||||||
* [ReplayMod](https://replaymod.com/) or [FlashBack](https://modrinth.com/mod/flashback) - Record Game Sessions
|
* [ReplayMod](https://replaymod.com/) or [FlashBack](https://modrinth.com/mod/flashback) - Record Game Sessions
|
||||||
* [Craftify](https://modrinth.com/mod/craftify) - Display / Control Playing Music
|
* [Craftify](https://modrinth.com/mod/craftify) - Display / Control Playing Music
|
||||||
* [Vanilla Tweaks](https://www.vanillatweaks.net/) / [Discord](https://discord.com/invite/qG53qwF), [Bedrock Tweaks](https://bedrocktweaks.net/), [Smithed](https://smithed.net/) or [Voodoo Packs](https://mc.voodoobeard.com/) / [Discord](https://discord.gg/SnJQcfq) - Minecraft Data Packs
|
* [Vanilla Tweaks](https://www.vanillatweaks.net/) / [Discord](https://discord.com/invite/qG53qwF), [Smithed](https://smithed.net/) or [Voodoo Packs](https://mc.voodoobeard.com/) / [Discord](https://discord.gg/SnJQcfq) - Minecraft Data Packs
|
||||||
* [Data Pack Generators](https://misode.github.io/) - Minecraft Data Pack Generators
|
* [Data Pack Generators](https://misode.github.io/) - Minecraft Data Pack Generators
|
||||||
* [MCreator](https://mcreator.net/) - Minecraft Mod Creator / [Hardware Link](https://github.com/Pylo/MCreatorLink) / [GitHub](https://github.com/MCreator/MCreator)
|
* [MCreator](https://mcreator.net/) - Minecraft Mod Creator / [Hardware Link](https://github.com/Pylo/MCreatorLink) / [GitHub](https://github.com/MCreator/MCreator)
|
||||||
* [Packwiz](https://packwiz.infra.link/) - Modpack CLI Distribution Tool / [GitHub](https://github.com/packwiz/packwiz)
|
* [Packwiz](https://packwiz.infra.link/) - Modpack CLI Distribution Tool / [GitHub](https://github.com/packwiz/packwiz)
|
||||||
@@ -891,9 +890,7 @@
|
|||||||
* ⭐ **[Doom Wiki](https://doomwiki.org/wiki/Entryway)** - Doom Wiki
|
* ⭐ **[Doom Wiki](https://doomwiki.org/wiki/Entryway)** - Doom Wiki
|
||||||
* ⭐ **[ZDoom](https://www.zdoom.org/downloads)** - Doom Source Port
|
* ⭐ **[ZDoom](https://www.zdoom.org/downloads)** - Doom Source Port
|
||||||
* ⭐ **[ZDaemon](https://www.zdaemon.org/)**, **[Doomseeker](https://doomseeker.drdteam.org/)**, [oDamex](https://odamex.net/), [DoomUtils](https://doomutils.ucoz.com/) or [Zandronum](https://zandronum.com/) / [Hosting / WADs](https://allfearthesentinel.com/) - Online Multiplayer Doom
|
* ⭐ **[ZDaemon](https://www.zdaemon.org/)**, **[Doomseeker](https://doomseeker.drdteam.org/)**, [oDamex](https://odamex.net/), [DoomUtils](https://doomutils.ucoz.com/) or [Zandronum](https://zandronum.com/) / [Hosting / WADs](https://allfearthesentinel.com/) - Online Multiplayer Doom
|
||||||
* [Classic DOOM](https://classicdoom.com/) - Doom Console Port Encyclopedia / Documents
|
* [Classic DOOM](https://classicdoom.com/) or [DoomWorld](https://www.doomworld.com/) - Doom Downloads
|
||||||
* [DoomWorld](https://www.doomworld.com/) - Doom Downloads
|
|
||||||
* [Freedoom](https://freedoom.github.io/) - Open-Source Doom Assets
|
|
||||||
* [Doom64 EX](https://doom64ex.wordpress.com/downloads/) - Doom 64 PC Port
|
* [Doom64 EX](https://doom64ex.wordpress.com/downloads/) - Doom 64 PC Port
|
||||||
* [dhewm3](https://dhewm3.org/) - Doom 3 Source Port
|
* [dhewm3](https://dhewm3.org/) - Doom 3 Source Port
|
||||||
* [Doom WADs Indexes](https://rentry.co/FMHYB64#doom-wads), [DoomsHack](https://doomshack.org/) or [Doom Wad Station](https://www.doomwadstation.net/) - Doom WADs
|
* [Doom WADs Indexes](https://rentry.co/FMHYB64#doom-wads), [DoomsHack](https://doomshack.org/) or [Doom Wad Station](https://www.doomwadstation.net/) - Doom WADs
|
||||||
@@ -972,23 +969,10 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ RimWorld Tools
|
|
||||||
|
|
||||||
* [RimWorld Wiki](https://rimworldwiki.com/) - Official Wiki
|
|
||||||
* [RimWorld Discord](https://discord.com/invite/rimworld) - Official Community Discord
|
|
||||||
* [RimSort](https://rimsort.github.io/RimSort/) - Mod Manager / [GitHub](https://github.com/RimSort/RimSort)
|
|
||||||
* [Judge My List](https://jumli.sysrqmagician.dev/) - Automated Modlist Feedback / [GitHub](https://github.com/sysrqmagician/jumli)
|
|
||||||
* [Workshop Walker](https://workshop-walker.disconsented.com/) - Improved Steam Workshop UI / [GitHub](https://github.com/disconsented/workshop-walker)
|
|
||||||
* [Void Archives](https://sites.google.com/view/void-archives/) - RimWorld Guides
|
|
||||||
* RimWorld Infographs - [Basic](https://mortalsmurph.com/?page_id=184) / [Anomaly DLC](http://mortalsmurph.com/?page_id=50)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Gacha Tools
|
## ▷ Gacha Tools
|
||||||
|
|
||||||
* 🌐 **[Paimon.moe](https://paimon.moe/)** or [Honey Impact](https://gensh.honeyhunterworld.com/) - Genshin Impact Resources / Tools
|
* 🌐 **[Paimon.moe](https://paimon.moe/)** or [Honey Impact](https://gensh.honeyhunterworld.com/) - Genshin Impact Resources / Tools
|
||||||
* 🌐 **[Honkai.gg](https://honkai.gg/)** - Honkai Star Rail Resources / Tools
|
* 🌐 **[Honkai.gg](https://honkai.gg/)** - Honkai Star Rail Resources / Tools
|
||||||
* 🌐 **[Umamusume Resources](https://steamcommunity.com/sharedfiles/filedetails/?id=3540114219)**, [2](https://rentry.co/uma-resources) - Umamusume Guides / Resources
|
|
||||||
* ⭐ **[Prydwen](https://www.prydwen.gg/)** - Gacha Game Guides / [Discord](https://discord.gg/prydwen)
|
* ⭐ **[Prydwen](https://www.prydwen.gg/)** - Gacha Game Guides / [Discord](https://discord.gg/prydwen)
|
||||||
* ⭐ **[Keqingmains](https://keqingmains.com/)** - Genshin Guides
|
* ⭐ **[Keqingmains](https://keqingmains.com/)** - Genshin Guides
|
||||||
* ⭐ **[XXMI](https://github.com/SpectrumQT/XXMI-Launcher)** - Gacha Games Modding Tool / [Discord](https://discord.gg/agmg)
|
* ⭐ **[XXMI](https://github.com/SpectrumQT/XXMI-Launcher)** - Gacha Games Modding Tool / [Discord](https://discord.gg/agmg)
|
||||||
|
|||||||
144
docs/gaming.md
@@ -59,7 +59,7 @@
|
|||||||
|
|
||||||
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Unofficial Launcher](https://github.com/CarrotRub/Fit-Launcher/)
|
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Unofficial Launcher](https://github.com/CarrotRub/Fit-Launcher/)
|
||||||
* ⭐ **[KaOsKrew](https://kaoskrew.org/)** - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
|
* ⭐ **[KaOsKrew](https://kaoskrew.org/)** - Download / 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 / Avoid Software / [Telegram](https://t.me/ARMGDDNGames) / [Discord](https://discord.gg/abeChzCy8X)
|
* ⭐ **[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)** - 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)
|
* [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)
|
* [M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/) - Download / [Discord](https://discord.gg/693hNBdymb)
|
||||||
@@ -111,7 +111,7 @@
|
|||||||
## ▷ Virtual Reality
|
## ▷ Virtual Reality
|
||||||
|
|
||||||
* ⭐ **[VRPirates](https://vrpirates.wiki/)**, [2](https://vrpirates.club/) - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.gg/tBKMZy7QDA)
|
* ⭐ **[VRPirates](https://vrpirates.wiki/)**, [2](https://vrpirates.club/) - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.gg/tBKMZy7QDA)
|
||||||
* ⭐ **[ARMGDDN Browser](https://github.com/KaladinDMP/AGBrowser)**, [2](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593) - VR Games / Avoid Software / [Telegram](https://t.me/ARMGDDNGames) / [Discord](https://discord.gg/abeChzCy8X)
|
* ⭐ **[ARMGDDN Browser](https://github.com/KaladinDMP/AGBrowser)**, [2](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593) - VR Games / [Telegram](https://t.me/ARMGDDNGames) / [Discord](https://discord.gg/abeChzCy8X)
|
||||||
* [Phoenix Place](https://phoenixplace.xyz/) - VR Games / Sign-Up Required / [Discord](https://discord.gg/wfJs3eJvHa)
|
* [Phoenix Place](https://phoenixplace.xyz/) - VR Games / Sign-Up Required / [Discord](https://discord.gg/wfJs3eJvHa)
|
||||||
* [The Gear VR Vault](https://vault.gearvr.net/) - VR Abandonware Games / Apps
|
* [The Gear VR Vault](https://vault.gearvr.net/) - VR Abandonware Games / Apps
|
||||||
* [r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy
|
* [r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy
|
||||||
@@ -144,7 +144,13 @@
|
|||||||
* [Old-Games.com](https://www.old-games.com/) - Abandonware / 2 Daily Downloads
|
* [Old-Games.com](https://www.old-games.com/) - Abandonware / 2 Daily Downloads
|
||||||
* [Win7Games](https://win7games.com/) - Classic Windows Games
|
* [Win7Games](https://win7games.com/) - Classic Windows Games
|
||||||
* [The U-M Software Archives](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
|
* [The U-M Software Archives](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
|
||||||
* [DOS HAVEN](https://www.doshaven.eu/), [FreeDOSGames](https://www.freedosgames.de/) or [Abandonware DOS](https://www.abandonwaredos.com/) - DOS Games
|
* [DOS Games Archive](https://www.dosgamesarchive.com/) - DOS Games / Online
|
||||||
|
* [DOS HAVEN](https://www.doshaven.eu/) - DOS Games
|
||||||
|
* [Best Old Games](https://www.bestoldgames.net/) - DOS Games / Online
|
||||||
|
* [DOSGames](https://dosgames.com/) - DOS Games / Online
|
||||||
|
* [FreeDOSGames](https://www.freedosgames.de/) - DOS Games
|
||||||
|
* [RGB Classic Games](https://www.classicdosgames.com/) - DOS Games / Online
|
||||||
|
* [Abandonware DOS](https://www.abandonwaredos.com/) - DOS Games
|
||||||
* [MSX Resource Center](https://www.msx.org/) - MSX Games
|
* [MSX Resource Center](https://www.msx.org/) - MSX Games
|
||||||
* [Generation MSX](https://www.generation-msx.nl/) - MSX Games
|
* [Generation MSX](https://www.generation-msx.nl/) - MSX Games
|
||||||
* [World of Spectrum](https://worldofspectrum.org/) - Sinclair ZX Spectrum Games
|
* [World of Spectrum](https://worldofspectrum.org/) - Sinclair ZX Spectrum Games
|
||||||
@@ -281,7 +287,6 @@
|
|||||||
|
|
||||||
* 🌐 **[ROM Managers](https://emulation.gametechwiki.com/index.php/ROM_managers)** - List of ROM Managers
|
* 🌐 **[ROM Managers](https://emulation.gametechwiki.com/index.php/ROM_managers)** - List of ROM Managers
|
||||||
* ⭐ **[Skraper](https://www.skraper.net/)** - ROM Cover / Metadata Scraper
|
* ⭐ **[Skraper](https://www.skraper.net/)** - ROM Cover / Metadata Scraper
|
||||||
* [ROM Tools](https://romtools.io/) - Multi-Tool / Patch / Convert / Compress / Analyze
|
|
||||||
* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer
|
* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer
|
||||||
* [Romm](https://romm.app/) - Self-Hosted ROM Manager / [Discord](https://discord.gg/RGPJHNMMwJ) / [GitHub](https://github.com/rommapp/romm)
|
* [Romm](https://romm.app/) - Self-Hosted ROM Manager / [Discord](https://discord.gg/RGPJHNMMwJ) / [GitHub](https://github.com/rommapp/romm)
|
||||||
* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/) / [GitHub](https://github.com/marcrobledo/RomPatcher.js/), [Rom Patcher JS](https://www.romhacking.net/patch/), [Hack64 Patcher](https://hack64.net/tools/patcher.php) or [FFF6Hacking Patcher](https://www.ff6hacking.com/patcher/) - Online ROM Patchers
|
* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/) / [GitHub](https://github.com/marcrobledo/RomPatcher.js/), [Rom Patcher JS](https://www.romhacking.net/patch/), [Hack64 Patcher](https://hack64.net/tools/patcher.php) or [FFF6Hacking Patcher](https://www.ff6hacking.com/patcher/) - Online ROM Patchers
|
||||||
@@ -297,10 +302,10 @@
|
|||||||
* 🌐 **[ROM Sites Wiki](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites)** - List of ROM Download 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)
|
* 🌐 **[r/ROMs Mega](https://r-roms.github.io/)** - ROMs / [Pastebins](https://rentry.co/FMHYB64#romcenter)
|
||||||
* ⭐ **[Myrient](https://rentry.co/FMHYB64#myrient)** - ROMs / [Telegram](https://t.me/s/myrient) / [Discord](https://discord.gg/4kVP9AuQ24)
|
* ⭐ **[Myrient](https://rentry.co/FMHYB64#myrient)** - ROMs / [Telegram](https://t.me/s/myrient) / [Discord](https://discord.gg/4kVP9AuQ24)
|
||||||
* ⭐ **[Axekin](https://www.axekin.com/)** - ROMs / [Discord](https://discord.gg/CUpf57y5Vg)
|
|
||||||
* ⭐ **[Vimms Lair](https://vimm.net/)** - ROMs / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
* ⭐ **[Vimms Lair](https://vimm.net/)** - ROMs / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
||||||
* ⭐ **[No-Intro](https://rentry.co/FMHYB64#no-intro)** - ROMs / [Discord](https://discord.gg/dvk6W6vZmp)
|
* ⭐ **[No-Intro](https://rentry.co/FMHYB64#no-intro)** - ROMs / [Discord](https://discord.gg/dvk6W6vZmp)
|
||||||
* ⭐ **[ROM Heaven](https://romheaven.com/)** - ROMs
|
* ⭐ **[ROM Heaven](https://romheaven.com/)** - ROMs
|
||||||
|
* ⭐ **[Axekin](https://www.axekin.com/)** - ROMs / [Discord](https://discord.gg/CUpf57y5Vg)
|
||||||
* ⭐ **[Ziperto](https://ziperto.com/)** - ROMs / [Discord](https://discord.gg/VgZ66bM87u)
|
* ⭐ **[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) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_sites)
|
* ⭐ **[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) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_sites)
|
||||||
* ⭐ **[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
|
* ⭐ **[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
|
||||||
@@ -424,8 +429,6 @@
|
|||||||
* [Play Classic Games](https://playclassic.games/) - Retro Consoles / Multiple-Emulators
|
* [Play Classic Games](https://playclassic.games/) - Retro Consoles / Multiple-Emulators
|
||||||
* [Virtual Consoles](https://virtualconsoles.com/) - Retro Consoles / Multiple-Emulators
|
* [Virtual Consoles](https://virtualconsoles.com/) - Retro Consoles / Multiple-Emulators
|
||||||
* [ClassicReload](https://classicreload.com/) - Retro Consoles / Multiple-Emulators
|
* [ClassicReload](https://classicreload.com/) - Retro Consoles / Multiple-Emulators
|
||||||
* [Emupedia](https://emupedia.net/beta/) - Retro Consoles
|
|
||||||
* [DOS Games Archive](https://www.dosgamesarchive.com/), [Best Old Games](https://www.bestoldgames.net/), [DOSGames](https://dosgames.com/) or [RGB Classic Games](https://www.classicdosgames.com/) - DOS Browser Emulators
|
|
||||||
* [Meowio](https://www.information-superhighway.net/meowio/) - NES Browser Emulator / Custom Music + Sounds
|
* [Meowio](https://www.information-superhighway.net/meowio/) - NES Browser Emulator / Custom Music + Sounds
|
||||||
* [SNESFun](https://www.snesfun.com/) - SNES Browser Emulator / Multiplayer
|
* [SNESFun](https://www.snesfun.com/) - SNES Browser Emulator / Multiplayer
|
||||||
* [PS1FUN](https://www.ps1fun.com/) - PS1 Browser Emulator
|
* [PS1FUN](https://www.ps1fun.com/) - PS1 Browser Emulator
|
||||||
@@ -445,8 +448,7 @@
|
|||||||
# ► Puzzle Games
|
# ► Puzzle Games
|
||||||
|
|
||||||
* ⭐ **[Simon Tatham's Puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/)** - Multiple Puzzle Games / [Mobile](https://github.com/chrisboyle/sgtpuzzles)
|
* ⭐ **[Simon Tatham's Puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/)** - Multiple Puzzle Games / [Mobile](https://github.com/chrisboyle/sgtpuzzles)
|
||||||
* [Puzzmo](https://www.puzzmo.com/) or [Arkadium](https://www.arkadium.com/) - Daily Word + Puzzle Games
|
* [Puzzmo](https://www.puzzmo.com/) - Daily Word + Puzzle Games
|
||||||
* [ThinkyGames](https://thinkygames.com/games/?free=true&platforms=Web) - Indie Puzzle Games
|
|
||||||
* [Puzzle Loop](https://www.puzzle-loop.com/) - Multiple Puzzle Games / [Discord](https://discord.gg/YJp77jFzWv)
|
* [Puzzle Loop](https://www.puzzle-loop.com/) - Multiple Puzzle Games / [Discord](https://discord.gg/YJp77jFzWv)
|
||||||
* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws
|
* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws
|
||||||
* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles
|
* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles
|
||||||
@@ -526,7 +528,7 @@
|
|||||||
* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Games
|
* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Games
|
||||||
* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online
|
* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online
|
||||||
* [Squaredle](https://squaredle.app/) - Daily Word Puzzle
|
* [Squaredle](https://squaredle.app/) - Daily Word Puzzle
|
||||||
* [Linxicon](https://linxicon.com/) or [word.golf](https://www.word.golf/) - Word Connection Games
|
* [Linxicon](https://linxicon.com/) - Word Connection Game
|
||||||
* [Wordle VS](https://wordlevs.com/) - Multiplayer Wordle
|
* [Wordle VS](https://wordlevs.com/) - Multiplayer Wordle
|
||||||
* [Infinite Wordle](https://gregcameron.com/infinite-wordle/) or [Wordle Unlimited](https://wordleunlimited.org/) - Wordle without Daily Limits
|
* [Infinite Wordle](https://gregcameron.com/infinite-wordle/) or [Wordle Unlimited](https://wordleunlimited.org/) - Wordle without Daily Limits
|
||||||
* [Fusele](https://fusele.netlify.app/) - Wordle Variant
|
* [Fusele](https://fusele.netlify.app/) - Wordle Variant
|
||||||
@@ -544,9 +546,7 @@
|
|||||||
|
|
||||||
# ► Tabletop Games
|
# ► Tabletop Games
|
||||||
|
|
||||||
* 🌐 **[BoardGameGeek](https://boardgamegeek.com/)** or **[Kallax](https://kallax.io/)** - Board Game Databases
|
* 🌐 **[Online Board Games](https://drive.google.com/file/d/1NO-05LM-SakbwqNajBXgIO4HuCSkBd6n/view)** - Evan Leed's Board Games Index
|
||||||
* 🌐 **[Pub Meeple](https://www.pubmeeple.com/rankings)** - Community Board Game Rankings
|
|
||||||
* 🌐 **[Online Board Games](https://drive.google.com/file/d/1NO-05LM-SakbwqNajBXgIO4HuCSkBd6n/view)** - Online Board Game Database / Image
|
|
||||||
* ↪️ **[Tabletop Tools & Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools/#wiki_.25B7_tabletop_tools)**
|
* ↪️ **[Tabletop Tools & Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools/#wiki_.25B7_tabletop_tools)**
|
||||||
* ⭐ **[Roll20](https://roll20.net/)** / [Discord](https://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
|
||||||
* [BoardGameplay](https://boardgameplay.com/) - Online Board Games / [Discord](https://discord.gg/EC5ZvQa7M5)
|
* [BoardGameplay](https://boardgameplay.com/) - Online Board Games / [Discord](https://discord.gg/EC5ZvQa7M5)
|
||||||
@@ -576,13 +576,9 @@
|
|||||||
## ▷ Chess
|
## ▷ Chess
|
||||||
|
|
||||||
* ↪️ **[Chess Learning / Practice](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_chess)**
|
* ↪️ **[Chess Learning / Practice](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_chess)**
|
||||||
* ⭐ **[lichess](https://lichess.org/)** - Chess Platform / [Discord](https://discord.com/invite/lichess) / [GitHub](https://github.com/lichess-org)
|
* ⭐ **[lichess](https://lichess.org/)** / [Discord](https://discord.com/invite/lichess) / [GitHub](https://github.com/lichess-org), [PyChess](https://www.pychess.org/) / [Discord](https://discord.gg/aPs8RKr) / [GitHub](https://github.com/gbtami/pychess-variants), [GameKnot](https://gameknot.com/), [SparkChess](https://www.sparkchess.com/) or [Chess.com](https://www.chess.com/) / [Discord](https://discord.gg/3VbUQME) - Chess Platforms
|
||||||
* ⭐ **lichess Tools** - [Mobile Apps](https://lichess.org/mobile) / [Prettier UI](https://prettierlichess.github.io/) / [Themes](https://github.com/algertc/prettierlichess-themes) / [Leagues](https://www.lichess4545.com/) / [Extra Functionality](https://lichess.org/page/extend)
|
* ⭐ **lichess Tools** - [Mobile Apps](https://lichess.org/mobile) / [Prettier UI](https://prettierlichess.github.io/) / [Themes](https://github.com/algertc/prettierlichess-themes) / [Leagues](https://www.lichess4545.com/) / [Extra Functionality](https://lichess.org/page/extend)
|
||||||
* ⭐ **[Print Chess](https://www.printchess.com/)** - Printable Paper Chess Set
|
* ⭐ **[Print Chess](https://www.printchess.com/)** - Printable Paper Chess Set
|
||||||
* [Chess.com](https://www.chess.com/) - Chess Platform / [Discord](https://discord.gg/3VbUQME) - Chess Platform
|
|
||||||
* [PyChess](https://www.pychess.org/) - Chess Platform / [Discord](https://discord.gg/aPs8RKr) / [GitHub](https://github.com/gbtami/pychess-variants)
|
|
||||||
* [GameKnot](https://gameknot.com/) - Chess Platform
|
|
||||||
* [SparkChess](https://www.sparkchess.com/) - Chess Platform
|
|
||||||
* [Chesses](https://pippinbarr.com/chesses/), [TheChessDirectory](https://thechessdirectory.com/play-chess) or [Omnichess](https://omnichess.club/) - Multiple Styles of Chess
|
* [Chesses](https://pippinbarr.com/chesses/), [TheChessDirectory](https://thechessdirectory.com/play-chess) or [Omnichess](https://omnichess.club/) - Multiple Styles of Chess
|
||||||
* [Echo Chess](https://echochess.com/) - Morph-Style Chess / [Discord](https://discord.gg/echochess)
|
* [Echo Chess](https://echochess.com/) - Morph-Style Chess / [Discord](https://discord.gg/echochess)
|
||||||
* [The Kilobyte's Gambit](https://vole.wtf/kilobytes-gambit/) - Retro-Style Chess
|
* [The Kilobyte's Gambit](https://vole.wtf/kilobytes-gambit/) - Retro-Style Chess
|
||||||
@@ -674,77 +670,54 @@
|
|||||||
|
|
||||||
## ▷ Multi-Game Sites
|
## ▷ Multi-Game Sites
|
||||||
|
|
||||||
* ⭐ **[Flash Arch](https://flasharch.com/en)** - Browser Game Aggregator / [Discord](https://discord.com/invite/guQ9Afn)
|
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Play Online](https://ooooooooo.ooo/) / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYB64#software-library-flash) - Flash Game Archives / [Flash Emulator](https://ruffle.rs/) / [Clean Builds](https://github.com/darktohka/clean-flash-builds/) / [Mobile](https://github.com/ruffle-rs/ruffle-android)
|
||||||
* ⭐ **[Poki](https://poki.com/)** - Browser Game Aggregator
|
* ⭐ **[itch.io web games](https://itch.io/games/free/platform-web)** - Browser Games / [Discord](https://discord.gg/qDaYeXPsRK)
|
||||||
* ⭐ **[Crazy Games](https://www.crazygames.com/)** - Browser Game Aggregator / [Discord](https://discord.com/invite/crazygames)
|
* ⭐ **[Newgrounds](https://www.newgrounds.com/games)** - Browser Games
|
||||||
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** - Flash Game Archive App / [Play Online](https://ooooooooo.ooo/) / [Discord](https://discord.gg/Z4gGtJvvn8)
|
* ⭐ **[Armor Games](https://armorgames.com/)** - Browser Games
|
||||||
* ⭐ **Flash Tools** - [Flash Emulator](https://ruffle.rs/) / [Clean Builds](https://github.com/darktohka/clean-flash-builds/) / [Mobile](https://github.com/ruffle-rs/ruffle-android)
|
* [Nitrome](https://www.nitrome.com/) - Browser Games
|
||||||
* [Addicting Games](https://www.addictinggames.com/) - Browser Game Aggregator
|
* [Browser Craft](https://browsercraft.com/) - Indie Browser Games
|
||||||
* [Kongregate](https://www.kongregate.com/) - Browser Game Aggregator
|
* [Addicting Games](https://www.addictinggames.com/) - Browser Games
|
||||||
* [Game-Game](https://game-game.com/) - Browser Game Aggregator
|
* [Kongregate](https://www.kongregate.com/) - Browser Games
|
||||||
* [Flash Library](https://rentry.co/FMHYB64#software-library-flash) - Browser Game Aggregator
|
* [Y8](https://www.y8.com/) - Browser Games
|
||||||
* [Nexiloop Games](https://nexiloop.games/) - Browser Game Aggregator / [Discord](https://discord.gg/Wvxr9YsHHf)
|
* [VAPOR](https://vapor.my/) - Browser Games / Ports / Unblocked / [Discord](https://discord.com/invite/BHwm9rrK55)
|
||||||
* [Andkon](https://andkon.com/arcade/) - Browser Game Aggregator
|
* [GN-Math](https://gn-math.dev/), [2](https://gn-math-t.github.io/) - Browser Games / Ports / Unblocked / [Discord](https://discord.com/invite/D4c9VFYWyU)
|
||||||
* [Y8](https://www.y8.com/) - Browser Game Aggregator
|
* [Truffled](https://truffled.lol/g) - Browser Games / Ports / Unblocked
|
||||||
* [Alfy](https://www.alfy.com/) - Browser Game Aggregator
|
* [Selenite](https://selenite.cc/), [2](https://selenite.skysthelimit.dev/), [3](https://selenite.skys.day/) - Browser Games / Ports / Unblocked / [Discord](https://discord.gg/7jyufnwJNf)
|
||||||
* [Miniplay](https://www.miniplay.com/) - Browser Game Aggregator
|
* [Poki](https://poki.com/) - Browser Games
|
||||||
* [Snokido](https://www.snokido.com/) - Browser Game Aggregator
|
* [Crazy Games](https://www.crazygames.com/) - Browser Games
|
||||||
* [FreeGames](https://freegames.org/) - Browser Game Aggregator
|
* [GamezHero](https://www.gamezhero.com/) - Browser Games
|
||||||
* [GamezHero](https://www.gamezhero.com/) - Browser Game Aggregator
|
* [Nexiloop Games](https://nexiloop.games/) - Browser Games / [Discord](https://discord.gg/Wvxr9YsHHf)
|
||||||
* [Yandex Games](https://yandex.com/games/) - Browser Game Aggregator
|
* [Deepnight](https://deepnight.net/) - Browser Games
|
||||||
* [yell0wsuit](https://yell0wsuit.page/games.html) - Browser Game Aggregator
|
* [Nicky Case](https://ncase.me/) - Browser Games
|
||||||
* [GamePix](https://www.gamepix.com/) - Browser Game Aggregator
|
* [yell0wsuit](https://yell0wsuit.page/games.html) - Browser Games
|
||||||
* [Friv](https://www.friv.com/) - Browser Game Aggregator
|
* [watabou](https://watabou.itch.io/) - Browser Games
|
||||||
* [RoundGames](https://www.roundgames.com/) - Browser Game Aggregator
|
* [DAN-BALL](https://dan-ball.jp/en/) - Browser Games
|
||||||
* [Flash by Night](http://www.flashbynight.com/) - Browser Game Aggregator
|
* [Miniplay](https://www.miniplay.com/) - Browser Games
|
||||||
* [FlashMuseum](https://flashmuseum.org/) - Browser Game Aggregator
|
* [Yandex Games](https://yandex.com/games/) - Browser Games
|
||||||
* [FlashLegacy](https://www.flashlegacy.com/) - Browser Game Aggregator
|
* [Arkadium](https://www.arkadium.com/) - Browser Games
|
||||||
* [iogames.space](https://iogames.space/) - Browser Game Aggregator
|
* [GamePix](https://www.gamepix.com/) - Browser Games
|
||||||
* [IOGames](https://iogames.party/) - Browser Game Aggregator
|
* [RoundGames](https://www.roundgames.com/) - Browser Games
|
||||||
* [Kevin Games](https://kevin.games/) - Browser Game Aggregator
|
* [Snokido](https://www.snokido.com/) - Browser Games
|
||||||
* [TheBestarcade](https://html5.thebestarcadescript.com/) - Browser Game Aggregator
|
* [Game-Game](https://game-game.com/) - Browser Games
|
||||||
* [AlbinoBlackSheep](https://www.albinoblacksheep.com/games/) - Browser Game Aggregator
|
* [Alfy](https://www.alfy.com/) - Browser Games
|
||||||
|
* [Andkon](https://andkon.com/arcade/) - Browser Games
|
||||||
|
* [FreeGames](https://freegames.org/) - Browser Games
|
||||||
|
* [Friv](https://www.friv.com/) - Browser Games
|
||||||
|
* [Emupedia](https://emupedia.net/beta/) - Browser Games
|
||||||
|
* [Cool Math Games](https://www.coolmathgames.com/) - Browser Games
|
||||||
|
* [Unblock KISD](https://sites.google.com/view/unblockkisd/) - Browser Games / Unblocked
|
||||||
|
* [UBG365](https://ubg365.github.io/) - Browser Games / Unblocked
|
||||||
|
* [US5](https://us5.thetravelingtourguide.com/) - Browser Games / Unblocked / [Discord](https://discord.com/invite/VDA8Ngx38Z)
|
||||||
* [r/WebGames](https://reddit.com/r/WebGames) - Browser Games Subreddit
|
* [r/WebGames](https://reddit.com/r/WebGames) - Browser Games Subreddit
|
||||||
* [Spatial](https://www.spatial.io/) - 3D Browser Games
|
* [Spatial](https://www.spatial.io/) - 3D Browser Games
|
||||||
* [drifted](https://www.drifted.com/) - Drifting-Focused Browser Games
|
* [drifted](https://www.drifted.com/) - Drifting-Focused Browser Games
|
||||||
* [Curated PICO-8](https://nerdyteachers.com/PICO-8/Games/) - PICO-8 Browser Games
|
* [Curated PICO-8](https://nerdyteachers.com/PICO-8/Games/) - PICO-8 Browser Games
|
||||||
* [Noel Friedrich](https://www.noel-friedrich.de/terminal/) - Browser Terminal 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
|
* [ABA Games](https://www.asahi-net.or.jp/~cs8k-cyu/browser.html) - Single Button Games
|
||||||
|
* [FlashMuseum](https://flashmuseum.org/), [Flash Arch](https://flasharch.com/en), [FlashLegacy](https://www.flashlegacy.com/) 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
|
||||||
## ▷ Indie Browser Games
|
* [iogames.space](https://iogames.space/), [itch.io](https://graebor.itch.io/), [IOGames](https://iogames.party/), [Kindanice](https://kindanice.itch.io/), [Jezzamon](https://jezzamon.itch.io/), [Modd.io](https://www.modd.io/) or [Kevin Games](https://kevin.games/) - .io Games
|
||||||
|
|
||||||
* 🌐 **[Browser Craft](https://browsercraft.com/)** - Indie Browser Game Index / Tracker
|
|
||||||
* ⭐ **[Newgrounds](https://www.newgrounds.com/games)** - Indie Games / Community Developed
|
|
||||||
* ⭐ **[Nitrome](https://www.nitrome.com/)** - Indie Games / In-House Dev Team
|
|
||||||
* ⭐ **[itch.io web games](https://itch.io/games/free/platform-web)** - Indie Games / Community Developed / [Discord](https://discord.gg/qDaYeXPsRK)
|
|
||||||
* ⭐ **[Armor Games](https://armorgames.com/)** - Indie Games / Official Publisher
|
|
||||||
* [Js13kGames](https://js13kgames.com/entries) - Indie Browser Game Competition
|
|
||||||
* [Deepnight](https://deepnight.net/) - Indie Games / In-House Dev Team
|
|
||||||
* [watabou](https://watabou.itch.io/) - Indie Games / In-House Dev Team
|
|
||||||
* [DAN-BALL](https://dan-ball.jp/en/) - Indie Games / In-House Dev Team
|
|
||||||
* [Modd.io](https://www.modd.io/) - Indie Games / Community Developed
|
|
||||||
* [Kindanice](https://kindanice.itch.io/) - Indie Games / itch.io Developer
|
|
||||||
* [Graeme Borland](https://graebor.itch.io/) - Indie Games / itch.io Developer
|
|
||||||
* [Jezzamon](https://jezzamon.itch.io/) - Indie Games / itch.io Developer
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Unblocked Games
|
|
||||||
|
|
||||||
* **Note** - These are browser game collections that also function as proxies / unblockers.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
* ⭐ **[Selenite](https://selenite.cc/)**, [2](https://selenite.skysthelimit.dev/), [3](https://selenite.skys.day/) - Browser Games / Ports / [Discord](https://discord.gg/7jyufnwJNf)
|
|
||||||
* [VAPOR](https://vapor.my/) - Browser Games / Ports / [Discord](https://discord.com/invite/BHwm9rrK55)
|
|
||||||
* [GN-Math](https://gn-math.dev/), [2](https://gn-math-t.github.io/) - Browser Games / Ports / [Discord](https://discord.com/invite/D4c9VFYWyU)
|
|
||||||
* [Truffled](https://truffled.lol/g) - Browser Games / Ports
|
|
||||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/) - Browser Games
|
|
||||||
* [UBG365](https://ubg365.github.io/) - Browser Games
|
|
||||||
* [US5](https://us5.thetravelingtourguide.com/) - Browser Games / [Discord](https://discord.com/invite/VDA8Ngx38Z)
|
|
||||||
* [Cool Math Games](https://www.coolmathgames.com/) - Educational Browser Games
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -756,7 +729,6 @@
|
|||||||
* ⭐ **[Gidd.io](https://gidd.io/)** - Multiple Games
|
* ⭐ **[Gidd.io](https://gidd.io/)** - Multiple Games
|
||||||
* ⭐ **[Gartic Phone](https://garticphone.com/)** - Telephone Game / [Discord](https://discord.gg/gartic)
|
* ⭐ **[Gartic Phone](https://garticphone.com/)** - Telephone Game / [Discord](https://discord.gg/gartic)
|
||||||
* ⭐ **[skribbl](https://skribbl.io/)** / [Extra Features](https://typo.rip/) / [GitHub](https://github.com/toobeeh/skribbltypo), [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
|
* ⭐ **[skribbl](https://skribbl.io/)** / [Extra Features](https://typo.rip/) / [GitHub](https://github.com/toobeeh/skribbltypo), [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
|
||||||
* [GamingCouch](https://gamingcouch.com/) - Multiplayer Phone Controller / Gamepad Games / [Discord](https://discord.gg/UqSX9ZGz5u)
|
|
||||||
* [Tough Love Arena](https://toughlovearena.com/) - Multiplayer Browser Fighting Game / [Discord](https://discord.gg/gMBRaUPDT7)
|
* [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)
|
* [AWBW](https://awbw.amarriner.com/) - Multiplayer Browser Advance Wars / [Discord](https://discord.com/invite/rPpWT2x)
|
||||||
* [Bloxd](https://bloxd.io/) / [Texture Editor / Assets](https://www.bloxdforge.com/) / [Discord](https://discord.com/invite/vwMp5y25RX) or [MiniBlox](https://miniblox.io/) / [Discord](https://discord.com/invite/nAwzkUJNmb) - Online Minecraft Clones
|
* [Bloxd](https://bloxd.io/) / [Texture Editor / Assets](https://www.bloxdforge.com/) / [Discord](https://discord.com/invite/vwMp5y25RX) or [MiniBlox](https://miniblox.io/) / [Discord](https://discord.com/invite/nAwzkUJNmb) - Online Minecraft Clones
|
||||||
@@ -776,7 +748,6 @@
|
|||||||
* [Foony](https://foony.com/) - Multiple Games
|
* [Foony](https://foony.com/) - Multiple Games
|
||||||
* [Pixoguess](https://pixoguess.io/) - Guess Pixelated Images
|
* [Pixoguess](https://pixoguess.io/) - Guess Pixelated Images
|
||||||
* [Tensor Trust](https://tensortrust.ai/) - AI Prompting Multiplayer Skill Game
|
* [Tensor Trust](https://tensortrust.ai/) - AI Prompting Multiplayer Skill Game
|
||||||
* [AI Bingo](https://ai-bingo.lipsumar.io/) - AI Art Guessing Games
|
|
||||||
* [Deeeep](https://deeeep.io/) - Multiplayer Feeding Frenzy Games
|
* [Deeeep](https://deeeep.io/) - Multiplayer Feeding Frenzy Games
|
||||||
* [fsh.zone](https://fsh.zone/) - Multiplayer Fishing Game / [Discord](https://discord.com/invite/FKEzJSf)
|
* [fsh.zone](https://fsh.zone/) - Multiplayer Fishing Game / [Discord](https://discord.com/invite/FKEzJSf)
|
||||||
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
|
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
|
||||||
@@ -817,7 +788,6 @@
|
|||||||
* [OpenArena Live](https://kosmi.io/openarena) or [Q1K3](https://js13kgames.com/games/q1k3/index.html) - Quake Inspired 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
|
* [WebLiero](https://www.webliero.com/) - Multiplayer Liero Clone
|
||||||
* [Voxiom](https://voxiom.io/) - Minecraft Inspired PVP FPS / [Discord](https://discord.gg/GBFtRcY)
|
* [Voxiom](https://voxiom.io/) - Minecraft Inspired PVP FPS / [Discord](https://discord.gg/GBFtRcY)
|
||||||
* [Debug Survivor](https://debug-survivor.leek.io/) - Dev Themed Roguelike Shooter
|
|
||||||
* [Venge](https://venge.io/) - PvP FPS
|
* [Venge](https://venge.io/) - PvP FPS
|
||||||
* [kour.io](https://kour.io/), [2](https://kourio.online/) - PvP FPS
|
* [kour.io](https://kour.io/), [2](https://kourio.online/) - PvP FPS
|
||||||
* [ev.io](https://ev.io/) - PvP FPS
|
* [ev.io](https://ev.io/) - PvP FPS
|
||||||
@@ -963,7 +933,7 @@
|
|||||||
* [ChessGuessr](https://www.chessguessr.com/) - Chess Style Guessing Game
|
* [ChessGuessr](https://www.chessguessr.com/) - Chess Style Guessing Game
|
||||||
* [Huedle](https://huedle.com/), [Color Rush](https://www.colorrush.io/), [WhatTheHex](https://yizzle.com/whatthehex/) or [Hexcodle](https://www.hexcodle.com/) - Hex Code Guessing Games
|
* [Huedle](https://huedle.com/), [Color Rush](https://www.colorrush.io/), [WhatTheHex](https://yizzle.com/whatthehex/) or [Hexcodle](https://www.hexcodle.com/) - Hex Code Guessing Games
|
||||||
* [Nerdle](https://nerdlegame.com/), [Additional](https://additional.today/) or [Countle](https://www.countle.org/) - Math Guessing Games
|
* [Nerdle](https://nerdlegame.com/), [Additional](https://additional.today/) or [Countle](https://www.countle.org/) - Math Guessing Games
|
||||||
* [MCdle](https://www.mcdle.net/) or [Minecraftle](https://minecraftle.zachmanson.com/) - Minecraft Guessing Games
|
* [Minecraftle](https://minecraftle.zachmanson.com/) - Minecraft Recipe Guessing Game
|
||||||
* [Gearoid Pokémon](https://gearoid.me/pokemon/), [Pokedle](https://pokedle.net/) or [Squirdle](https://squirdle.fireblend.com/) - Pokémon Guessing Games
|
* [Gearoid Pokémon](https://gearoid.me/pokemon/), [Pokedle](https://pokedle.net/) or [Squirdle](https://squirdle.fireblend.com/) - Pokémon Guessing Games
|
||||||
* [Pokémon Infinite Heardle](https://pkmn-infinite-heardle.glitch.me/) - Pokémon Music Guessing
|
* [Pokémon Infinite Heardle](https://pkmn-infinite-heardle.glitch.me/) - Pokémon Music Guessing
|
||||||
* [LoLdle](https://loldle.net/) - League of Legends Guessing Games
|
* [LoLdle](https://loldle.net/) - League of Legends Guessing Games
|
||||||
|
|||||||
@@ -23,11 +23,11 @@
|
|||||||
|
|
||||||
## ▷ Editing Software
|
## ▷ Editing Software
|
||||||
|
|
||||||
* ↪️ **[Editing Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
* ↪️ **[Adobe Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
||||||
* ↪️ **[Android Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_image_tools)**
|
* ↪️ **[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)
|
* ⭐ **[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)
|
* ⭐ **[ImageMagick](https://imagemagick.org/index.php)** / Windows, Mac, Linux, iOS / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php) / [GitHub](https://github.com/imagemagick/imagemagick)
|
||||||
* [Affinity](https://www.affinity.studio/) / Windows, Mac / [No Login Method](https://rentry.co/FMHYB64#affinity)
|
* [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/)
|
* [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)
|
* [PhotoDemon](https://photodemon.org/) / Windows / [GitHub](https://github.com/tannerhelland/PhotoDemon)
|
||||||
* [RapidRAW](https://github.com/CyberTimon/RapidRAW) / Windows, Mac, Linux
|
* [RapidRAW](https://github.com/CyberTimon/RapidRAW) / Windows, Mac, Linux
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
* [remove.bg](https://www.remove.bg/) - Background Remover / [GIMP Plugin](https://github.com/manu12121999/RemoveBG-GIMP)
|
* [remove.bg](https://www.remove.bg/) - Background Remover / [GIMP Plugin](https://github.com/manu12121999/RemoveBG-GIMP)
|
||||||
* [ORMBG](https://huggingface.co/spaces/schirrmacher/ormbg) - Human Optimised Background Remover
|
* [ORMBG](https://huggingface.co/spaces/schirrmacher/ormbg) - Human Optimised Background Remover
|
||||||
* [Rembg](https://github.com/danielgatis/rembg) - Self-Hosted Background Remover
|
* [Rembg](https://github.com/danielgatis/rembg) - Self-Hosted Background Remover
|
||||||
* [Segment Anything](https://aidemos.meta.com/segment-anything) - Visual Segmentation / [GUI](https://github.com/dibrale/samist) / [Stable Diffusion WebUI](https://github.com/continue-revolution/sd-webui-segment-anything) / [Extensions](https://github.com/kevmo314/magic-copy)
|
* [Segment Anything](https://segment-anything.com/) - Visual Segmentation / [GUI](https://github.com/dibrale/samist) / [Stable Diffusion WebUI](https://github.com/continue-revolution/sd-webui-segment-anything) / [Extensions](https://github.com/kevmo314/magic-copy)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -142,7 +142,6 @@
|
|||||||
* ⭐ **[Krita](https://krita.org/en/)** - Painting App / Windows, Mac, Linux / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [GitHub](https://github.com/KDE/krita)
|
* ⭐ **[Krita](https://krita.org/en/)** - Painting App / Windows, Mac, Linux / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [GitHub](https://github.com/KDE/krita)
|
||||||
* ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting / Web
|
* ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting / Web
|
||||||
* ⭐ **[Pinta Project](https://www.pinta-project.com/)** - Painting App / Windows, Mac, Linux / [GitHub](https://github.com/PintaProject/Pinta)
|
* ⭐ **[Pinta Project](https://www.pinta-project.com/)** - Painting App / Windows, Mac, Linux / [GitHub](https://github.com/PintaProject/Pinta)
|
||||||
* [Magma](https://magma.com/), [MagicalDraw](https://draw.kuku.lu/), [DrawPile](https://drawpile.net/) or [malmal](https://malmal.io/) - Collaborative Drawing
|
|
||||||
* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App / Windows
|
* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App / Windows
|
||||||
* [Inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape)
|
* [Inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape)
|
||||||
* [FireAlpaca](https://firealpaca.com/) - Painting App / Windows, Mac
|
* [FireAlpaca](https://firealpaca.com/) - Painting App / Windows, Mac
|
||||||
@@ -167,6 +166,7 @@
|
|||||||
* [Sketchbook](https://www.sketchbook.com/) - Drawing / Sketching / Windows, Mac, Android, iOS
|
* [Sketchbook](https://www.sketchbook.com/) - Drawing / Sketching / Windows, Mac, Android, iOS
|
||||||
* [Fresco](https://www.adobe.com/products/fresco.html) - Drawing / Windows, iOS
|
* [Fresco](https://www.adobe.com/products/fresco.html) - Drawing / Windows, iOS
|
||||||
* [Concepts](https://concepts.app/) - Drawing / Sketching / Windows, Android, iOS
|
* [Concepts](https://concepts.app/) - Drawing / Sketching / Windows, Android, iOS
|
||||||
|
* [Magma](https://magma.com/), [DrawPile](https://drawpile.net/) or [malmal](https://malmal.io/) - Collaborative Drawing
|
||||||
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool / Web
|
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool / Web
|
||||||
* [IOGraphica](https://iographica.com/) - Turn Mouse Movement into Art / Windows, Mac, Linux
|
* [IOGraphica](https://iographica.com/) - Turn Mouse Movement into Art / Windows, Mac, Linux
|
||||||
* [Perfect Freehand](https://perfect-freehand-example.vercel.app/) - Draw Free Hand Lines / Web / [GitHub](https://github.com/steveruizok/perfect-freehand)
|
* [Perfect Freehand](https://perfect-freehand-example.vercel.app/) - Draw Free Hand Lines / Web / [GitHub](https://github.com/steveruizok/perfect-freehand)
|
||||||
@@ -795,6 +795,7 @@
|
|||||||
|
|
||||||
## ▷ Image Hosts
|
## ▷ Image Hosts
|
||||||
|
|
||||||
|
* ⭐ **[PixVid](https://pixvid.org/)** - 32MB / Forever / Some NSFW
|
||||||
* ⭐ **[ImgBB](https://imgbb.com/)** - 32MB / Forever
|
* ⭐ **[ImgBB](https://imgbb.com/)** - 32MB / Forever
|
||||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / [Proxy](https://fatbox.moe/) / [ShareX Config](https://files.catbox.moe/w4ztcf.sxcu)
|
* ⭐ **[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)
|
* [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)
|
||||||
|
|||||||
@@ -328,10 +328,9 @@
|
|||||||
|
|
||||||
## ▷ Redirect Bypass
|
## ▷ Redirect Bypass
|
||||||
|
|
||||||
* ⭐ **[Bypass All Shortlinks Debloated](https://codeberg.org/gongchandang49/bypass-all-shortlinks-debloated)** - Bypass Link Shorteners
|
* ⭐ **[Bypass All Shortlinks](https://codeberg.org/gongchandang49/bypass-all-shortlinks-debloated)** - Bypass Link Shorteners
|
||||||
* ⭐ **[Bypass.vip](https://bypass.vip/)** - Ad Links Bypasser / [Userscript](https://github.com/bypass-vip/userscript/raw/refs/heads/main/bypass-vip.user.js) / [Discord](https://bypass.vip/discord)
|
* ⭐ **[Bypass.vip](https://bypass.vip/)** - Ad Links Bypasser / [Userscript](https://github.com/bypass-vip/userscript/raw/refs/heads/main/bypass-vip.user.js) / [Discord](https://bypass.vip/discord)
|
||||||
* [RIP Linkvertise](https://rip.linkvertise.lol/) - Ad-Links Bypasser / [Discord](https://discord.gg/5tVkG8eMg)
|
* [RIP Linkvertise](https://rip.linkvertise.lol/) - Ad-Links Bypasser
|
||||||
* [Evade](https://skipped.lol/evade/evade.user.js) - Ad-Links Bypasser / [Site](https://skipped.lol/) / [Discord](https://discord.gg/aaw9jmw4BC)
|
|
||||||
* [bypass.link](https://bypass.link/) - Bypass Link Shorteners
|
* [bypass.link](https://bypass.link/) - Bypass Link Shorteners
|
||||||
* [TimerHooker](https://greasyfork.org/en/scripts/372673) - Skip Timers on File Hosts
|
* [TimerHooker](https://greasyfork.org/en/scripts/372673) - Skip Timers on File Hosts
|
||||||
* [bypass.city](https://bypass.city/), [2](https://adbypass.org/) - Bypass Link Shorteners / [Userscript](https://bypass.city/how-to-install-userscript) / [Discord](https://discord.gg/bypass-city)
|
* [bypass.city](https://bypass.city/), [2](https://adbypass.org/) - Bypass Link Shorteners / [Userscript](https://bypass.city/how-to-install-userscript) / [Discord](https://discord.gg/bypass-city)
|
||||||
@@ -454,7 +453,6 @@
|
|||||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||||
* [CF Temp Mail](https://em.bjedu.tech/en), [2](https://mail.awsl.uk/en) - Forever / Forever / 5 Domains / [GitHub](https://github.com/dreamhunter2333/cloudflare_temp_email/blob/main/README_EN.md)
|
* [CF Temp Mail](https://em.bjedu.tech/en), [2](https://mail.awsl.uk/en) - Forever / Forever / 5 Domains / [GitHub](https://github.com/dreamhunter2333/cloudflare_temp_email/blob/main/README_EN.md)
|
||||||
* [DuckSpam](https://duckspam.com/) - Forever / Forever / 1 Domain
|
* [DuckSpam](https://duckspam.com/) - Forever / Forever / 1 Domain
|
||||||
* [TempEmail](https://www.tempemail.cc/) - Forever / Forever / 1 Domain
|
|
||||||
* [Reusable.email](https://reusable.email/) - Forever / Forever / 1 Domain / [Telegram](https://t.me/reusable)
|
* [Reusable.email](https://reusable.email/) - Forever / Forever / 1 Domain / [Telegram](https://t.me/reusable)
|
||||||
* [AltAddress](https://altaddress.org/) - Forever / 3 Days / 14 Domains
|
* [AltAddress](https://altaddress.org/) - Forever / 3 Days / 14 Domains
|
||||||
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
||||||
@@ -650,7 +648,6 @@
|
|||||||
* [CRX Viewer](https://robwu.nl/crxviewer/) - View Extension Source Code
|
* [CRX Viewer](https://robwu.nl/crxviewer/) - View Extension Source Code
|
||||||
* [Omni](https://github.com/alyssaxuu/omni) - Browser Quick Launcher
|
* [Omni](https://github.com/alyssaxuu/omni) - Browser Quick Launcher
|
||||||
* [Extensions CSE](https://cse.google.com/cse?cx=86d64a73544824102) - Multi-Site Extension Search
|
* [Extensions CSE](https://cse.google.com/cse?cx=86d64a73544824102) - Multi-Site Extension Search
|
||||||
* [Chrome Stats](https://chrome-stats.com/) - Compare / Analyze Chrome, Firefox, and Edge 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
|
* [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
|
* [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
|
* [Quick Tabs](https://github.com/babyman/quick-tabs-chrome-extension) - Quickly Switch Between Current & Recently Closed Tabs
|
||||||
@@ -711,12 +708,13 @@
|
|||||||
* [XKit](https://github.com/new-xkit/XKit) - Tumblr Enhancement Extension
|
* [XKit](https://github.com/new-xkit/XKit) - Tumblr Enhancement Extension
|
||||||
* [Tab Session Manager](https://tab-session-manager.sienori.com/), [Sessionic](https://github.com/navorite/sessionic) or [Session Buddy](https://sessionbuddy.com/) - Session Managers
|
* [Tab Session Manager](https://tab-session-manager.sienori.com/), [Sessionic](https://github.com/navorite/sessionic) or [Session Buddy](https://sessionbuddy.com/) - Session Managers
|
||||||
* [Peek](https://github.com/corbindavenport/peek) - Shows Images & Videos Behind Links & Thumbnails
|
* [Peek](https://github.com/corbindavenport/peek) - Shows Images & Videos Behind Links & Thumbnails
|
||||||
|
* [Edge Stats](https://edge-stats.com/) - Compare / Analyze Edge Extensions
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Firefox Extensions
|
## ▷ Firefox Extensions
|
||||||
|
|
||||||
* 🌐 **[Firefox Addons](https://addons.mozilla.org/firefox/extensions/)** - Firefox Addon Store
|
* 🌐 **[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
|
* ⭐ **[FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/)** - Tab Tools
|
||||||
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Bookmark Manager
|
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Bookmark Manager
|
||||||
* [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)
|
* [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)
|
||||||
@@ -740,6 +738,7 @@
|
|||||||
* [Chrome Mask](https://addons.mozilla.org/en-US/firefox/addon/chrome-mask/) - Use Chrome-Only Sites on Firefox / [GitHub](https://github.com/denschub/chrome-mask)
|
* [Chrome Mask](https://addons.mozilla.org/en-US/firefox/addon/chrome-mask/) - Use Chrome-Only Sites on Firefox / [GitHub](https://github.com/denschub/chrome-mask)
|
||||||
* [SoundFixer](https://github.com/valpackett/soundfixer) - Fixes / Increase Browser Audio
|
* [SoundFixer](https://github.com/valpackett/soundfixer) - Fixes / Increase Browser Audio
|
||||||
* [Read Aloud](https://readaloud.app/) - Text to Speech / [Discord](https://readaloudai.com/discord)
|
* [Read Aloud](https://readaloud.app/) - Text to Speech / [Discord](https://readaloudai.com/discord)
|
||||||
|
* [Firefox Stats](https://firefox-stats.com/) - Compare / Analyze Firefox Extensions
|
||||||
* [PWAsForFirefox](https://pwasforfirefox.filips.si) - Install Progressive Web Apps
|
* [PWAsForFirefox](https://pwasforfirefox.filips.si) - Install Progressive Web Apps
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -752,6 +751,7 @@
|
|||||||
* [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
|
* [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
|
* [CRX Downloader](https://crx-downloader.com/) - Chrome Extension Downloader
|
||||||
* [WebCRX](https://webcrx.io/) - Easily Install Local CRX Files
|
* [WebCRX](https://webcrx.io/) - Easily Install Local CRX Files
|
||||||
|
* [Chrome Stats](https://chrome-stats.com/) - Compare / Analyze Chrome Extensions
|
||||||
* [Source Downloader](https://mybrowseraddon.com/extension-source-downloader.html) - 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
|
* [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
|
* [Smart Mute](https://chromewebstore.google.com/detail/smart-mute/apadglapdamclpaedknbefnbcajfebgh) - Tab Mute Manager
|
||||||
@@ -822,7 +822,7 @@
|
|||||||
* ⭐ **[CachedView](https://cachedview.nl/)** or [Quick Cache](https://cybdetective.com/quickcacheandarhivesearch.html) - Aggregate Cache Results
|
* ⭐ **[CachedView](https://cachedview.nl/)** or [Quick Cache](https://cybdetective.com/quickcacheandarhivesearch.html) - Aggregate Cache Results
|
||||||
* [Ghost Archive](https://ghostarchive.org/) - Archive Web Pages
|
* [Ghost Archive](https://ghostarchive.org/) - Archive Web Pages
|
||||||
* [WebArchive.io](https://www.webarchive.io/) - Archive Web Pages
|
* [WebArchive.io](https://www.webarchive.io/) - Archive Web Pages
|
||||||
* [ArchiveTeam](https://wiki.archiveteam.org/index.php/Main_Page) - Archiving Project / Wiki / Full Site Archive
|
* [ArchiveTeam](https://wiki.archiveteam.org/index.php/Main_Page) - Archiving Project / Wiki
|
||||||
* [Perma.cc](https://perma.cc/) - Create Permalinks
|
* [Perma.cc](https://perma.cc/) - Create Permalinks
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|||||||
@@ -137,7 +137,7 @@
|
|||||||
* [KDE Applications](https://apps.kde.org/) or [KDE Store](https://store.kde.org/browse/) - KDE Apps & Themes
|
* [KDE Applications](https://apps.kde.org/) or [KDE Store](https://store.kde.org/browse/) - KDE Apps & Themes
|
||||||
* [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories
|
* [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories
|
||||||
* [SnapCraft](https://snapcraft.io/store) - Snap Repository
|
* [SnapCraft](https://snapcraft.io/store) - Snap Repository
|
||||||
* [Nix](https://nixos.org/) / [Resources](https://github.com/nix-community/awesome-nix), [pkgx](https://pkgx.sh/) / [GitHub](https://github.com/pkgxdev/pkgx) or [Homebrew](https://brew.sh/) - Package Managers
|
* [Nix](https://nixos.org/), [pkgx](https://pkgx.sh/) / [GitHub](https://github.com/pkgxdev/pkgx)) or [Homebrew](https://brew.sh/) - Package Managers
|
||||||
* [Zap](https://zap.srev.in) / [GitHub](https://github.com/srevinsaju/zap) or [AM](https://github.com/ivan-hc/AM) - App Image Managers
|
* [Zap](https://zap.srev.in) / [GitHub](https://github.com/srevinsaju/zap) or [AM](https://github.com/ivan-hc/AM) - App Image Managers
|
||||||
* [Pkgs](https://pkgs.org/) - Searchable Linux Package Database / [Repology](https://repology.org/)
|
* [Pkgs](https://pkgs.org/) - Searchable Linux Package Database / [Repology](https://repology.org/)
|
||||||
* [cheat.sh](https://github.com/chubin/cheat.sh) - App Repos
|
* [cheat.sh](https://github.com/chubin/cheat.sh) - App Repos
|
||||||
@@ -231,7 +231,7 @@
|
|||||||
* [dopamine](https://github.com/digimezzo/dopamine) - 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
|
* [AudioTube](https://invent.kde.org/multimedia/audiotube), [ytermusic](https://github.com/ccgauche/ytermusic/) or [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Audio Clients
|
||||||
* [MOC](https://moc.daper.net/) or [Kew](https://github.com/ravachol/kew) - TUI Audio Players
|
* [MOC](https://moc.daper.net/) or [Kew](https://github.com/ravachol/kew) - TUI Audio Players
|
||||||
* [Sonosano](https://sonosano.krshh.com/) - Self-Hosted P2P Lossless Music Player / [GitHub](https://github.com/KRSHH/Sonosano)
|
* [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
|
* [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
|
* [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player
|
||||||
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
|
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
|
||||||
@@ -306,7 +306,6 @@
|
|||||||
* [Limo](https://github.com/limo-app/limo) - Nexus Mods Manager for Linux
|
* [Limo](https://github.com/limo-app/limo) - Nexus Mods Manager for Linux
|
||||||
* [ssprea-nvidia-control](https://github.com/ssprea/ssprea-nvidia-control) 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](https://github.com/doitsujin/dxvk) - Vulkan-Based Direct3D for Linux / Wine
|
||||||
* [D7VK](https://github.com/WinterSnowfall/d7vk) - Vulkan-Based D3D7/6/5 for Linux / Wine
|
|
||||||
* [dxvk-gplasync](https://gitlab.com/Ph42oN/dxvk-gplasync/) - DXVK Fork w/ Async / Vulkan-Based Direct3D / Stutter Reduction
|
* [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
|
* [lsfg-vk](https://github.com/PancakeTAS/lsfg-vk) - Lossless Scaling for Linux
|
||||||
* [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer
|
* [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer
|
||||||
@@ -398,7 +397,7 @@
|
|||||||
* [Self Managed Life](https://wiki.futo.org/) - FOSS / Self-Hosting Guide / [Video](https://youtu.be/Et5PPMYuOc8), [2](https://youtu.be/3fW9TV1WQi8)
|
* [Self Managed Life](https://wiki.futo.org/) - FOSS / Self-Hosting Guide / [Video](https://youtu.be/Et5PPMYuOc8), [2](https://youtu.be/3fW9TV1WQi8)
|
||||||
* [Server World](https://www.server-world.info/en/) - Network Server Guides
|
* [Server World](https://www.server-world.info/en/) - Network Server Guides
|
||||||
* [HowtoForge](https://www.howtoforge.com/) / [GitHub](https://github.com/lollipopkit/flutter_server_box) or [Comfy.Guide](https://comfy.guide/) - Linux Server Software Guides
|
* [HowtoForge](https://www.howtoforge.com/) / [GitHub](https://github.com/lollipopkit/flutter_server_box) or [Comfy.Guide](https://comfy.guide/) - Linux Server Software Guides
|
||||||
* [serverbox](https://cdn.lpkt.cn/serverbox/), [Termix](https://github.com/Termix-SSH/Termix) / [Discord](https://discord.gg/jVQGdvHDrf), [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
|
* [serverbox](https://cdn.lpkt.cn/serverbox/), [Termix](https://github.com/Termix-SSH/Termix) / [Discord](https://discord.gg/jVQGdvHDrf)), [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
|
* [LXD UI](https://github.com/canonical/lxd-ui) - Linux Container + Virtual Machine Manager
|
||||||
* [Proxmox](https://www.proxmox.com/) - Self-Hosted Server Tools / Virtual Environment
|
* [Proxmox](https://www.proxmox.com/) - Self-Hosted Server Tools / Virtual Environment
|
||||||
* [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script
|
* [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script
|
||||||
@@ -409,7 +408,6 @@
|
|||||||
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
|
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
|
||||||
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
|
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
|
||||||
* [openmediavault](https://www.openmediavault.org/) / [GitHub](https://github.com/openmediavault/openmediavault/), [SeaFile](https://www.seafile.com/en/home/) or [Linux Server](https://github.com/ZizzyDizzyMC/linx-server/) - Self-Hosted Cloud Storage
|
* [openmediavault](https://www.openmediavault.org/) / [GitHub](https://github.com/openmediavault/openmediavault/), [SeaFile](https://www.seafile.com/en/home/) or [Linux Server](https://github.com/ZizzyDizzyMC/linx-server/) - Self-Hosted Cloud Storage
|
||||||
* [ConvertX](https://github.com/C4illin/ConvertX) - Self-Hosted Online File Converter
|
|
||||||
* [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
|
* [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
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -525,7 +523,7 @@
|
|||||||
* ⭐ **[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
|
* ⭐ **[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://ii.clsty.link/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
|
* ⭐ **[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) - Hybrid Tiling Window Manager
|
* [BSPWM](https://github.com/baskerville/bspwm) Hybrid Tiling Window Manager
|
||||||
* [herbstluftwm](https://herbstluftwm.org) - Manual Tiling Window Manager
|
* [herbstluftwm](https://herbstluftwm.org) - Manual Tiling Window Manager
|
||||||
* [river](https://github.com/riverwm/river/) - Wayland Compositor
|
* [river](https://github.com/riverwm/river/) - Wayland Compositor
|
||||||
* [LabWC](https://github.com/labwc/labwc) - Wayland Compositor
|
* [LabWC](https://github.com/labwc/labwc) - Wayland Compositor
|
||||||
@@ -583,7 +581,7 @@
|
|||||||
* [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs
|
* [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs
|
||||||
* [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager
|
* [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager
|
||||||
* [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts
|
* [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts
|
||||||
* [Adobe Downloader](https://github.com/X1a0He/Adobe-Downloader/blob/main/readme-en.md) - 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
|
* [ss64 macOS](https://ss64.com/mac/) - macOS Bash Commands
|
||||||
* [Left on Read](https://leftonread.me/) - iMessage Client
|
* [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
|
* [MacBing](https://goodsnooze.gumroad.com/l/macbing), [LlamaChat](https://www.llamachat.app/) or [Mollama](https://apps.apple.com/app/mollama/id6736948278) - AI Chatbots
|
||||||
@@ -794,7 +792,7 @@
|
|||||||
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
||||||
* [Amphetamine](https://apps.apple.com/app/amphetamine/id937984704) - Prevent Sleep Mode / Highly Configurable
|
* [Amphetamine](https://apps.apple.com/app/amphetamine/id937984704) - Prevent Sleep Mode / Highly Configurable
|
||||||
* [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevent Sleep Mode / Lightweight
|
* [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevent Sleep Mode / Lightweight
|
||||||
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [1Piece](https://app1piece.com/), [Loop](https://github.com/MrKai77/Loop), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [1Piece](https://app1piece.com/), [Loop](https://github.com/MrKai77/Loop), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers / [Amethyst GitHub](https://github.com/ianyh/Amethyst)
|
||||||
* [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
|
* [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
|
* [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
|
* [Tintd](https://www.tintd.app/) or [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
||||||
|
|||||||
20
docs/misc.md
@@ -338,14 +338,13 @@
|
|||||||
* [Waze](https://www.waze.com/) - Driving / Navigation Focused Map / [Editor](https://www.waze.com/en-US/editor)
|
* [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)
|
* [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
|
* [CubeTrek](https://cubetrek.com/) - GPS Track Manager
|
||||||
|
* [ALPR Watch](https://alprwatch.org/) or [DeFlock](https://deflock.me/) / [Discord](https://discord.gg/aV7v4R3sKT) / [GitHub](https://github.com/FoggedLens/deflock) - AI Automated License Plate Reader Cameras / ALPR Maps
|
||||||
* [Wikiroutes](https://wikiroutes.info/) or [CityMapper](https://citymapper.com/) - Public Transport Maps
|
* [Wikiroutes](https://wikiroutes.info/) or [CityMapper](https://citymapper.com/) - Public Transport Maps
|
||||||
* [AnyTrip](https://anytrip.com.au/) - Australia & New Zealand Public Transport Maps
|
* [AnyTrip](https://anytrip.com.au/) - Australia & New Zealand Public Transport Maps
|
||||||
* [Mini Tokyo 3D](https://minitokyo3d.com/) - Tokyo Public Transport Map / [GitHub](https://github.com/nagix/mini-tokyo-3d)
|
* [Mini Tokyo 3D](https://minitokyo3d.com/) - Tokyo Public Transport Map / [GitHub](https://github.com/nagix/mini-tokyo-3d)
|
||||||
* [rasp.yandex](https://rasp.yandex.ru/map/trains/) - Russia Public Transport Map
|
* [rasp.yandex](https://rasp.yandex.ru/map/trains/) - Russia Public Transport Map
|
||||||
* [kakaomap](https://map.kakao.com/) - Map of South Korea
|
* [kakaomap](https://map.kakao.com/) - Map of South Korea
|
||||||
* [Skimap.org](https://skimap.org/) - Detailed Ski Maps
|
* [Skimap.org](https://skimap.org/) - Detailed Ski Maps
|
||||||
* [ALPR Watch](https://alprwatch.org/) or [DeFlock](https://deflock.me/) / [Discord](https://discord.gg/aV7v4R3sKT) / [GitHub](https://github.com/FoggedLens/deflock) - AI Automated License Plate Reader Cameras / ALPR Maps
|
|
||||||
* [People Over Papers](https://iceout.org/en/) or [ICE List](https://wiki.icelist.is/) - ICE Activity Information / Maps
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -694,7 +693,6 @@
|
|||||||
* [FoodStruct](https://foodstruct.com/) - Food Encyclopedia & Comparison
|
* [FoodStruct](https://foodstruct.com/) - Food Encyclopedia & Comparison
|
||||||
* [Tellspecopedia](http://www.tellspecopedia.com/) - Find Healthy Food
|
* [Tellspecopedia](http://www.tellspecopedia.com/) - Find Healthy Food
|
||||||
* [Yuka](https://play.google.com/store/apps/details?id=io.yuka.android) - Scan Ingredient Lists
|
* [Yuka](https://play.google.com/store/apps/details?id=io.yuka.android) - Scan Ingredient Lists
|
||||||
* [ORAC Values](https://superfoodly.com/orac-values/) - ORAC Value Database / Information
|
|
||||||
* [Kids Health](https://www.kidshealth.org/) - Kids Health Information
|
* [Kids Health](https://www.kidshealth.org/) - Kids Health Information
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -904,8 +902,7 @@
|
|||||||
* [Mural](https://www.mural.co/) - Project Manager
|
* [Mural](https://www.mural.co/) - Project Manager
|
||||||
* [Taskcafe](https://github.com/JordanKnott/taskcafe) - Task Manager
|
* [Taskcafe](https://github.com/JordanKnott/taskcafe) - Task Manager
|
||||||
* [Nino](https://nino.app/) - Task Manager
|
* [Nino](https://nino.app/) - Task Manager
|
||||||
* [Trello](https://trello.com/) - Task Manager
|
* [Trello](https://trello.com/), [WeKan](https://github.com/wekan/wekan), [Kanboard](https://kanboard.org/) or [Planka](https://planka.app/) - Kanban Project Managers
|
||||||
* [WeKan](https://github.com/wekan/wekan), [Kanboard](https://kanboard.org/) or [Planka](https://planka.app/) - Kanban Boards / Task Managers
|
|
||||||
* [Airtable](https://www.airtable.com/) - Spreadsheet-Database Hybrid for Team Workflows
|
* [Airtable](https://www.airtable.com/) - Spreadsheet-Database Hybrid for Team Workflows
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -1130,7 +1127,7 @@
|
|||||||
* [Paper Sizes](https://papersizes.io/) - Common Paper Sizes
|
* [Paper Sizes](https://papersizes.io/) - Common Paper Sizes
|
||||||
* [wttr](https://wttr.in/) - Simple / Minimal Weather / [GitHub](https://github.com/chubin/wttr.in)
|
* [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/)
|
* [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/), [Spinn a Wheel ](https://spinnawheel.com/), [PickerWheel](https://pickerwheel.com/), [SWG](https://spinthewheelgenerator.com/), [HeySpinner](https://heyspinner.com/), [TheSpinnerWheel](https://thespinnerwheel.com/) or [Wheel of Names](https://wheelofnames.com/) - Wheel Randomizers
|
* [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
|
* [SurveyHeart](https://surveyheart.com/) - Survey Creators
|
||||||
* [Label Studio](https://labelstud.io/) or [Cvat](https://www.cvat.ai/) - Data Organizing Tools
|
* [Label Studio](https://labelstud.io/) or [Cvat](https://www.cvat.ai/) - Data Organizing Tools
|
||||||
* [colnect](https://colnect.com/en) - Manage Personal Collections
|
* [colnect](https://colnect.com/en) - Manage Personal Collections
|
||||||
@@ -1141,7 +1138,7 @@
|
|||||||
* [Timeline Cascade](https://markwhen.com/) / [GitHub](https://github.com/mark-when/markwhen), [Timeline JS](https://timeline.knightlab.com/) or [Time.Graphics](https://time.graphics/) - Create Timelines
|
* [Timeline Cascade](https://markwhen.com/) / [GitHub](https://github.com/mark-when/markwhen), [Timeline JS](https://timeline.knightlab.com/) or [Time.Graphics](https://time.graphics/) - Create Timelines
|
||||||
* [Timeliner](https://timelinize.com/) - Create Personal Digital Timeline
|
* [Timeliner](https://timelinize.com/) - Create Personal Digital Timeline
|
||||||
* [Familypedia](https://familypedia.fandom.com/), [Gramps](https://gramps-project.org/blog/), [FamilySearch](https://www.familysearch.org/) or [WikiTree](https://wikitree.com/) - Find Family Trees
|
* [Familypedia](https://familypedia.fandom.com/), [Gramps](https://gramps-project.org/blog/), [FamilySearch](https://www.familysearch.org/) or [WikiTree](https://wikitree.com/) - Find Family Trees
|
||||||
* [Family Chart](https://github.com/donatso/family-chart) or [FamilyEcho](https://www.familyecho.com/) - Create Custom Family Tree
|
* [FamilyEcho](https://www.familyecho.com/) - Create Custom Family Tree
|
||||||
* [Ravelry](https://ravelry.com) - Fiber Artist Tools
|
* [Ravelry](https://ravelry.com) - Fiber Artist Tools
|
||||||
* [ThistoThat](https://www.thistothat.com/) - How to Glue Anything to Anything
|
* [ThistoThat](https://www.thistothat.com/) - How to Glue Anything to Anything
|
||||||
* [A Bra That Fits](https://www.abrathatfits.org/calculator.php) or [BraMetric](https://brametric.com/) - Bra Size Calculators
|
* [A Bra That Fits](https://www.abrathatfits.org/calculator.php) or [BraMetric](https://brametric.com/) - Bra Size Calculators
|
||||||
@@ -1152,6 +1149,7 @@
|
|||||||
* [CacheSleuth](https://www.cachesleuth.com/) - Geocaching Tools
|
* [CacheSleuth](https://www.cachesleuth.com/) - Geocaching Tools
|
||||||
* [Parcelsapp](https://parcelsapp.com/en/), [Informed Delivery](https://informeddelivery.usps.com/) or [17Track](https://www.17track.net/en) - Mail Package Tracking
|
* [Parcelsapp](https://parcelsapp.com/en/), [Informed Delivery](https://informeddelivery.usps.com/) or [17Track](https://www.17track.net/en) - Mail Package Tracking
|
||||||
* [TemplateMaker](https://www.templatemaker.nl/) - Package / Box Templates
|
* [TemplateMaker](https://www.templatemaker.nl/) - Package / Box Templates
|
||||||
|
* [ICE List](https://wiki.icelist.is/) - ICE Activity Information
|
||||||
* [Hots&Cots](https://www.hotscots.app/) - Military Reviews of Barracks / DFAC
|
* [Hots&Cots](https://www.hotscots.app/) - Military Reviews of Barracks / DFAC
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -1167,7 +1165,6 @@
|
|||||||
* [10015.io](https://10015.io/) - Text / Image / Code / Colors
|
* [10015.io](https://10015.io/) - Text / Image / Code / Colors
|
||||||
* [Disroot](https://disroot.org/en/#services) - Text / Social Media
|
* [Disroot](https://disroot.org/en/#services) - Text / Social Media
|
||||||
* [RandomTools](https://randomtools.io/) - Social Media / Text / Image / Code
|
* [RandomTools](https://randomtools.io/) - Social Media / Text / Image / Code
|
||||||
* [delphitools](https://tools.rmv.fyi//) - Social Media / Text / Image
|
|
||||||
* [MajorGeeks Tools](https://tools.majorgeeks.com/) - Social Media / Text / Image / Code
|
* [MajorGeeks Tools](https://tools.majorgeeks.com/) - Social Media / Text / Image / Code
|
||||||
* [OmniTools](https://omnitools.app/) - Social Media / Text / Image / Code
|
* [OmniTools](https://omnitools.app/) - Social Media / Text / Image / Code
|
||||||
* [uFreeTools](https://www.ufreetools.com/en/) - Text / Code
|
* [uFreeTools](https://www.ufreetools.com/en/) - Text / Code
|
||||||
@@ -1191,11 +1188,9 @@
|
|||||||
## ▷ Productivity / Time Tracking
|
## ▷ Productivity / Time Tracking
|
||||||
|
|
||||||
* 🌐 **[ProductivePrivacy](https://priductive.com/)** - Privacy-Focused Productivity Apps
|
* 🌐 **[ProductivePrivacy](https://priductive.com/)** - Privacy-Focused Productivity Apps
|
||||||
* 🌐 **[Time and Date](https://www.timeanddate.com/)** - Multiple Time Tracking Tools
|
|
||||||
* ↪️ **[To-Do Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_to_do_lists)**
|
* ↪️ **[To-Do Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_to_do_lists)**
|
||||||
* ⭐ **[Super Productivity](https://super-productivity.com/)** - Time Tracker / Productivity App / To-Do List
|
* ⭐ **[Super Productivity](https://super-productivity.com/)** - Time Tracker / Productivity App / To-Do List
|
||||||
* ⭐ **[Habitica](https://habitica.com/)** - Achievement Style Productivity App
|
* ⭐ **[Habitica](https://habitica.com/)** - Achievement Style Productivity App
|
||||||
* [Zoneless](https://zoneless.tools/), [WorldTimeBuddy](https://www.worldtimebuddy.com/) or [EveryTimeZone](https://everytimezone.com/) - Time Zone Visualizers / Comparisons
|
|
||||||
* [FocusTube](https://github.com/malekwael229/FocusTube), [UnDistracted](https://www.undistracted.app/) or [Focus-ToDo](https://chromewebstore.google.com/detail/ngceodoilcgpmkijopinlkmohnfifjfb) - Distraction / Doomscroll Blocking Extensions
|
* [FocusTube](https://github.com/malekwael229/FocusTube), [UnDistracted](https://www.undistracted.app/) or [Focus-ToDo](https://chromewebstore.google.com/detail/ngceodoilcgpmkijopinlkmohnfifjfb) - Distraction / Doomscroll Blocking Extensions
|
||||||
* [r/GetMotivated](https://www.reddit.com/r/GetMotivated/) - Motivational Community
|
* [r/GetMotivated](https://www.reddit.com/r/GetMotivated/) - Motivational Community
|
||||||
* [Freeter](https://freeter.io) - Work Organizer / [GitHub](https://github.com/FreeterApp/Freeter)
|
* [Freeter](https://freeter.io) - Work Organizer / [GitHub](https://github.com/FreeterApp/Freeter)
|
||||||
@@ -1384,7 +1379,6 @@
|
|||||||
* [Word Blanks](https://www.wordblanks.com/) or [Plot Generator](https://www.plot-generator.org.uk/) - Online Mad Libs
|
* [Word Blanks](https://www.wordblanks.com/) or [Plot Generator](https://www.plot-generator.org.uk/) - Online Mad Libs
|
||||||
* [MagicKeyboard](http://magickeyboard.io/) - Try "feross", "hexbin", "rain", or "semi"
|
* [MagicKeyboard](http://magickeyboard.io/) - Try "feross", "hexbin", "rain", or "semi"
|
||||||
* [Just Type Stuff](https://justtypestuff.com/) - Type Things into Existence
|
* [Just Type Stuff](https://justtypestuff.com/) - Type Things into Existence
|
||||||
* [Nicky Case](https://ncase.me/) - Interactive Social Simulations / Puzzles
|
|
||||||
* [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game
|
* [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game
|
||||||
* [Pokémon Fossil Museum](https://my.matterport.com/show/?m=P9WCbyCBGBM) - Explore Pokémon Fossil Museum
|
* [Pokémon Fossil Museum](https://my.matterport.com/show/?m=P9WCbyCBGBM) - Explore Pokémon Fossil Museum
|
||||||
* [New Campaign Trail](https://www.newcampaigntrail.com/) - Presidential Campaign Game / [Discord](https://discord.gg/CfS6yTtjZj)
|
* [New Campaign Trail](https://www.newcampaigntrail.com/) - Presidential Campaign Game / [Discord](https://discord.gg/CfS6yTtjZj)
|
||||||
@@ -1396,6 +1390,7 @@
|
|||||||
* [Google Doodles](https://doodles.google/), [2](https://sites.google.com/site/populardoodlegames) - Interactive Google Doodles
|
* [Google Doodles](https://doodles.google/), [2](https://sites.google.com/site/populardoodlegames) - Interactive Google Doodles
|
||||||
* [Quick, Draw](https://quickdraw.withgoogle.com/) - Doodle Game
|
* [Quick, Draw](https://quickdraw.withgoogle.com/) - Doodle Game
|
||||||
* [Doodle Dash](https://xenova-doodle-dash.static.hf.space/index.html) - Let AI Guess Doodles
|
* [Doodle Dash](https://xenova-doodle-dash.static.hf.space/index.html) - Let AI Guess Doodles
|
||||||
|
* [AI Bingo](https://ai-bingo.lipsumar.io/) - AI Art Guessing Games
|
||||||
* [Genetic Walkers](https://rednuht.org/genetic_walkers/) - Genetic Algorithm Walkers
|
* [Genetic Walkers](https://rednuht.org/genetic_walkers/) - Genetic Algorithm Walkers
|
||||||
* [A Better World](https://abw.blue/index_en.php) - Interactive History Changing Game
|
* [A Better World](https://abw.blue/index_en.php) - Interactive History Changing Game
|
||||||
* [OpenGeofiction](https://opengeofiction.net/) - User-Made Fictional Map
|
* [OpenGeofiction](https://opengeofiction.net/) - User-Made Fictional Map
|
||||||
@@ -1470,7 +1465,7 @@
|
|||||||
* 🌐 **[Awesome Lego](https://github.com/ad-si/awesome-lego)** - Lego Resources
|
* 🌐 **[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)**
|
* ↪️ **[Online Virtual Tours](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25BA_virtual_tours)**
|
||||||
* ⭐ **[InfiniteConversation](https://infiniteconversation.com/)** or [InfiniteConvo](https://infiniteconvo.ai/) - Never-Ending AI Conversations
|
* ⭐ **[InfiniteConversation](https://infiniteconversation.com/)** or [InfiniteConvo](https://infiniteconvo.ai/) - Never-Ending AI Conversations
|
||||||
* ⭐ **[Ranker](https://www.ranker.com/)**, [Rank Engine](https://www.pubmeeple.com/ranking-engine), [Listography](https://listography.com/), [TheTopsTens](https://www.thetoptens.com/), [CopyPasteList](https://copypastelist.co/) or [ListVerse](https://listverse.com/) - Create / Explore 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
|
||||||
* ⭐ **[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
|
* ⭐ **[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)
|
* ⭐ **[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
|
* ⭐ **[Goody2](https://www.goody2.ai/chat)** - World's Most Ethical AI
|
||||||
@@ -1598,7 +1593,6 @@
|
|||||||
* ⭐ **[Uncyclopedia](https://en.uncyclopedia.co/)** - Wikipedia Parody
|
* ⭐ **[Uncyclopedia](https://en.uncyclopedia.co/)** - Wikipedia Parody
|
||||||
* ⭐ **[WhatBeatsRock](https://www.whatbeatsrock.com/)** - Guess What Beats What
|
* ⭐ **[WhatBeatsRock](https://www.whatbeatsrock.com/)** - Guess What Beats What
|
||||||
* ⭐ **[Library of Babel](https://libraryofbabel.info/)** - Every Book of Past, Present, and Future
|
* ⭐ **[Library of Babel](https://libraryofbabel.info/)** - Every Book of Past, Present, and Future
|
||||||
* [OpenChaos.dev](https://www.openchaos.dev/) - Evolving Open-Source Project Governed by Community Votes / [GitHub](https://github.com/skridlevsky/openchaos)
|
|
||||||
* [Grant Kot](https://grantkot.com/) - Toys / Games
|
* [Grant Kot](https://grantkot.com/) - Toys / Games
|
||||||
* [Oimo](https://oimo.io/works) - Toys / Games
|
* [Oimo](https://oimo.io/works) - Toys / Games
|
||||||
* [AIDN](https://aidn.jp/) - Toys / Games
|
* [AIDN](https://aidn.jp/) - Toys / Games
|
||||||
|
|||||||
@@ -78,7 +78,7 @@
|
|||||||
***
|
***
|
||||||
|
|
||||||
* ↪️ **[Free App Giveaways](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)** - App Giveaway Sites
|
* ↪️ **[Free App Giveaways](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)** - App Giveaway Sites
|
||||||
* ⭐ **[APKMirror](https://www.apkmirror.com/)** / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/toolbox-google-play-store/) / [Chrome](https://chrome.google.com/webstore/detail/toolbox-for-google-play-s/fepaalfjfchbdianlgginbmpeeacahoo)
|
* ⭐ **[APKMirror](https://www.apkmirror.com/)** / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/toolbox-google-play-store/), [2](https://addons.opera.com/en/extensions/details/toolbox-for-google-play-storetm/) / [Chrome](https://chrome.google.com/webstore/detail/toolbox-for-google-play-s/fepaalfjfchbdianlgginbmpeeacahoo)
|
||||||
* ⭐ **[UpToDown](https://en.uptodown.com/android)**
|
* ⭐ **[UpToDown](https://en.uptodown.com/android)**
|
||||||
* ⭐ **[APKCombo](https://apkcombo.com/)**
|
* ⭐ **[APKCombo](https://apkcombo.com/)**
|
||||||
* ⭐ **[Aurora Store](https://auroraoss.com/)** - Google Play Store Alt / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/aurora-note.md) / [GitLab](https://gitlab.com/AuroraOSS/AuroraStore)
|
* ⭐ **[Aurora Store](https://auroraoss.com/)** - Google Play Store Alt / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/aurora-note.md) / [GitLab](https://gitlab.com/AuroraOSS/AuroraStore)
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
|
|
||||||
* 🌐 **[Launcher Comparison Table](https://grabster.notion.site/6671f3b62d8043c4aaaae22a241e3f05?v=91d9b664887643298f85fe18044d3560)**
|
* 🌐 **[Launcher Comparison Table](https://grabster.notion.site/6671f3b62d8043c4aaaae22a241e3f05?v=91d9b664887643298f85fe18044d3560)**
|
||||||
* ⭐ **[Lawnchair](https://lawnchair.app/)** - Pixel-Based Launcher / [Feed](https://github.com/LawnchairLauncher/lawnfeed) / [Icons](https://github.com/LawnchairLauncher/lawnicons) / [Telegram](https://t.me/lawnchairci) / [Discord](https://discord.gg/3x8qNWxgGZ) / [GitHub](https://github.com/LawnchairLauncher/lawnchair)
|
* ⭐ **[Lawnchair](https://lawnchair.app/)** - Pixel-Based Launcher / [Feed](https://github.com/LawnchairLauncher/lawnfeed) / [Icons](https://github.com/LawnchairLauncher/lawnicons) / [Telegram](https://t.me/lawnchairci) / [Discord](https://discord.gg/3x8qNWxgGZ) / [GitHub](https://github.com/LawnchairLauncher/lawnchair)
|
||||||
* ⭐ **[Niagara Launcher](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search)**, [2](https://niagaralauncher.app/) - Single-Hand Launcher / [Telegram](https://t.me/niagara_news) / [Discord](https://discord.com/invite/niagara-launcher-728630549278883950)
|
* ⭐ **[Niagara Launcher](https://niagaralauncher.app/)** - Single-Hand Launcher / [Telegram](https://t.me/niagara_news) / [Discord](https://discord.com/invite/niagara-launcher-728630549278883950)
|
||||||
* ⭐ **[SmartLauncher](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search), [2](https://www.smartlauncher.net/) - Customizable Launcher / [Telegram](https://t.me/smartlauncher)
|
* ⭐ **[SmartLauncher](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search), [2](https://www.smartlauncher.net/) - Customizable Launcher / [Telegram](https://t.me/smartlauncher)
|
||||||
* ⭐ **[Kvaesitso](https://kvaesitso.mm20.de/)** - Search-Focused Launcher / [Telegram](https://t.me/Kvaesitso) / [GitHub](https://github.com/MM2-0/Kvaesitso)
|
* ⭐ **[Kvaesitso](https://kvaesitso.mm20.de/)** - Search-Focused Launcher / [Telegram](https://t.me/Kvaesitso) / [GitHub](https://github.com/MM2-0/Kvaesitso)
|
||||||
* [Smart Dock](https://f-droid.org/packages/cu.axel.smartdock/) - Desktop App Launcher / [GitHub](https://github.com/axel358/smartdock)
|
* [Smart Dock](https://f-droid.org/packages/cu.axel.smartdock/) - Desktop App Launcher / [GitHub](https://github.com/axel358/smartdock)
|
||||||
@@ -161,7 +161,7 @@
|
|||||||
* ⭐ **[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
|
* ⭐ **[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
|
||||||
* ⭐ **[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)
|
* ⭐ **[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
|
* ⭐ **[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
|
||||||
* [Patcheddit](https://github.com/wchill/patcheddit), [Stealth](https://gitlab.com/cosmosapps/stealth), [Continuum](https://github.com/cygnusx-1-org/continuum) or [RedReader](https://github.com/QuantumBadger/RedReader) - Reddit Clients
|
* [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
|
||||||
* [QuaX](https://github.com/Teskann/QuaX) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter / X Apps
|
* [QuaX](https://github.com/Teskann/QuaX) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter / X Apps
|
||||||
* [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
|
* [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
|
* [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
|
||||||
@@ -278,7 +278,6 @@
|
|||||||
* [SwiftKey](https://www.microsoft.com/en-us/swiftkey) - Keyboard
|
* [SwiftKey](https://www.microsoft.com/en-us/swiftkey) - Keyboard
|
||||||
* [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard
|
* [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard
|
||||||
* [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard
|
* [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard
|
||||||
* [KGPT](https://github.com/Eluea/KGPT) - AI Keyboard / Use LSPosed or LSPatch
|
|
||||||
* [CleverKeys](https://github.com/tribixbite/CleverKeys) - Gesture-Based Keyboard w/ Termux Support
|
* [CleverKeys](https://github.com/tribixbite/CleverKeys) - Gesture-Based Keyboard w/ Termux Support
|
||||||
* [Thumb-Key](https://github.com/dessalines/thumb-key) - Swipe Keyboard
|
* [Thumb-Key](https://github.com/dessalines/thumb-key) - Swipe Keyboard
|
||||||
* [Flickboard](https://codeberg.org/natkr/flickboard) - Keyboard
|
* [Flickboard](https://codeberg.org/natkr/flickboard) - Keyboard
|
||||||
@@ -337,7 +336,7 @@
|
|||||||
|
|
||||||
* 🌐 **[Android ROM Comparisons](https://eylenburg.github.io/android_comparison.htm)** or [Android ROM List](https://github.com/musabcel/android_rom_list)
|
* 🌐 **[Android ROM Comparisons](https://eylenburg.github.io/android_comparison.htm)** or [Android ROM List](https://github.com/musabcel/android_rom_list)
|
||||||
* 🌐 **[GSI List](https://github.com/TrebleDroid/treble_experimentations/wiki/Generic-System-Image-(GSI)-list)** - Generic System Image Index
|
* 🌐 **[GSI List](https://github.com/TrebleDroid/treble_experimentations/wiki/Generic-System-Image-(GSI)-list)** - Generic System Image Index
|
||||||
* ⭐ **[GrapheneOS](https://grapheneos.org/)** - Security & Privacy Hardened Android / Google Pixel Only / [Bank App Compatibility](https://privsec.dev/posts/android/banking-applications-compatibility-with-grapheneos/) / [Discord](https://discord.com/invite/grapheneos) / [Telegram](https://t.me/GrapheneOS)
|
* ⭐ **[GrapheneOS](https://grapheneos.org/)** - Security & Privacy Hardened Android / Google Pixel Only / [Discord](https://discord.com/invite/grapheneos) / [Telegram](https://t.me/GrapheneOS)
|
||||||
* [Custom ROM Hardware](https://customromhardware.miraheze.org/) - Android Custom ROM Compatibility / Database
|
* [Custom ROM Hardware](https://customromhardware.miraheze.org/) - Android Custom ROM Compatibility / Database
|
||||||
* [LineageOS](https://www.lineageos.org/) - Privacy-Focused OS / [Discord](https://discord.gg/gD6DMtf)
|
* [LineageOS](https://www.lineageos.org/) - Privacy-Focused OS / [Discord](https://discord.gg/gD6DMtf)
|
||||||
|
|
||||||
@@ -393,7 +392,7 @@
|
|||||||
* [Photok](https://github.com/leonlatsch/Photok) - Photo / Video Gallery
|
* [Photok](https://github.com/leonlatsch/Photok) - Photo / Video Gallery
|
||||||
* [UhuruPhotos](https://uhuru.photos) - Photo / Video Gallery / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android)
|
* [UhuruPhotos](https://uhuru.photos) - Photo / Video Gallery / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android)
|
||||||
* [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Gallery
|
* [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Gallery
|
||||||
* [PhotoSwooper](https://codeberg.org/Loowiz/PhotoSwooper) or [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaners
|
* [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaner
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -463,7 +462,7 @@
|
|||||||
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)**
|
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)**
|
||||||
* ↪️ **[Android 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
* ↪️ **[Android 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
||||||
* ↪️ **[Android Proxy Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_proxy_clients)**
|
* ↪️ **[Android Proxy Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_proxy_clients)**
|
||||||
* ⭐ **[Triage](https://tria.ge/)**, **[Hybrid Analysis](https://hybrid-analysis.com/)** or [Pithus](https://beta.pithus.org/) - APK / URL Virus Scanners
|
* ⭐ **[Triage](https://tria.ge/)**, **[Hybrid Analysis](https://hybrid-analysis.com/)**, [VirusTotal](https://www.virustotal.com/) or [Pithus](https://beta.pithus.org/) - APK / URL Virus Scanners
|
||||||
* ⭐ **[Rethink DNS](https://rethinkdns.com/)** / [GitHub](https://github.com/celzero/rethink-app), [ShizuWall](https://github.com/AhmetCanArslan/ShizuWall), [AFWall+](https://github.com/ukanth/afwall/) (root) or [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls
|
* ⭐ **[Rethink DNS](https://rethinkdns.com/)** / [GitHub](https://github.com/celzero/rethink-app), [ShizuWall](https://github.com/AhmetCanArslan/ShizuWall), [AFWall+](https://github.com/ukanth/afwall/) (root) or [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls
|
||||||
* ⭐ **[URLCheck](https://github.com/TrianguloY/URLCheck)**, [Tarnhelm](https://github.com/lz233/Tarnhelm), [LinkSheet](https://github.com/LinkSheet/LinkSheet) or [Untracker](https://github.com/zhanghai/Untracker) - URL Cleaners / Tracking Removal
|
* ⭐ **[URLCheck](https://github.com/TrianguloY/URLCheck)**, [Tarnhelm](https://github.com/lz233/Tarnhelm), [LinkSheet](https://github.com/LinkSheet/LinkSheet) or [Untracker](https://github.com/zhanghai/Untracker) - URL Cleaners / Tracking Removal
|
||||||
* ⭐ **[Exodus](https://reports.exodus-privacy.eu.org/en/)** - App Tracker Database
|
* ⭐ **[Exodus](https://reports.exodus-privacy.eu.org/en/)** - App Tracker Database
|
||||||
@@ -476,7 +475,7 @@
|
|||||||
* [Orbot](https://orbot.app/en/), [2](https://guardianproject.info/apps/org.torproject.android/) - Tor Proxy Apps
|
* [Orbot](https://orbot.app/en/), [2](https://guardianproject.info/apps/org.torproject.android/) - Tor Proxy Apps
|
||||||
* [Privacy Guides](https://www.privacyguides.org/en/android/) - Android Privacy Guides
|
* [Privacy Guides](https://www.privacyguides.org/en/android/) - Android Privacy Guides
|
||||||
* [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS) - Encrypted File Manager
|
* [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS) - Encrypted File Manager
|
||||||
* [TrackerControl](https://trackercontrol.org/) / [GitHub](https://github.com/TrackerControl/tracker-control-android) or [Privacy Guard](https://play.google.com/store/apps/details?id=com.franko.privacyguard) - Tracker Monitors / Controllers
|
* [TrackerControl](https://trackercontrol.org/) - Tracker Monitor / Controller / [GitHub](https://github.com/TrackerControl/tracker-control-android)
|
||||||
* [LibChecker](https://github.com/LibChecker/LibChecker) - View App Third-Party Libraries
|
* [LibChecker](https://github.com/LibChecker/LibChecker) - View App Third-Party Libraries
|
||||||
* [Sapio](https://github.com/jonathanklee/Sapio) - Scan Apps for Google Dependency
|
* [Sapio](https://github.com/jonathanklee/Sapio) - Scan Apps for Google Dependency
|
||||||
* [NetGuard](https://www.netguard.me/) - Block Internet Access Per App / [GitHub](https://github.com/M66B/NetGuard)
|
* [NetGuard](https://www.netguard.me/) - Block Internet Access Per App / [GitHub](https://github.com/M66B/NetGuard)
|
||||||
@@ -524,7 +523,8 @@
|
|||||||
* ⭐ **[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)
|
* ⭐ **[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/)
|
* ⭐ **[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)
|
* ⭐ **[Brave](https://brave.com/)** - Chromium-Based / Built-in Adblock / Privacy-Focused / [GitHub](https://github.com/brave/brave-browser)
|
||||||
* ⭐ **[IronFox](https://ironfoxoss.org/)** - Mull Browser Fork / Extensions / Privacy-Focused / [Discord](https://discord.gg/zbdzfRVyVh) / [GitLab](https://gitlab.com/ironfox-oss/IronFox)
|
* ⭐ **[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) - Firefox-Based / Extensions
|
* [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)
|
* [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
|
* [FFUpdater](https://github.com/Tobi823/ffupdater) - Multi-Browser Updater
|
||||||
@@ -805,7 +805,7 @@
|
|||||||
* ↪️ **[Song Identification Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_song_identification)**
|
* ↪️ **[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
|
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)** - Multi-Site Audio Downloader
|
||||||
* ⭐ **[ytdlnis](https://ytdlnis.org/)** - Multi-Site Audio Downloader / [GitHub](https://github.com/deniscerri/ytdlnis)
|
* ⭐ **[ytdlnis](https://ytdlnis.org/)** - Multi-Site Audio Downloader / [GitHub](https://github.com/deniscerri/ytdlnis)
|
||||||
* ⭐ **[SpotiFLAC-Mobile](https://github.com/zarzet/SpotiFLAC-Mobile)** - Multi-Site Audio Downloader / Playlist Extractor
|
* ⭐ **[SpotiFLAC-Mobile](https://github.com/zarzet/SpotiFLAC-Mobile)** - Multi-Site Audio Downloader
|
||||||
* ⭐ **[Seeker](https://github.com/jackBonadies/SeekerAndroid)** - Audio Downloader / Soulseek Frontend
|
* ⭐ **[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), [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
|
* ⭐ **[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
|
* ⭐ **[AutomaTag](http://automatag.com/)** - Metadata Organizer
|
||||||
@@ -868,10 +868,9 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[Metrolist](https://mostafaalagamy.github.io/)** / [GitHub](https://github.com/mostafaalagamy/metrolist) or [OuterTune](https://github.com/OuterTune/OuterTune) - YouTube Music Players / Innertune Forks / Audio Players
|
* ⭐ **[Metrolist](https://metrolistapp.netlify.app/)** / [GitHub](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 / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_revanced_tools) / [Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/), [2](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
* ⭐ **[ReVanced YouTube](https://revanced.app/)** - Ad-Free YouTube Patcher / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_revanced_tools) / [Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/), [2](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||||
* ⭐ **[Morphe](https://morphe.software/)** - Ad-Free YouTube Patcher / [X](https://x.com/MorpheApp) / [Resources](https://xdaforums.com/t/app-guides-unofficial-morphe-megathread.4774994/) / [Easy Install / Updates](https://wispydocs.pages.dev/revanced-morphe-obtainium/) / [Subreddit](https://reddit.com/r/MorpheApp) / [GitHub](https://github.com/MorpheApp/morphe-manager)
|
* ⭐ **[Morphe](https://morphe.software/)** - Ad-Free YouTube Patcher / [X](https://x.com/MorpheApp) / [Resources](https://xdaforums.com/t/app-guides-unofficial-morphe-megathread.4774994/) / [Easy Install / Updates](https://wispydocs.pages.dev/revanced-morphe-obtainium/) / [Subreddit](https://reddit.com/r/MorpheApp) / [GitHub](https://github.com/MorpheApp/morphe-manager)
|
||||||
* [SpotiFLAC-Mobile](https://github.com/zarzet/SpotiFLAC-Mobile) - YouTube Music Player / Downloader / Playlist Extractor
|
|
||||||
* [Musify](https://gokadzev.github.io/Musify/) - YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify)
|
* [Musify](https://gokadzev.github.io/Musify/) - YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify)
|
||||||
* [BloomeeTunes](https://github.com/HemantKArya/BloomeeTunes) - 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)
|
* [SimpMusic](https://simpmusic.org/) - YouTube Music Player / [GitHub](https://github.com/maxrave-dev/SimpMusic)
|
||||||
@@ -957,10 +956,10 @@
|
|||||||
|
|
||||||
## ▷ Android Video Players
|
## ▷ Android Video Players
|
||||||
|
|
||||||
|
* ⭐ **[VLC](https://www.videolan.org/vlc/download-android.html)**
|
||||||
|
* ⭐ **[mpv-android](https://github.com/mpv-android/mpv-android)**
|
||||||
* ⭐ **[mpvEx](https://mpvex.vercel.app/)** / [GitHub](https://github.com/marlboro-advance/mpvEx)
|
* ⭐ **[mpvEx](https://mpvex.vercel.app/)** / [GitHub](https://github.com/marlboro-advance/mpvEx)
|
||||||
* ⭐ **[mpvKt](https://github.com/abdallahmehiz/mpvKt/)** / [Nightly Builds](https://nightly.link/abdallahmehiz/mpvKt/workflows/nightlies/main)
|
* ⭐ **[mpvKt](https://github.com/abdallahmehiz/mpvKt/)** / [Nightly Builds](https://nightly.link/abdallahmehiz/mpvKt/workflows/nightlies/main)
|
||||||
* ⭐ **[mpv-android](https://github.com/mpv-android/mpv-android)**
|
|
||||||
* ⭐ **[VLC](https://www.videolan.org/vlc/download-android.html)**
|
|
||||||
* ⭐ **[SyncPlay](https://github.com/yuroyami/syncplay-mobile)** - Video Stream Sync
|
* ⭐ **[SyncPlay](https://github.com/yuroyami/syncplay-mobile)** - Video Stream Sync
|
||||||
* [Just Player](https://github.com/moneytoo/Player)
|
* [Just Player](https://github.com/moneytoo/Player)
|
||||||
* [Night Video Player](https://play.google.com/store/apps/details?id=com.rz.night.player)
|
* [Night Video Player](https://play.google.com/store/apps/details?id=com.rz.night.player)
|
||||||
@@ -1087,7 +1086,7 @@
|
|||||||
* [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator
|
* [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator
|
||||||
* [Microsoft To Do](https://to-do.office.com/) or [Twodos](https://apps.apple.com/app/id6463499163) - To-Do Apps
|
* [Microsoft To Do](https://to-do.office.com/) or [Twodos](https://apps.apple.com/app/id6463499163) - To-Do Apps
|
||||||
* [Journal it](https://apps.apple.com/app/id1501944799) - Planner / Journal App
|
* [Journal it](https://apps.apple.com/app/id1501944799) - Planner / Journal App
|
||||||
* [Success](https://apps.apple.com/app/id1544852780), [Table Habit](https://github.com/FriesI23/mhabit) or [(Not Boring) Habits](https://apps.apple.com/app/id1593891243) - Productivity Booster / Habit Trackers
|
* [Success](https://apps.apple.com/app/id1544852780) or [(Not Boring) Habits](https://apps.apple.com/app/id1593891243) - Productivity Booster / Habit Trackers
|
||||||
* [Apple Config Guide](https://redd.it/1731ozp) - iOS App / Distraction Blocking Guide
|
* [Apple Config Guide](https://redd.it/1731ozp) - iOS App / Distraction Blocking Guide
|
||||||
* [Body Clock](https://apps.apple.com/app/id869648628) - Plan / Track Circadian Rhythm
|
* [Body Clock](https://apps.apple.com/app/id869648628) - Plan / Track Circadian Rhythm
|
||||||
* [Parcel](https://apps.apple.com/app/id375589283) or [Aftership](https://apps.apple.com/app/id507014023) - Delivery Tracker
|
* [Parcel](https://apps.apple.com/app/id375589283) or [Aftership](https://apps.apple.com/app/id507014023) - Delivery Tracker
|
||||||
@@ -1105,6 +1104,7 @@
|
|||||||
* ⭐ **[r/jailbreak Discord](https://discord.com/invite/jb)** - Jailbreaking Community / [Subreddit](https://reddit.com/r/jailbreak)
|
* ⭐ **[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)
|
* ⭐ **[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
|
* ⭐ **[Legacy-iOS-Kit](https://github.com/LukeZGD/Legacy-iOS-Kit)** - Legacy iOS Devices / Downgrade / Save Blobs / Jailbreak / Bypass
|
||||||
|
* [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)
|
* [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)
|
* [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/)
|
* [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/)
|
||||||
@@ -1164,6 +1164,7 @@
|
|||||||
* [BlacklistBeGone](https://github.com/jailbreakdotparty/BlacklistBeGone) - Lift Revoked Certificate Blacklist / iOS 17.0 -> iOS 18.0.1
|
* [BlacklistBeGone](https://github.com/jailbreakdotparty/BlacklistBeGone) - Lift Revoked Certificate Blacklist / iOS 17.0 -> iOS 18.0.1
|
||||||
* [SignTools](https://github.com/SignTools/SignTools) - Self-Hosted App Signer
|
* [SignTools](https://github.com/SignTools/SignTools) - Self-Hosted App Signer
|
||||||
* [Cyan](https://github.com/asdfzxcvbn/pyzule-rw) - Modify IPAs / Inject Tweaks
|
* [Cyan](https://github.com/asdfzxcvbn/pyzule-rw) - Modify IPAs / Inject Tweaks
|
||||||
|
* [ATVLoadly](https://github.com/bitxeno/atvloadly) - Apple TV Sideloading
|
||||||
* [r/sideloaded](https://reddit.com/r/sideloaded) - Sideloading Subreddit
|
* [r/sideloaded](https://reddit.com/r/sideloaded) - Sideloading Subreddit
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -1199,7 +1200,6 @@
|
|||||||
* 🌐 **[CyPwn](https://ipa.cypwn.xyz/)** - Tweaked App Library / [AltStore](https://ipa.cypwn.xyz/cypwn.json) / [Telegram](https://telegram.me/cypwngroup) / [Discord](https://discord.com/invite/UvHZz3HfN9)
|
* 🌐 **[CyPwn](https://ipa.cypwn.xyz/)** - Tweaked App Library / [AltStore](https://ipa.cypwn.xyz/cypwn.json) / [Telegram](https://telegram.me/cypwngroup) / [Discord](https://discord.com/invite/UvHZz3HfN9)
|
||||||
* 🌐 **[Open-Source iOS Apps](https://github.com/dkhamsing/open-source-ios-apps)** - Open-Source Apps
|
* 🌐 **[Open-Source iOS Apps](https://github.com/dkhamsing/open-source-ios-apps)** - Open-Source Apps
|
||||||
* 🌐 **[Awesome TestFlight](https://github.com/pluwen/awesome-testflight-link)**, [Departures](https://departures.to/), [TestFlightLinks](https://t.me/testflightlinks) or [TestFlight Spreadsheet](https://docs.google.com/spreadsheets/d/1Uej3AQPxRcLRXnmthUXR-7oGkNV_GsMFgCoNnuPtSwI/) - TestFlight App Indexes
|
* 🌐 **[Awesome TestFlight](https://github.com/pluwen/awesome-testflight-link)**, [Departures](https://departures.to/), [TestFlightLinks](https://t.me/testflightlinks) or [TestFlight Spreadsheet](https://docs.google.com/spreadsheets/d/1Uej3AQPxRcLRXnmthUXR-7oGkNV_GsMFgCoNnuPtSwI/) - TestFlight App Indexes
|
||||||
* 🌐 **[App Store Tracker](https://appstoretracker.com/)** - App Store Analytics / Tracker
|
|
||||||
* 🌐 **[iOS Console Emulators](https://www.reddit.com/r/EmulationOniOS/wiki/emulators)** - Gaming Emulator Index
|
* 🌐 **[iOS Console Emulators](https://www.reddit.com/r/EmulationOniOS/wiki/emulators)** - Gaming Emulator Index
|
||||||
* ⭐ **PDALife** - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
* ⭐ **PDALife** - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
||||||
* ⭐ **[CodeVN](https://ios.codevn.net/)** / [Telegram](https://t.me/+1qK9KUZlfGs3ZDg1) or [IPALibrary](https://ipalibrary.me/) - Tweaked Apps / Use Orion to Translate
|
* ⭐ **[CodeVN](https://ios.codevn.net/)** / [Telegram](https://t.me/+1qK9KUZlfGs3ZDg1) or [IPALibrary](https://ipalibrary.me/) - Tweaked Apps / Use Orion to Translate
|
||||||
@@ -1264,7 +1264,7 @@
|
|||||||
|
|
||||||
* ⭐ **[SpotC++](https://spotc.yodaluca.dev/)** - Spotify / Ad-Free / Sideloaded / [GitHub](https://github.com/SpotCompiled/SpotilifeC/)
|
* ⭐ **[SpotC++](https://spotc.yodaluca.dev/)** - Spotify / Ad-Free / Sideloaded / [GitHub](https://github.com/SpotCompiled/SpotilifeC/)
|
||||||
* ⭐ **[YTMusicUltimate](https://github.com/dayanch96/YTMusicUltimate)** - Modded YouTube Music / Ad-Free / [Discord](https://discord.gg/BhdUyCbgkZ)
|
* ⭐ **[YTMusicUltimate](https://github.com/dayanch96/YTMusicUltimate)** - Modded YouTube Music / Ad-Free / [Discord](https://discord.gg/BhdUyCbgkZ)
|
||||||
* ⭐ **[SpotiFLAC-Mobile](https://github.com/zarzet/SpotiFLAC-Mobile)** - YouTube Music Player / Downloader / Playlist Extractor
|
* [SpotiFLAC-Mobile](https://github.com/zarzet/SpotiFLAC-Mobile) - Multi-Site Audio Downloader
|
||||||
* [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
|
* [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)
|
* [Soundcloud](https://soundcloud.com/download) - Streaming / [Tweak](https://github.com/Rov3r/scmusicplus)
|
||||||
* [Lyra](https://lyramusic.app/) - YouTube Music / Ad-Free / [Discord](https://discord.gg/64fVZ2QdZ9)
|
* [Lyra](https://lyramusic.app/) - YouTube Music / Ad-Free / [Discord](https://discord.gg/64fVZ2QdZ9)
|
||||||
@@ -1347,7 +1347,6 @@
|
|||||||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
||||||
* ⭐ **[Paperback](https://paperback.moe/)** - Manga Reader / [Extensions](https://discord.gg/rmf6jQpMU9) / [Discord](https://discord.paperback.moe/)
|
* ⭐ **[Paperback](https://paperback.moe/)** - Manga Reader / [Extensions](https://discord.gg/rmf6jQpMU9) / [Discord](https://discord.paperback.moe/)
|
||||||
* ⭐ **[Aidoku](https://aidoku.app/)** - Manga Reader / [GitHub](https://github.com/Aidoku/Aidoku)
|
* ⭐ **[Aidoku](https://aidoku.app/)** - Manga Reader / [GitHub](https://github.com/Aidoku/Aidoku)
|
||||||
* ⭐ **[Tachimanga](https://tachimanga.app/)** - Manga Reader / Freemium / [Discord](https://discord.gg/8aMcdYdaBz)
|
|
||||||
* ⭐ **[Readera](https://readera.org/)** - Ebook Reader
|
* ⭐ **[Readera](https://readera.org/)** - Ebook Reader
|
||||||
* [Suwatte](https://www.suwatte.app/) - Comic Reader / [Discord](https://discord.gg/8wmkXsT6h5) / [GitHub](https://github.com/suwatte)
|
* [Suwatte](https://www.suwatte.app/) - Comic Reader / [Discord](https://discord.gg/8wmkXsT6h5) / [GitHub](https://github.com/suwatte)
|
||||||
* [Prologue](https://prologue.audio/) - Audiobooks for Plex
|
* [Prologue](https://prologue.audio/) - Audiobooks for Plex
|
||||||
@@ -1361,6 +1360,7 @@
|
|||||||
* [BookPlayer](https://github.com/TortugaPower/BookPlayer) - Audiobook Player / [Discord](https://discord.gg/MjCUXgU)
|
* [BookPlayer](https://github.com/TortugaPower/BookPlayer) - Audiobook Player / [Discord](https://discord.gg/MjCUXgU)
|
||||||
* [Panels](https://apps.apple.com/app/id1236567663) - Comic Reader
|
* [Panels](https://apps.apple.com/app/id1236567663) - Comic Reader
|
||||||
* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader / [Discord](https://discord.com/invite/EjfBuYahsP)
|
* [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)
|
* [ZETSU](https://apps.apple.com/app/id1510161371) - Manga Reader / [Discord](https://discord.com/invite/NzJtsSf7t3)
|
||||||
* [Hanami](https://github.com/oolxg/Hanami) - Manga Reader
|
* [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
|
||||||
@@ -396,7 +396,7 @@
|
|||||||
* [xTrance](https://xtrance.info/) - Books / Download / Sign-Up Required
|
* [xTrance](https://xtrance.info/) - Books / Download / Sign-Up Required
|
||||||
* [PDF Books](https://pdfknihy.maxzone.eu/index.html) - Public Domain Books
|
* [PDF Books](https://pdfknihy.maxzone.eu/index.html) - Public Domain Books
|
||||||
* [databazeknih](https://www.databazeknih.cz/) - Czech Book Database
|
* [databazeknih](https://www.databazeknih.cz/) - Czech Book Database
|
||||||
* [eknihovna](https://eknihovna.maxzone.eu/index.html) - Books
|
* [eknihovna](https://eknihovna.maxzone.eu/index.html ) - Books
|
||||||
* [prirucka](https://prirucka.ujc.cas.cz) or [slovnikcestiny](https://slovnikcestiny.cz/uvod.php) - Dictionaries
|
* [prirucka](https://prirucka.ujc.cas.cz) or [slovnikcestiny](https://slovnikcestiny.cz/uvod.php) - Dictionaries
|
||||||
* [WebArchive](https://webarchiv.cz/) - Documents
|
* [WebArchive](https://webarchiv.cz/) - Documents
|
||||||
|
|
||||||
@@ -476,6 +476,7 @@
|
|||||||
* ⭐ **[RgShows](https://www.rgshows.ru/)** - Movies / TV / Anime / 4K / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
* ⭐ **[RgShows](https://www.rgshows.ru/)** - Movies / TV / Anime / 4K / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||||
* ⭐ **[Movix](https://www.movix.blog/)** - Movies / TV / Anime
|
* ⭐ **[Movix](https://www.movix.blog/)** - Movies / TV / Anime
|
||||||
* [Darkiworld](https://darkiworld14.com/) - Movies / TV / Anime / [Status](https://t.me/tirexo_officiel)
|
* [Darkiworld](https://darkiworld14.com/) - Movies / TV / Anime / [Status](https://t.me/tirexo_officiel)
|
||||||
|
* [xalaflix](https://xalaflix.in/) - Movies / TV / Anime / Dub / [Status](https://xalaflix.fun/), [2](https://xalaflix.zip/) / [Discord](https://discord.gg/7myEXg2tQF) / [Telegram](https://t.me/xalaflixofficiel)
|
||||||
* [noctaflix](https://noctaflix.lol/) - Movies / TV / Anime / [Telegram](https://t.me/noctaflix)
|
* [noctaflix](https://noctaflix.lol/) - Movies / TV / Anime / [Telegram](https://t.me/noctaflix)
|
||||||
* [yablom](https://yablom.com/) - Movies / TV / Anime
|
* [yablom](https://yablom.com/) - Movies / TV / Anime
|
||||||
* [FS02](https://fs02.lol/) - Movies / TV / Anime
|
* [FS02](https://fs02.lol/) - Movies / TV / Anime
|
||||||
@@ -719,7 +720,6 @@
|
|||||||
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime / Sub / Dub / 1080p
|
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||||
* [PrivateMovieZ](https://privatemoviez.art/) - Movies / TV / 1080p
|
* [PrivateMovieZ](https://privatemoviez.art/) - Movies / TV / 1080p
|
||||||
* [Cinevood](https://cinevood.net/) - Movies / TV / 1080p
|
* [Cinevood](https://cinevood.net/) - Movies / TV / 1080p
|
||||||
* [MoviesDrive](https://moviesdrive.forum/) - Movies / TV / Anime / [Status](https://moviesdrives.cv/), [2](https://moviedrive.org/) / [Telegram](https://t.me/moviesdrivee)
|
|
||||||
* [9kmovies](https://9kmovies.solar/m/) - Movies / TV / 1080p
|
* [9kmovies](https://9kmovies.solar/m/) - Movies / TV / 1080p
|
||||||
* [FiberMovies](https://fibermovies.beer/) - Movies / TV / 1080p
|
* [FiberMovies](https://fibermovies.beer/) - Movies / TV / 1080p
|
||||||
* [Cinemalux](https://cinemalux.zip/) - Movies / TV / 1080p
|
* [Cinemalux](https://cinemalux.zip/) - Movies / TV / 1080p
|
||||||
@@ -1040,8 +1040,14 @@
|
|||||||
* [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p
|
* [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p
|
||||||
* [iranianfilmarch](https://t.me/iranianfilmarch) - Iranian Movies / 1080p
|
* [iranianfilmarch](https://t.me/iranianfilmarch) - Iranian Movies / 1080p
|
||||||
* [AnimeSubtitle](https://animesubtitle.ir/) - Anime Subtitles
|
* [AnimeSubtitle](https://animesubtitle.ir/) - Anime Subtitles
|
||||||
|
* [MusicGeek](https://musicgeek.ir/) - Music / MP3 / FLAC
|
||||||
|
* [pop-music](https://pop-music.ir/) - Music / MP3
|
||||||
|
* [MusicDagh](https://www.musicdagh.ir/) - Music / MP3
|
||||||
* [GolsarMusic](https://golsarmusic.ir/) - Music / MP3
|
* [GolsarMusic](https://golsarmusic.ir/) - Music / MP3
|
||||||
|
* [upmusics](https://upmusics.com/) - Music / MP3
|
||||||
|
* [ezmusic](https://ezmusic.ir/) - Music / MP3
|
||||||
* [Download1Music](https://download1music.ir/) - Music / MP3
|
* [Download1Music](https://download1music.ir/) - Music / MP3
|
||||||
|
* [mytehranmusic](https://mytehranmusic.com/) - Music / MP3
|
||||||
* [Just Music](https://just-music.ir/) - Classical Music / MP3
|
* [Just Music](https://just-music.ir/) - Classical Music / MP3
|
||||||
* [Pixinema](https://www.pixinema.ir/) - Soundtracks
|
* [Pixinema](https://www.pixinema.ir/) - Soundtracks
|
||||||
* [farsroid](https://www.farsroid.com/) - APKs
|
* [farsroid](https://www.farsroid.com/) - APKs
|
||||||
@@ -1056,6 +1062,7 @@
|
|||||||
* [imvbox](https://www.imvbox.com/) - Movies / TV / Sub
|
* [imvbox](https://www.imvbox.com/) - Movies / TV / Sub
|
||||||
* [hikoca](https://hikoca.co.uk/) - Movies / TV
|
* [hikoca](https://hikoca.co.uk/) - Movies / TV
|
||||||
* [Anten.ir](https://www.anten.ir/) - Live TV / Sports
|
* [Anten.ir](https://www.anten.ir/) - Live TV / Sports
|
||||||
|
* [Sepehr](https://sepehrtv.ir/) - Live TV
|
||||||
* [ParsaTV](https://www.parsatv.com/) - Live TV
|
* [ParsaTV](https://www.parsatv.com/) - Live TV
|
||||||
* [Split TV](https://split-tv.co.il/) - Live News / Split Screen
|
* [Split TV](https://split-tv.co.il/) - Live News / Split Screen
|
||||||
* [MusicGeek](https://musicgeek.ir/) - Music
|
* [MusicGeek](https://musicgeek.ir/) - Music
|
||||||
@@ -1063,6 +1070,7 @@
|
|||||||
|
|
||||||
## ▷ Reading / خواندن
|
## ▷ Reading / خواندن
|
||||||
|
|
||||||
|
* [parsbook](https://www.parsbook.com/) - Educational Books
|
||||||
* [Afghanistandl](https://afghanistandl.nyu.edu/) - Historical Books
|
* [Afghanistandl](https://afghanistandl.nyu.edu/) - Historical Books
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -1490,7 +1498,7 @@
|
|||||||
* [rtvs](https://www.rtvs.sk/televizia/archiv) - TV
|
* [rtvs](https://www.rtvs.sk/televizia/archiv) - TV
|
||||||
* [Bombuj](https://bombuj.si/) - Movies / TV
|
* [Bombuj](https://bombuj.si/) - Movies / TV
|
||||||
* [uzi.si](https://uzi.si) - Movies / TV / Anime / VPN May Be Needed
|
* [uzi.si](https://uzi.si) - Movies / TV / Anime / VPN May Be Needed
|
||||||
* [MojeVideo](https://www.mojevideo.sk/), [2](https://m.mojevideo.sk/) - User Videos
|
* [MojeVideo](https://www.mojevideo.sk/), [2](https://m.mojevideo.sk/ ) - User Videos
|
||||||
|
|
||||||
## ▷ Torrenting
|
## ▷ Torrenting
|
||||||
|
|
||||||
|
|||||||
@@ -3,32 +3,55 @@ title: FAQ
|
|||||||
description: A List Of Questions And Answers Related To FMHY.
|
description: A List Of Questions And Answers Related To FMHY.
|
||||||
---
|
---
|
||||||
|
|
||||||
# FAQs
|
# FAQ
|
||||||
|
|
||||||
**Q**: Why are there so few subreddit posts? *Is the sub dead?* :(
|
**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).
|
||||||
|
|
||||||
**A**: Posting has always been off as Reddit is where we make announcements. Our main focus is the **[Website](https://fmhy.net/)**, which has grown to include nearly 30k links. **It's 100% alive**, and gets updated [daily](https://redd.it/1pl8vl0). For a discussion sub, check out /r/Piracy, or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord) on Fridays.
|
|
||||||
***
|
***
|
||||||
**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:** 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://github.com/fmhy/FMHY/wiki/Backups).
|
**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. [Mod messages](https://www.reddit.com/message/compose/?to=/r/FREEMEDIAHECKYEAH) are also always open.
|
**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) or suggestions in our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord). 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:** 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**: 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:** 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**: When was FMHY created?
|
|
||||||
|
|
||||||
**A**: The original sub was created on [April 29th, 2018](https://i.ibb.co/VJQmQ9t/image.png).
|
**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.
|
||||||
@@ -163,7 +163,6 @@
|
|||||||
* [SurveillanceWatch](https://www.surveillancewatch.io/) - Surveillance Company Connections
|
* [SurveillanceWatch](https://www.surveillancewatch.io/) - Surveillance Company Connections
|
||||||
* [ALPR Watch](https://alprwatch.org/) or [DeFlock](https://deflock.me/) / [Discord](https://discord.gg/aV7v4R3sKT) / [GitHub](https://github.com/FoggedLens/deflock) - AI Automated License Plate Reader Cameras / ALPR Maps
|
* [ALPR Watch](https://alprwatch.org/) or [DeFlock](https://deflock.me/) / [Discord](https://discord.gg/aV7v4R3sKT) / [GitHub](https://github.com/FoggedLens/deflock) - AI Automated License Plate Reader Cameras / ALPR Maps
|
||||||
* [ALPR Watch](https://alpr.watch/) - Track Local Government Surveillance Tech Meetings
|
* [ALPR Watch](https://alpr.watch/) - Track Local Government Surveillance Tech Meetings
|
||||||
* [People Over Papers](https://iceout.org/en/) or [ICE List](https://wiki.icelist.is/) - ICE Activity Information / Maps
|
|
||||||
* [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents
|
* [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -174,9 +173,10 @@
|
|||||||
* ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide
|
* ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide
|
||||||
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide / [GitHub](https://github.com/tnonate/thenewoil)
|
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide / [GitHub](https://github.com/tnonate/thenewoil)
|
||||||
* ⭐ **[No Trace](https://www.notrace.how/)** - Educational Guide / [.onion](http://i4pd4zpyhrojnyx5l3d2siauy4almteocqow4bp2lqxyocrfy6prycad.onion/)
|
* ⭐ **[No Trace](https://www.notrace.how/)** - Educational Guide / [.onion](http://i4pd4zpyhrojnyx5l3d2siauy4almteocqow4bp2lqxyocrfy6prycad.onion/)
|
||||||
* ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** / [GitHub](https://github.com/Anon-Planet/thgtoa) or [The OPSEC Bible](https://bible.beginnerprivacy.com/opsec/) / [.onion](http://opbible7nans45sg33cbyeiwqmlp5fu7lklu6jd6f3mivrjeqadco5yd.onion/) - Extensive Online Anonymity Guides
|
* ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** - Extensive Guide to Online Anonymity / [GitHub](https://github.com/Anon-Planet/thgtoa)
|
||||||
* ⭐ **[Consumer Rights Wiki](https://consumerrights.wiki/)** - Documents Practices That Impact Consumer Rights
|
* ⭐ **[Consumer Rights Wiki](https://consumerrights.wiki/)** - Documents Practices That Impact Consumer Rights
|
||||||
* [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy), [Awesome Security Hardening](https://github.com/decalage2/awesome-security-hardening), [sizeof.cat](https://sizeof.cat/links/) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - Privacy App / Service
|
* [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy), [Awesome Security Hardening](https://github.com/decalage2/awesome-security-hardening), [sizeof.cat](https://sizeof.cat/links/) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - Privacy App / Service
|
||||||
|
Lists
|
||||||
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
|
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
|
||||||
* [OPSEC guide](https://whos-zycher.github.io/opsec-guide/) - Educational Guide
|
* [OPSEC guide](https://whos-zycher.github.io/opsec-guide/) - Educational Guide
|
||||||
* [PrivSec](https://privsec.dev/) - Educational Guide / [GitHub](https://github.com/PrivSec-dev)
|
* [PrivSec](https://privsec.dev/) - Educational Guide / [GitHub](https://github.com/PrivSec-dev)
|
||||||
@@ -277,8 +277,7 @@
|
|||||||
|
|
||||||
* 🌐 **[Eylenburg Comparisons](https://eylenburg.github.io/im_comparison.htm)**, [SecuChart](https://bkil.gitlab.io/secuchart/), [Messenger-Matrix](https://www.messenger-matrix.de/messenger-matrix-en.html) or [Secure Messaging Apps](https://www.securemessagingapps.com/) - Chat App Indexes / Comparisons
|
* 🌐 **[Eylenburg Comparisons](https://eylenburg.github.io/im_comparison.htm)**, [SecuChart](https://bkil.gitlab.io/secuchart/), [Messenger-Matrix](https://www.messenger-matrix.de/messenger-matrix-en.html) or [Secure Messaging Apps](https://www.securemessagingapps.com/) - Chat App Indexes / Comparisons
|
||||||
* ⭐ **[SimpleX](https://simplex.chat/)** - All Platforms / [GitHub](https://github.com/simplex-chat)
|
* ⭐ **[SimpleX](https://simplex.chat/)** - All Platforms / [GitHub](https://github.com/simplex-chat)
|
||||||
* ⭐ **[Signal](https://signal.org/)** - All Platforms / Phone # Required / [Stickers](https://signalstickers.org/) / [GitHub](https://github.com/signalapp) or **[Molly](https://github.com/mollyim/mollyim-android)** / Android
|
* ⭐ **[Signal](https://signal.org/)** - All Platforms / Phone # Required / [GitHub](https://github.com/signalapp) or **[Molly](https://github.com/mollyim/mollyim-android)** / Android
|
||||||
Sticker Packs for Signal / Some NSFW
|
|
||||||
* ⭐ **[Briar](https://briarproject.org/)** / [Desktop](https://briarproject.org/download-briar-desktop/) / [GitLab](https://code.briarproject.org/briar/briar)
|
* ⭐ **[Briar](https://briarproject.org/)** / [Desktop](https://briarproject.org/download-briar-desktop/) / [GitLab](https://code.briarproject.org/briar/briar)
|
||||||
* [Matrix](https://matrix.org/) / [Mod Bot](https://github.com/matrix-org/mjolnir) / [Clients / Resources](https://matrix.org/ecosystem/) / [Servers](https://tatsumoto-ren.github.io/blog/list-of-matrix-servers.html), [2](https://tatsumoto.neocities.org/blog/list-of-matrix-servers.html), [3](https://gitlab.com/famedly/conduit), [4](https://joinmatrix.org/servers/), [5](https://archive.md/4xZE4), [6](https://wiki.asra.gr/en:public_servers)
|
* [Matrix](https://matrix.org/) / [Mod Bot](https://github.com/matrix-org/mjolnir) / [Clients / Resources](https://matrix.org/ecosystem/) / [Servers](https://tatsumoto-ren.github.io/blog/list-of-matrix-servers.html), [2](https://tatsumoto.neocities.org/blog/list-of-matrix-servers.html), [3](https://gitlab.com/famedly/conduit), [4](https://joinmatrix.org/servers/), [5](https://archive.md/4xZE4), [6](https://wiki.asra.gr/en:public_servers)
|
||||||
* [Wire](https://wire.com/en/download/) - All Platforms / Phone # Required / [GitHub](https://github.com/wireapp)
|
* [Wire](https://wire.com/en/download/) - All Platforms / Phone # Required / [GitHub](https://github.com/wireapp)
|
||||||
@@ -286,7 +285,7 @@ Sticker Packs for Signal / Some NSFW
|
|||||||
* [Keybase](https://keybase.io/) - All Platforms / [GitHub](https://github.com/keybase/client)
|
* [Keybase](https://keybase.io/) - All Platforms / [GitHub](https://github.com/keybase/client)
|
||||||
* [Jami](https://jami.net/) - All Platforms / [GitLab](https://git.jami.net/savoirfairelinux/jami-project)
|
* [Jami](https://jami.net/) - All Platforms / [GitLab](https://git.jami.net/savoirfairelinux/jami-project)
|
||||||
* [Tox](https://tox.chat/) / [GitHub](https://github.com/TokTok/c-toxcore) or [qTox](https://qtox.github.io/) / [GitHub](https://github.com/TokTok/qTox) - All Platforms
|
* [Tox](https://tox.chat/) / [GitHub](https://github.com/TokTok/c-toxcore) or [qTox](https://qtox.github.io/) / [GitHub](https://github.com/TokTok/qTox) - All Platforms
|
||||||
* [Cabal](https://cabal.chat/) - P2P / Serverless All Platforms / [GitHub](https://github.com/cabal-club)
|
* [Cabal](https://cabal.chat/) - P2P / Serverless All Platforms / / [GitHub](https://github.com/cabal-club)
|
||||||
* [Linphone](https://www.linphone.org/) - All Platforms / [GitLab](https://gitlab.linphone.org/explore/projects)
|
* [Linphone](https://www.linphone.org/) - All Platforms / [GitLab](https://gitlab.linphone.org/explore/projects)
|
||||||
* [Berty](https://berty.tech/) / Android, iOS / [GitHub](https://github.com/berty/berty)
|
* [Berty](https://berty.tech/) / Android, iOS / [GitHub](https://github.com/berty/berty)
|
||||||
* [Ricochet Refresh](https://www.ricochetrefresh.net/) / Windows, Mac, Linux / [GitHub](https://github.com/blueprint-freespeech/ricochet-refresh)
|
* [Ricochet Refresh](https://www.ricochetrefresh.net/) / Windows, Mac, Linux / [GitHub](https://github.com/blueprint-freespeech/ricochet-refresh)
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 69 KiB |
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M5 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h9v-5a3 3 0 0 1 3-3h5V5a3 3 0 0 0-3-3zm12.293 19.121a3 3 0 0 1-1.293.762V17a1 1 0 0 1 1-1h4.883a3 3 0 0 1-.762 1.293zM7 6a1 1 0 0 0 0 2h10a1 1 0 1 0 0-2zm0 4a1 1 0 1 0 0 2h10a1 1 0 1 0 0-2zm0 4a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2z" clip-rule="evenodd"/></svg>
|
||||||
|
Before Width: | Height: | Size: 496 B After Width: | Height: | Size: 420 B |
|
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 334 KiB After Width: | Height: | Size: 247 KiB |
|
Before Width: | Height: | Size: 574 KiB After Width: | Height: | Size: 382 KiB |
@@ -7,7 +7,7 @@
|
|||||||
# ► Ebooks
|
# ► Ebooks
|
||||||
|
|
||||||
* 🌐 **[Open Slum](https://open-slum.org/)**, [2](https://open-slum.pages.dev/) - Book Site Index / Uptime Tracking
|
* 🌐 **[Open Slum](https://open-slum.org/)**, [2](https://open-slum.pages.dev/) - Book Site Index / Uptime Tracking
|
||||||
* ⭐ **[Anna's Archive](https://annas-archive.li/)**, [2](https://annas-archive.pm/) - Books / Comics / [Auto-Expand](https://greasyfork.org/en/scripts/494262) / [Matrix](https://matrix.to/#/#annas:archivecommunication.org) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
* ⭐ **[Anna's Archive](https://annas-archive.li/)**, [2](https://annas-archive.pm/), [3](https://annas-archive.in/) - Books / Comics / [Auto-Expand](https://greasyfork.org/en/scripts/494262) / [Matrix](https://matrix.to/#/#annas:archivecommunication.org) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
||||||
* ⭐ **[Z-Library](https://z-lib.gd/)**, [2](https://articles.sk/), [3](https://1lib.sk/), [4](https://z-lib.fm/) - Books / Comics / [Apps / Extensions](https://go-to-library.sk/), [2](https://playtorrio.xyz/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
* ⭐ **[Z-Library](https://z-lib.gd/)**, [2](https://articles.sk/), [3](https://1lib.sk/), [4](https://z-lib.fm/) - Books / Comics / [Apps / Extensions](https://go-to-library.sk/), [2](https://playtorrio.xyz/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
||||||
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / [Ranks](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/mobilism-ranks.md)
|
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / [Ranks](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/mobilism-ranks.md)
|
||||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - Books / Audiobooks / Comics / Sheet Music / [Invite Required](https://www.myanonamouse.net/inviteapp.php)
|
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - Books / Audiobooks / Comics / Sheet Music / [Invite Required](https://www.myanonamouse.net/inviteapp.php)
|
||||||
@@ -66,7 +66,6 @@
|
|||||||
* [By the Fireplace](https://bythefireplace.com/) - Classics
|
* [By the Fireplace](https://bythefireplace.com/) - Classics
|
||||||
* [DigiLibraries](https://digilibraries.com/) - Classics
|
* [DigiLibraries](https://digilibraries.com/) - Classics
|
||||||
* [ExClassics](https://www.exclassics.com/) - Obscure Books
|
* [ExClassics](https://www.exclassics.com/) - Obscure Books
|
||||||
* [The H.P. Lovecraft Archive](https://www.hplovecraft.com/) - Complete H.P. Lovecraft Writings Archive
|
|
||||||
* [sherlock-holm.es](https://sherlock-holm.es/) - Complete Sherlock Holmes Canon
|
* [sherlock-holm.es](https://sherlock-holm.es/) - Complete Sherlock Holmes Canon
|
||||||
* [GrimmStories](https://www.grimmstories.com/) or [AndersenStories](https://www.andersenstories.com/) - Fairy Tales
|
* [GrimmStories](https://www.grimmstories.com/) or [AndersenStories](https://www.andersenstories.com/) - Fairy Tales
|
||||||
* [Wikibooks](https://www.wikibooks.org/) - Wikimedia Community
|
* [Wikibooks](https://www.wikibooks.org/) - Wikimedia Community
|
||||||
@@ -415,8 +414,8 @@
|
|||||||
|
|
||||||
## ▷ Audiobook Tools
|
## ▷ Audiobook Tools
|
||||||
|
|
||||||
* ↪️ **[Audiobook Generators / TTS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
|
|
||||||
* [AudiobookCovers](https://audiobookcovers.com/) - Download Audiobook Covers
|
* [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/), [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
|
* [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
|
* [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/) / [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
|
* [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
|
||||||
@@ -479,7 +478,6 @@
|
|||||||
* [MangaBuddy](https://mangabuddy.com), [MangaForest](https://mangaforest.me/) or [MangaMirror](https://mangamirror.com/)
|
* [MangaBuddy](https://mangabuddy.com), [MangaForest](https://mangaforest.me/) or [MangaMirror](https://mangamirror.com/)
|
||||||
* [MangaBall](https://mangaball.net/)
|
* [MangaBall](https://mangaball.net/)
|
||||||
* [mangapill](https://mangapill.com/)
|
* [mangapill](https://mangapill.com/)
|
||||||
* [WeebDex](https://weebdex.org/search?contentRating=safe) - Manga Site / Some NSFW / [Discord](https://discord.gg/syp3a6Eucq)
|
|
||||||
* [Like Manga](https://likemanga.in/)
|
* [Like Manga](https://likemanga.in/)
|
||||||
* [MangaHere](https://www.mangahere.cc/) or [MangaFox](https://fanfox.net/)
|
* [MangaHere](https://www.mangahere.cc/) or [MangaFox](https://fanfox.net/)
|
||||||
* [MangaTaro](https://mangataro.org/)
|
* [MangaTaro](https://mangataro.org/)
|
||||||
@@ -951,7 +949,7 @@
|
|||||||
* 🌐 **[DeDRM_tools](https://github.com/noDRM/DeDRM_tools)** - Ebook DRM Removal Tools
|
* 🌐 **[DeDRM_tools](https://github.com/noDRM/DeDRM_tools)** - Ebook DRM Removal Tools
|
||||||
* ↪️ **[Summary Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)**
|
* ↪️ **[Summary Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)**
|
||||||
* ↪️ **[PDF File Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_pdf_tools)**
|
* ↪️ **[PDF File Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_pdf_tools)**
|
||||||
* ⭐ **[Spreeder](https://www.spreeder.com/app.php?intro=1)**, [Speed Reader](https://speed-reader.com/), [BR Script](https://greasyfork.org/en/scripts/465635), [PlayText](https://playtext.app/), [AccelaReader](https://accelareader.com/), [SwiftRead](https://swiftread.com/), [Notation](https://github.com/numanzamandipuu/Notation), [Tailwind BR](https://crisanlucid.github.io/vite-react-tailwind-bionic-reading/) or [SpeedRead](https://github.com/pasky/speedread) - Speed Reading Tools
|
* ⭐ **[Spreeder](https://www.spreeder.com/app.php?intro=1)**, [BR Script](https://greasyfork.org/en/scripts/465635), [PlayText](https://playtext.app/), [AccelaReader](https://accelareader.com/), [SwiftRead](https://swiftread.com/), [Notation](https://github.com/numanzamandipuu/Notation), [Tailwind BR](https://crisanlucid.github.io/vite-react-tailwind-bionic-reading/) or [SpeedRead](https://github.com/pasky/speedread) - Speed Reading Tools
|
||||||
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter
|
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter
|
||||||
* ⭐ **[Papeer](https://papeer.tech/)** / [GitHub](https://github.com/lapwat/papeer) or [epub-creator](https://github.com/NiklasGollenstede/epub-creator) - Webpage to EPUB Converter
|
* ⭐ **[Papeer](https://papeer.tech/)** / [GitHub](https://github.com/lapwat/papeer) or [epub-creator](https://github.com/NiklasGollenstede/epub-creator) - Webpage to EPUB Converter
|
||||||
* [Scribd DL](https://github.com/rkwyu/scribd-dl), [Scribd PDF](https://scribd.pdfdownloaders.com/) or [ScribdVPDF](https://scribdvpdf.blogspot.com/) / [2](https://docdownloader.com/) / [3](https://scribd.vpdfs.com/) / [4](https://scribd.downloader.tips/) / [5](https://scribd.vdownloaders.com/) - Scribd Downloaders
|
* [Scribd DL](https://github.com/rkwyu/scribd-dl), [Scribd PDF](https://scribd.pdfdownloaders.com/) or [ScribdVPDF](https://scribdvpdf.blogspot.com/) / [2](https://docdownloader.com/) / [3](https://scribd.vpdfs.com/) / [4](https://scribd.downloader.tips/) / [5](https://scribd.vdownloaders.com/) - Scribd Downloaders
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
* [BetterTwitFix](https://github.com/dylanpdx/BetterTwitFix) - Fix X.com / Telegram Embeds
|
* [BetterTwitFix](https://github.com/dylanpdx/BetterTwitFix) - Fix X.com / Telegram Embeds
|
||||||
* [InstagramEmbed](https://www.vxinstagram.com/) - Fix Instagram Embeds
|
* [InstagramEmbed](https://www.vxinstagram.com/) - Fix Instagram Embeds
|
||||||
* [Discord Packages](https://github.com/peterhanania/discord-package) - View Discord Packages / Self Host for Privacy / [Discord](https://discordpackage.com/discord)
|
* [Discord Packages](https://github.com/peterhanania/discord-package) - View Discord Packages / Self Host for Privacy / [Discord](https://discordpackage.com/discord)
|
||||||
* [Hammertime](https://hammertime.cyou/), [Dank.tools](https://dank.tools/discord-timestamp), [DiscTimestamps](https://disctimestamps.com/), [discordtimestampgenerator.net](https://discordtimestampgenerator.net/) or [discord-timestamps](https://r.3v.fi/discord-timestamps/) - Discord Timestamp Generators
|
* [Hammertime](https://hammertime.cyou/), [Dank.tools](https://dank.tools/discord-timestamp), [discordtimestampgenerator.net](https://discordtimestampgenerator.net/) or [discord-timestamps](https://r.3v.fi/discord-timestamps/) - Discord Timestamp Generators
|
||||||
* [haystackfs](https://github.com/dhrumilp15/haystackfs) - Discord File Search
|
* [haystackfs](https://github.com/dhrumilp15/haystackfs) - Discord File Search
|
||||||
* [TagMap](https://tagmap.io/) - Meet People with Similar Interests
|
* [TagMap](https://tagmap.io/) - Meet People with Similar Interests
|
||||||
* [reddit-moderator-toolbox](https://github.com/toolbox-team/reddit-moderator-toolbox) - Reddit Moderation Toolbox
|
* [reddit-moderator-toolbox](https://github.com/toolbox-team/reddit-moderator-toolbox) - Reddit Moderation Toolbox
|
||||||
@@ -328,7 +328,7 @@
|
|||||||
## ▷ YouTube Customization
|
## ▷ YouTube Customization
|
||||||
|
|
||||||
* ⭐ **[Return YouTube Dislike](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
* ⭐ **[Return YouTube Dislike](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
||||||
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** - Reduce Sensationalism / Clickbait
|
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** or [Clickbait Remover](https://github.com/pietervanheijningen/clickbait-remover-for-youtube) - Reduce Sensationalism / Clickbait
|
||||||
* ⭐ **[UnTrap](https://untrap.app/)**, [TubeMod](https://github.com/Pedro-Gregorio/TubeMod) or [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) - Distraction-Free YouTube
|
* ⭐ **[UnTrap](https://untrap.app/)**, [TubeMod](https://github.com/Pedro-Gregorio/TubeMod) or [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) - Distraction-Free YouTube
|
||||||
* ⭐ **[VORAPIS](https://vorapis.pages.dev/)** - Classic YouTube Layout / Increased Performance / [Extra Themes](https://github.com/lightbeam24/StarTube) / [Discord](https://discord.com/invite/tBBZQMscag)
|
* ⭐ **[VORAPIS](https://vorapis.pages.dev/)** - Classic YouTube Layout / Increased Performance / [Extra Themes](https://github.com/lightbeam24/StarTube) / [Discord](https://discord.com/invite/tBBZQMscag)
|
||||||
* [ImprovedTube](https://improvedtube.com/), [YouTube Alchemy](https://greasyfork.org/en/scripts/521686), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/), [YouTube Tweaks](https://addons.mozilla.org/en-US/firefox/addon/youtube-tweaks/) / [Chrome](https://chrome.google.com/webstore/detail/youtube-tweaks/oeakphpfoaeggagmgphfejmfjbhjfhhh) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) - YouTube Enhancement Extensions
|
* [ImprovedTube](https://improvedtube.com/), [YouTube Alchemy](https://greasyfork.org/en/scripts/521686), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/), [YouTube Tweaks](https://addons.mozilla.org/en-US/firefox/addon/youtube-tweaks/) / [Chrome](https://chrome.google.com/webstore/detail/youtube-tweaks/oeakphpfoaeggagmgphfejmfjbhjfhhh) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) - YouTube Enhancement Extensions
|
||||||
@@ -408,6 +408,7 @@
|
|||||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - YouTube Downloader App / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/jdownloader.md)
|
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - YouTube Downloader App / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/jdownloader.md)
|
||||||
* ⭐ **[Parabolic](https://github.com/NickvisionApps/Parabolic)** or [Tartube](https://tartube.sourceforge.io/) - Cross-Platform YT-DLP GUIs
|
* ⭐ **[Parabolic](https://github.com/NickvisionApps/Parabolic)** or [Tartube](https://tartube.sourceforge.io/) - Cross-Platform YT-DLP GUIs
|
||||||
* ⭐ **[YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader)** - YouTube Downloader App
|
* ⭐ **[YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader)** - YouTube Downloader App
|
||||||
|
* ⭐ **[AMP4](https://amp4.cc/)** - YouTube Downloader / Online
|
||||||
* [Stacher](https://stacher.io/), [youtube-dl-gui](https://github.com/oleksis/youtube-dl-gui) or [Open Video Downloader](https://github.com/StefanLobbenmeier/youtube-dl-gui) - Cross-Platform YT-DL GUIs
|
* [Stacher](https://stacher.io/), [youtube-dl-gui](https://github.com/oleksis/youtube-dl-gui) or [Open Video Downloader](https://github.com/StefanLobbenmeier/youtube-dl-gui) - Cross-Platform YT-DL GUIs
|
||||||
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [Social Saver](https://socialsaver.site/) / [GitHub](https://github.com/VishalKaleria/social-saver/), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface) or [Vividl](https://github.com/Bluegrams/Vividl) - YT-DLP GUIs
|
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [Social Saver](https://socialsaver.site/) / [GitHub](https://github.com/VishalKaleria/social-saver/), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface) or [Vividl](https://github.com/Bluegrams/Vividl) - YT-DLP GUIs
|
||||||
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - YouTube-DL GUI
|
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - YouTube-DL GUI
|
||||||
@@ -438,7 +439,7 @@
|
|||||||
* [YT Comment Viewer](https://commentviewer.com/) / [GitHub](https://github.com/sameerdash2/comment-viewer), [CommentShark](https://www.commentshark.com/youtube-comment-searcher), [Hadzy](https://hadzy.com/) or [YCF](https://ytcomment.kmcat.uk/) - Comment Search / View Censored Comments
|
* [YT Comment Viewer](https://commentviewer.com/) / [GitHub](https://github.com/sameerdash2/comment-viewer), [CommentShark](https://www.commentshark.com/youtube-comment-searcher), [Hadzy](https://hadzy.com/) or [YCF](https://ytcomment.kmcat.uk/) - Comment Search / View Censored Comments
|
||||||
* [Tokin](https://tokin.tv/) - Find Trending / Hidden Gem Videos
|
* [Tokin](https://tokin.tv/) - Find Trending / Hidden Gem Videos
|
||||||
* [IMG_0001](https://walzr.com/IMG_0001), [YTStalker](https://ytstalker.mov/), [Gloria o Devoto](https://gloriaodevoto.vercel.app/) or [Random Video](https://random-video.com/) - Find Random YouTube Videos
|
* [IMG_0001](https://walzr.com/IMG_0001), [YTStalker](https://ytstalker.mov/), [Gloria o Devoto](https://gloriaodevoto.vercel.app/) or [Random Video](https://random-video.com/) - Find Random YouTube Videos
|
||||||
* [YouTube’s Recycle Bin](https://docs.google.com/document/d/1mV5PhumaIJ8mtH8XmohqXkk5fjK_HlqcineMccPQm5A/) / [X](https://x.com/MingKasterMK/), [Project Random](https://0xbeef.co.uk/random), [ObscureTube](https://obscuretube.com/) or [petittube](https://petittube.com/fullscreen.php) - Find Videos with <100 Views
|
* [YTBin](https://rentry.co/ytbin) / [Image](https://i.imgur.com/h2A19Pd.png), [2](https://i.ibb.co/pv38kCj6/GTw-ILYb-XAAADWa-Q.png) / [Video](https://youtu.be/zYmkOInF6Us), [Project Random](https://0xbeef.co.uk/random), [ObscureTube](https://obscuretube.com/) or [petittube](https://petittube.com/fullscreen.php) - Find Videos with <100 Views
|
||||||
* [Find-Unfinished-YT](https://rentry.co/find-unfinished-yt) - Find Partially Watched Videos
|
* [Find-Unfinished-YT](https://rentry.co/find-unfinished-yt) - Find Partially Watched Videos
|
||||||
|
|
||||||
***
|
***
|
||||||
@@ -532,7 +533,7 @@
|
|||||||
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers
|
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers
|
||||||
* ⭐ **[r/Twitter](https://reddit.com/r/Twitter)** - X.com Subreddit
|
* ⭐ **[r/Twitter](https://reddit.com/r/Twitter)** - X.com Subreddit
|
||||||
* [Typefully](https://typefully.com/) - Schedule Tweets
|
* [Typefully](https://typefully.com/) - Schedule Tweets
|
||||||
* [X Cancelled](https://xcancel.com/), [sotwe](https://www.sotwe.com/), [twstalker](https://twstalker.com/) or [nitter](https://nitter.net/), [2](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - X.com Frontends / Viewers
|
* [X Cancelled](https://xcancel.com/), [sotwe](https://www.sotwe.com/), [twstalker](https://twstalker.com/) or [nitter](https://nitter.net/), [2](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - X.com Frontends
|
||||||
* [Chirr App](https://getchirrapp.com/) - Turn Articles into X.com Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
|
* [Chirr App](https://getchirrapp.com/) - Turn Articles into X.com Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
|
||||||
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
|
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
|
||||||
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
|
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
|
||||||
|
|||||||
@@ -274,8 +274,7 @@
|
|||||||
|
|
||||||
### Trakt Tools
|
### Trakt Tools
|
||||||
|
|
||||||
[Apps](https://trakt.tv/apps) / [Recommendations](https://couchmoney.tv/) / [Universal Scrobble](https://github.com/trakt-tools/universal-trakt-scrobbler) / [Create Lists](https://listrr.pro/) / [Anilist Sync](https://anitrakt.huere.net/) / [List Import](https://github.com/damienhaynes/TraktRater)
|
[Apps](https://trakt.tv/apps) / [Universal Scrobble](https://github.com/trakt-tools/universal-trakt-scrobbler) / [Create Lists](https://listrr.pro/) / [Anilist Sync](https://anitrakt.huere.net/) / [List Import](https://github.com/damienhaynes/TraktRater)
|
||||||
|
|
||||||
|
|
||||||
### Letterboxd Tools
|
### Letterboxd Tools
|
||||||
|
|
||||||
@@ -451,7 +450,7 @@
|
|||||||
* ⭐ **[icons8](https://icons8.com/icons)** - Icon Collections / [Premium Unlock](https://github.com/Kyutefox/Iconify)
|
* ⭐ **[icons8](https://icons8.com/icons)** - Icon Collections / [Premium Unlock](https://github.com/Kyutefox/Iconify)
|
||||||
* ⭐ **[SVG Repo](https://www.svgrepo.com/)** - Icon Collections
|
* ⭐ **[SVG Repo](https://www.svgrepo.com/)** - Icon Collections
|
||||||
* ⭐ **[Noun Project](https://thenounproject.com/)** - Monochrome Icons
|
* ⭐ **[Noun Project](https://thenounproject.com/)** - Monochrome Icons
|
||||||
* [useAnimations](https://useanimations.com/index.html), [heroicons-animated](https://www.heroicons-animated.com/), [lucide-animated](https://lucide-animated.com/) or [LordIcon](https://lordicon.com/) - Animated Icons
|
* [useAnimations](https://useanimations.com/index.html), [lucide-animated](https://lucide-animated.com/) or [LordIcon](https://lordicon.com/) - Animated Icons
|
||||||
* [Dashboard Icons](https://dashboardicons.com/) - Program Icons
|
* [Dashboard Icons](https://dashboardicons.com/) - Program Icons
|
||||||
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
|
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
|
||||||
* [HealthIcons](https://healthicons.org/) - Medical Icons
|
* [HealthIcons](https://healthicons.org/) - Medical Icons
|
||||||
|
|||||||
@@ -171,7 +171,7 @@
|
|||||||
|
|
||||||
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** or [Simone's Computer](https://simone.computer/#/webdesktops) - OS Emulators / VMs
|
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** or [Simone's Computer](https://simone.computer/#/webdesktops) - OS Emulators / VMs
|
||||||
* ↪️ **[Emulators on Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_emulators_on_android)**
|
* ↪️ **[Emulators on Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_emulators_on_android)**
|
||||||
* ⭐ **[VMware Workstation](https://www.techpowerup.com/download/vmware-workstation-pro/)** - Virtual Machine / [macOS VM](https://rentry.co/FMHYB64#vmware-workstation)
|
* ⭐ **[VMware Workstation](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html)** - Virtual Machine / [macOS VM](https://rentry.co/FMHYB64#vmware-workstation)
|
||||||
* ⭐ **[QEMU](https://www.qemu.org/)** - Virtual Machine / Use w/ Virt-Manager or Vagrantup / [Docker Container](https://github.com/qemus/qemu) / [GitLab](https://gitlab.com/qemu-project/qemu)
|
* ⭐ **[QEMU](https://www.qemu.org/)** - Virtual Machine / Use w/ Virt-Manager or Vagrantup / [Docker Container](https://github.com/qemus/qemu) / [GitLab](https://gitlab.com/qemu-project/qemu)
|
||||||
* ⭐ **[VirtualBox](https://www.virtualbox.org/)** - Virtual Machine / [Portable](https://www.vbox.me/)
|
* ⭐ **[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
|
* ⭐ **[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
|
||||||
@@ -230,7 +230,6 @@
|
|||||||
* [BatteryMode](https://en.bmode.tarcode.ru/) - System Tray Battery Percentage / Managers / [GitHub](https://github.com/tarcode-apps/BatteryMode)
|
* [BatteryMode](https://en.bmode.tarcode.ru/) - System Tray Battery Percentage / Managers / [GitHub](https://github.com/tarcode-apps/BatteryMode)
|
||||||
* [HWMonitor](https://www.cpuid.com/softwares/hwmonitor.html) - Hardware Monitor
|
* [HWMonitor](https://www.cpuid.com/softwares/hwmonitor.html) - Hardware Monitor
|
||||||
* [fastfetch](https://github.com/fastfetch-cli/fastfetch) - System Info & Monitoring
|
* [fastfetch](https://github.com/fastfetch-cli/fastfetch) - System Info & Monitoring
|
||||||
* [btop4win](https://github.com/aristocratos/btop4win) - System Info & Monitoring
|
|
||||||
* [NeoHtop](https://abdenasser.github.io/neohtop/) - Task Manager Alt
|
* [NeoHtop](https://abdenasser.github.io/neohtop/) - Task Manager Alt
|
||||||
* [Task Manager DeLuxe](https://www.mitec.cz/tmx.html) - Task Manager Alt
|
* [Task Manager DeLuxe](https://www.mitec.cz/tmx.html) - Task Manager Alt
|
||||||
* [Libre Hardware Monitor](https://github.com/LibreHardwareMonitor/LibreHardwareMonitor) - Updated Fork of Open Hardware Monitor
|
* [Libre Hardware Monitor](https://github.com/LibreHardwareMonitor/LibreHardwareMonitor) - Updated Fork of Open Hardware Monitor
|
||||||
|
|||||||
@@ -143,7 +143,7 @@
|
|||||||
* [Scribens](https://www.scribens.com/) - Web App
|
* [Scribens](https://www.scribens.com/) - Web App
|
||||||
* [EditGPT](https://www.editgpt.app/) - Web App / Sign-Up Required
|
* [EditGPT](https://www.editgpt.app/) - Web App / Sign-Up Required
|
||||||
* [ProWritingAid](https://prowritingaid.com/grammar-checker) - 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
|
* [Outwrite](https://www.outwrite.com/) - - Web App / Sign-Up Required
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -588,7 +588,7 @@
|
|||||||
* [Fontjoy](https://fontjoy.com/) - Generate Font Combinations
|
* [Fontjoy](https://fontjoy.com/) - Generate Font Combinations
|
||||||
* [FontSprite](https://adamstrange.itch.io/fontsprite) - FontSprite Editor
|
* [FontSprite](https://adamstrange.itch.io/fontsprite) - FontSprite Editor
|
||||||
* [BitFontMaker2](https://pentacom.jp/pentacom/bitfontmaker2/) - BitMap Font Editor
|
* [BitFontMaker2](https://pentacom.jp/pentacom/bitfontmaker2/) - BitMap Font Editor
|
||||||
* [FontEdit](https://github.com/ayoy/fontedit), [metaflop](https://www.metaflop.com/), [MFEKglif](https://github.com/MFEK/glif), [Glyphr Studio](https://www.glyphrstudio.com/), [Birdfont](https://birdfont.org/), [Universal Sans](https://universalsans.com/) or [FontForge](https://fontforge.org/en-US/) / [GitHub](https://github.com/fontforge/fontforge) - Font / Typeface Editors
|
* [FontEdit](https://github.com/ayoy/fontedit), [metaflop](https://www.metaflop.com/), [MFEKglif](https://github.com/MFEK/glif), [Glyphr Studio](https://www.glyphrstudio.com/), [Birdfont](https://birdfont.org/), [Universal Sans](https://universalsans.com/) or [FontForge](https://fontforge.org/en-US/) - Font / Typeface Editors
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|||||||
@@ -12,9 +12,9 @@
|
|||||||
|
|
||||||
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.net/) - Video / Audio / Comics / Magazines / Software / Sign-Up Required
|
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.net/) - Video / Audio / Comics / Magazines / Software / Sign-Up Required
|
||||||
* ⭐ **RuTracker Tools** - [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Bypass Extension](https://rutracker.org/forum/viewtopic.php?t=5567607) / [Bypass Proxy](https://rutracker.org/forum/viewtopic.php?t=5403116)
|
* ⭐ **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) / [Bypass Extension](https://rutracker.org/forum/viewtopic.php?t=5567607) / [Bypass Proxy](https://rutracker.org/forum/viewtopic.php?t=5403116)
|
||||||
* ⭐ **[m0nkrus](https://rentry.co/FMHYB64#m0nkrus)** - Editing Software
|
* ⭐ **[m0nkrus](https://rentry.co/FMHYB64#m0nkrus)** - Adobe / Autodesk Software
|
||||||
* ⭐ **Editing Software Tools** - [GenP](https://rentry.co/FMHYB64#genp) / [Block Telemetry](https://rentry.co/FMHYB64#a-dove-is-dumb) / [Quick Guide](https://rentry.co/FMHYB64#quick-guide)
|
* ⭐ **Adobe Tools** - [GenP](https://rentry.co/FMHYB64#genp) / [Block Adobe Telemetry](https://rentry.co/FMHYB64#a-dove-is-dumb) / [Quick Guide](https://rentry.co/FMHYB64#quick-guide)
|
||||||
* [1337x](https://1337x.to/home/), [2](https://x1337x.cc/) - Video / Audio / NSFW / [Mirrors](https://1337x-status.org/) / [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [User Ranks](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/1337x-ranks.md)
|
* [1337x](https://1337x.to/home/), [2](https://x1337x.cc/) - Video / Audio / NSFW / [Mirrors](https://1337x-status.org/) / [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [User Ranks](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/ranks-1337x.md)
|
||||||
* 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)
|
* 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
|
* [RARBG Dump](https://rarbgdump.com/) - Video / Audio / Games / Books / NSFW / Continuation Project
|
||||||
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books
|
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books
|
||||||
|
|||||||
@@ -14,7 +14,6 @@
|
|||||||
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media / Video
|
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media / Video
|
||||||
* [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) or [Video Compare](https://github.com/pixop/video-compare) - Video Quality Comparison & Analysis Tools
|
* [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) or [Video Compare](https://github.com/pixop/video-compare) - Video Quality Comparison & Analysis Tools
|
||||||
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
||||||
* [MkvDefaultTrackChanger](https://mkvdefaulttrackchanger.pages.dev/) - Easily Change Default MKV Subtitle / Audio Tracks / [GitHub](https://github.com/MikeMoolenaar/MkvDefaultTrackChanger)
|
|
||||||
* [MP4Recover](https://github.com/ActiveTK/MP4Recover) - Recover Broken MP4 Files
|
* [MP4Recover](https://github.com/ActiveTK/MP4Recover) - Recover Broken MP4 Files
|
||||||
* [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
|
* [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
|
||||||
* [VidClue](https://vidclue.com/) - Short Form Video Inspiration
|
* [VidClue](https://vidclue.com/) - Short Form Video Inspiration
|
||||||
@@ -300,7 +299,6 @@
|
|||||||
* [MSX](https://msx.benzac.de/info/) - Web App
|
* [MSX](https://msx.benzac.de/info/) - Web App
|
||||||
* [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
|
* [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
|
* [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) / [Mobile](https://github.com/jellyseerr/mobile-app) or [Ombi](https://github.com/Ombi-app/Ombi) - User Request Management
|
||||||
* [Dispatcharr](https://github.com/Dispatcharr/Dispatcharr) or [tuliprox](https://github.com/euzu/tuliprox) - IPTV Playlist Managers for Servers
|
|
||||||
* [YTDL-Sub](https://ytdl-sub.readthedocs.io/en/) - Add YouTube Channels to Media Servers / [GitHub](https://github.com/jmbannon/ytdl-sub)
|
* [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
|
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
|
||||||
|
|
||||||
@@ -364,7 +362,6 @@
|
|||||||
* ⭐ **[Video DownloadHelper](https://www.downloadhelper.net/)** / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/video-downloadhelper.md), [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
* ⭐ **[Video DownloadHelper](https://www.downloadhelper.net/)** / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/video-downloadhelper.md), [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)
|
* [CD(R)M-Project](https://cdm-project.com/explore/repos) - DRM Tools / [Discord](https://discord.gg/zvGBza34JP)
|
||||||
* [XT Fetch](https://xt-fetch.vercel.app/) - Multi-Site / Online
|
* [XT Fetch](https://xt-fetch.vercel.app/) - Multi-Site / Online
|
||||||
* [VideoDL](https://github.com/CharlesPikachu/videodl) - Multi-Site
|
|
||||||
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online
|
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online
|
||||||
* [OFA Downloader](https://oneforalldownloader.com/) - Multi-Site / Online
|
* [OFA Downloader](https://oneforalldownloader.com/) - Multi-Site / Online
|
||||||
* [you-get](https://you-get.org/) - Multi-Site / CLI / [GitHub](https://github.com/soimort/you-get)
|
* [you-get](https://you-get.org/) - Multi-Site / CLI / [GitHub](https://github.com/soimort/you-get)
|
||||||
|
|||||||
@@ -11,10 +11,10 @@
|
|||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[Cineby](https://www.cineby.gd/)**, [2](https://www.bitcine.app/) or [Fmovies+](https://www.fmovies.gd/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
* ⭐ **[Cineby](https://www.cineby.gd/)**, [2](https://www.bitcine.app/) or [Fmovies+](https://www.fmovies.gd/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||||
* ⭐ **[XPrime](https://xprime.today/)**, [2](https://xprime.stream/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/pDjg5ccSgg)
|
|
||||||
* ⭐ **[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)
|
|
||||||
* ⭐ **[P-Stream](https://pstream.mov/)** - Movies / TV / Anime / Auto-Next / **[Add Sources](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/movie-web.md)** / [Discord](https://discord.gg/uHU4knYRPa) / [GitHub](https://github.com/p-stream)
|
* ⭐ **[P-Stream](https://pstream.mov/)** - Movies / TV / Anime / Auto-Next / **[Add Sources](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/movie-web.md)** / [Discord](https://discord.gg/uHU4knYRPa) / [GitHub](https://github.com/p-stream)
|
||||||
* ⭐ **[Aether](https://aether.mom/)**, [2](https://legacy.aether.mom/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/MadMF7xb5q)
|
* ⭐ **[Aether](https://aether.mom/)**, [2](https://legacy.aether.mom/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/MadMF7xb5q)
|
||||||
|
* ⭐ **[XPrime](https://xprime.today/)**, [2](https://xprime.stream/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/pDjg5ccSgg)
|
||||||
|
* ⭐ **[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 / Auto-Next / [Discord](https://discord.com/invite/flickystream)
|
* ⭐ **[FlickyStream](https://flickystream.ru/)** or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/flickystream)
|
||||||
* ⭐ **[VeloraTV](https://veloratv.ru/)** or [456movie](https://456movie.net/), [2](https://345movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/4SJ5c9gZUQ)
|
* ⭐ **[VeloraTV](https://veloratv.ru/)** or [456movie](https://456movie.net/), [2](https://345movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/4SJ5c9gZUQ)
|
||||||
* ⭐ **[Cinegram](https://cinegram.net/)** - Movies / TV / Anime / Auto-Next
|
* ⭐ **[Cinegram](https://cinegram.net/)** - Movies / TV / Anime / Auto-Next
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
|
|
||||||
## ▷ Stream Aggregators
|
## ▷ Stream Aggregators
|
||||||
|
|
||||||
* **Note** - These serve as aggregators for multiple sources, and have custom players that will automatically test streams one-by-one without user input required. Sources vary site-to-site depending on which sites feel are worth using. Check [grading page](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#stream-aggregators) / [2](https://fmhy-grading.pages.dev/) for scores.
|
* **Note** - These serve as aggregators for multiple sources, and have custom players that will automatically test streams one-by-one without user input required. Sources vary site-to-site depending on which owners feel are worth using. Check [grading page](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#stream-aggregators) / [2](https://fmhy-grading.pages.dev/) for scores.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
|
|
||||||
## ▷ Embed Frontends
|
## ▷ Embed Frontends
|
||||||
|
|
||||||
* **Note** - These serve as simple frontends for multiple sources, and allow users to select which they want to try from lists. Sources vary site-to-site depending on which sites feel are worth using. Check [grading page](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#embed-frontends) / [2](https://fmhy-grading.pages.dev/) for scores.
|
* **Note** - These serve as simple frontends for multiple sources, and allow users to select which they want to try from lists. Sources vary site-to-site depending on which owners feel are worth using. Check [grading page](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#embed-frontends) / [2](https://fmhy-grading.pages.dev/) for scores.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@@ -144,7 +144,6 @@
|
|||||||
* [Prime Video Free](https://www.amazon.com/gp/video/storefront/?ie=UTF8&contentId=freetv) - Movies / TV / US Only
|
* [Prime Video Free](https://www.amazon.com/gp/video/storefront/?ie=UTF8&contentId=freetv) - Movies / TV / US Only
|
||||||
* [Roku](https://therokuchannel.roku.com/) - Movies / TV / US Only
|
* [Roku](https://therokuchannel.roku.com/) - Movies / TV / US Only
|
||||||
* [DarkRoom](https://www.darkroom.film/) - Movies / TV / US Only / Sign-Up Required
|
* [DarkRoom](https://www.darkroom.film/) - Movies / TV / US Only / Sign-Up Required
|
||||||
* [Fawesome](https://fawesome.tv/) - Movies / TV
|
|
||||||
* [Sling](https://watch.sling.com/) - Movies / TV / Live News / US Only
|
* [Sling](https://watch.sling.com/) - Movies / TV / Live News / US Only
|
||||||
* [Mometu](https://watch.mometu.com/) - Movies / TV / US Only
|
* [Mometu](https://watch.mometu.com/) - Movies / TV / US Only
|
||||||
* [Vudu](https://www.vudu.com/content/movies/uxpage/View-All-Free-Movies-TV/207) - Movies / TV / US Only
|
* [Vudu](https://www.vudu.com/content/movies/uxpage/View-All-Free-Movies-TV/207) - Movies / TV / US Only
|
||||||
@@ -155,6 +154,7 @@
|
|||||||
* [7+](https://7plus.com.au/) - Movies / TV / US + AU Only
|
* [7+](https://7plus.com.au/) - Movies / TV / US + AU Only
|
||||||
* [Playary](https://www.playary.com/) - Movies / TV
|
* [Playary](https://www.playary.com/) - Movies / TV
|
||||||
* [Filmzie](https://filmzie.com/) - Movies / TV
|
* [Filmzie](https://filmzie.com/) - Movies / TV
|
||||||
|
* [Fawesome](https://fawesome.tv/) - Movies / TV
|
||||||
* [ARTE](https://www.arte.tv/en) - Movies / TV / Auto-Next
|
* [ARTE](https://www.arte.tv/en) - Movies / TV / Auto-Next
|
||||||
* [BBC iPlayer](https://www.bbc.co.uk/iplayer) - Movies / TV / UK VPN Required (windscribe) / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
* [BBC iPlayer](https://www.bbc.co.uk/iplayer) - Movies / TV / UK VPN Required (windscribe) / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||||
* [FlixHouse](https://flixhouse.com/) - Indie Movies
|
* [FlixHouse](https://flixhouse.com/) - Indie Movies
|
||||||
@@ -320,17 +320,15 @@
|
|||||||
* ⭐ **[GoPlay](https://goplay.su/)** - TV / Movies / [Discord](https://discord.com/invite/yY2P3DQR8S)
|
* ⭐ **[GoPlay](https://goplay.su/)** - TV / Movies / [Discord](https://discord.com/invite/yY2P3DQR8S)
|
||||||
* ⭐ **[Dramacool](https://dramacoolt.com.in/)** - TV / Movies
|
* ⭐ **[Dramacool](https://dramacoolt.com.in/)** - TV / Movies
|
||||||
* [Einthusan](https://einthusan.tv/intro/) - Movies
|
* [Einthusan](https://einthusan.tv/intro/) - Movies
|
||||||
* [KissAsian](https://ww14.kissasian.com.lv/), [2](https://kisskh.fr/) - TV / Movies
|
* [kisskh](https://kisskh.ovh/), [2](https://kisskh.run/), [3](https://kissasian.com.lv/), [4](https://kisskh.id/) - TV / Movies
|
||||||
* [KissKH](https://kisskh.ovh/), [2](https://kisskh.id/) - TV / Movies
|
|
||||||
* [Dramahood](https://dramahood.mom/) - TV / Movies
|
* [Dramahood](https://dramahood.mom/) - TV / Movies
|
||||||
* [Asiaflix](https://asiaflix.net/), [2](https://asiaflix.in/) - TV / Movies / [Subreddit](https://www.reddit.com/r/Asiaflix/) / [Telegram](https://t.me/asiaflixapp) / [Discord](https://discord.com/invite/JTxEVkZWhc)
|
* [Asiaflix](https://asiaflix.net/), [2](https://asiaflix.in/) - TV / Movies / [Subreddit](https://www.reddit.com/r/Asiaflix/) / [Telegram](https://t.me/asiaflixapp) / [Discord](https://discord.com/invite/JTxEVkZWhc)
|
||||||
* [Rive](https://rivestream.org/kdrama) - Korean Drama / TV / Movies / [Discord](https://discord.com/invite/6xJmJja8fV)
|
* [Rive](https://rivestream.org/kdrama) - Korean Drama / TV / Movies / [Discord](https://discord.com/invite/6xJmJja8fV)
|
||||||
* [Vidbox](https://vidbox.cc/asian-drama) - TV / Movies / [Status](https://vidbox.xyz/) / [Discord](https://discord.gg/VGQKGPM9Ej)
|
* [Vidbox](https://vidbox.cc/asian-drama) - TV / Movies / [Status](https://vidbox.xyz/) / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||||
* [DramaFire](https://dramafire.com.pl/) - TV / Movies
|
* [DramaFire](https://dramafire.com.pl/) - TV / Movies
|
||||||
* [KissAsian.video](https://kissasian.video/) - TV / Movies
|
|
||||||
* [KissKH.dk](https://kisskh.dk/) - TV / Movies
|
|
||||||
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
||||||
* [AsianSubs](https://asiansubs.com/) - TV / Movies
|
* [AsianSubs](https://asiansubs.com/) - TV / Movies
|
||||||
|
* [KissAsian](https://kissasian.video/) - TV / Movies
|
||||||
* [Dramacool.sr](https://www12.dramacool.sr/) - TV / Movies
|
* [Dramacool.sr](https://www12.dramacool.sr/) - TV / Movies
|
||||||
* [Dramacool9](https://dramacools9.cam/) - TV / Movies
|
* [Dramacool9](https://dramacools9.cam/) - TV / Movies
|
||||||
* [OnDemandChina](https://www.ondemandchina.com/) - TV / Movies
|
* [OnDemandChina](https://www.ondemandchina.com/) - TV / Movies
|
||||||
@@ -448,13 +446,13 @@
|
|||||||
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator
|
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator
|
||||||
* ⭐ **[NTV](https://ntvstream.cx/)**, [2](http://ntv.cx/) - TV / Sports / Aggregator / [Mirrors](https://ntv.direct/) / [Telegram](https://t.me/ntvstream) / [Discord](https://discord.gg/uY3ud5gcpW)
|
* ⭐ **[NTV](https://ntvstream.cx/)**, [2](http://ntv.cx/) - TV / Sports / Aggregator / [Mirrors](https://ntv.direct/) / [Telegram](https://t.me/ntvstream) / [Discord](https://discord.gg/uY3ud5gcpW)
|
||||||
* ⭐ **[Watch Footy](https://watchfooty.st/)**, [2](https://www.watchfooty.top), [3](https://watchfooty.su/) - Stream Aggregator / [Mirrors](https://watchfty.link/) / [Discord](https://discord.gg/T38kUWZHtB)
|
* ⭐ **[Watch Footy](https://watchfooty.st/)**, [2](https://www.watchfooty.top), [3](https://watchfooty.su/) - Stream Aggregator / [Mirrors](https://watchfty.link/) / [Discord](https://discord.gg/T38kUWZHtB)
|
||||||
* ⭐ **[StreamSports99](https://streamsports99.su)**, [2](https://streamsports99.website/) / [Discord](https://discord.gg/QXKvEbyrVc)
|
|
||||||
* ⭐ **[Sport7](https://sport7.pro/)**, [2](https://sport71.pro//) / [Player Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/sport7.md) / [Telegram](https://t.me/goatifisports) / [Discord](https://discord.gg/xcdfVwgEx3)
|
* ⭐ **[Sport7](https://sport7.pro/)**, [2](https://sport71.pro//) / [Player Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/sport7.md) / [Telegram](https://t.me/goatifisports) / [Discord](https://discord.gg/xcdfVwgEx3)
|
||||||
* ⭐ **[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/)
|
* ⭐ **[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.link/) / [Discord](https://discord.gg/5AMPdpckjH)
|
* ⭐ **[PPV.TO](https://ppv.to/)**, [2](https://ppvs.su/) - Live Events / [Mirrors](https://ppv.link/) / [Discord](https://discord.gg/5AMPdpckjH)
|
||||||
* ⭐ **[BINTV](https://bintv.fun/)** / [Telegram](https://t.me/+PiQ1lsDtjoU5NmFl) / [Discord](https://discord.gg/fMU4hpDjPg)
|
* ⭐ **[BINTV](https://bintv.fun/)** / [Telegram](https://t.me/+PiQ1lsDtjoU5NmFl) / [Discord](https://discord.gg/fMU4hpDjPg)
|
||||||
* ⭐ **[SportsBite](https://sportsbite.live/)**, [2](https://sportsbite.pro/) / [Status](https://allbite.xyz/) / [Telegram](https://t.me/+Zo7CoigxqRczMjRk) / [Discord](https://discord.gg/Qg7uRXWAhU)
|
* ⭐ **[SportsBite](https://sportsbite.live/)**, [2](https://sportsbite.pro/) / [Status](https://allbite.xyz/) / [Telegram](https://t.me/+Zo7CoigxqRczMjRk) / [Discord](https://discord.gg/Qg7uRXWAhU)
|
||||||
* ⭐ **[StreamEast](https://streameast.ga/)**, [2](https://streameast.ph/) / [Mirrors](https://v2.gostreameast.link/)
|
* ⭐ **[StreamEast](https://streameast.ga/)**, [2](https://streameast.ph/) / [Mirrors](https://v2.gostreameast.link/)
|
||||||
|
* ⭐ **[StreamSports99](https://streamsports99.su)**, [2](https://streamsports99.website/) / [Discord](https://discord.gg/QXKvEbyrVc)
|
||||||
* ⭐ **[LiveTV](https://livetv.sx/enx/)**
|
* ⭐ **[LiveTV](https://livetv.sx/enx/)**
|
||||||
* ⭐ **[TimStreams](https://timstreams.site/)**, [2](https://timstreams.online/) - Live Events / [Status](https://timstreams.online/) / [Discord](https://discord.com/invite/p3aJ7rJGrz)
|
* ⭐ **[TimStreams](https://timstreams.site/)**, [2](https://timstreams.online/) - Live Events / [Status](https://timstreams.online/) / [Discord](https://discord.com/invite/p3aJ7rJGrz)
|
||||||
* [Sportsurge](https://v2.sportsurge.net/home5/) - Stream Aggregator
|
* [Sportsurge](https://v2.sportsurge.net/home5/) - Stream Aggregator
|
||||||
@@ -556,7 +554,7 @@
|
|||||||
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
||||||
* [PlaylistEditorTV](https://github.com/Isayso/PlaylistEditorTV) - IPTV Player
|
* [PlaylistEditorTV](https://github.com/Isayso/PlaylistEditorTV) - IPTV Player
|
||||||
* [LivePush](https://livepush.io/hls-player/index.html) - IPTV Player
|
* [LivePush](https://livepush.io/hls-player/index.html) - IPTV Player
|
||||||
* [IPTV Player](https://iptvplayer.stream/) - IPTV Web Player
|
* [IPTVPlayer](https://iptvplayer.stream/) - IPTV Web Player
|
||||||
* [M3U IPTV](https://m3u-ip.tv/browser) - IPTV Web Player
|
* [M3U IPTV](https://m3u-ip.tv/browser) - IPTV Web Player
|
||||||
* [IPTV Player](https://iptv-player.me/) - IPTV Web Player
|
* [IPTV Player](https://iptv-player.me/) - IPTV Web Player
|
||||||
* [TMDB-To-VOD](https://github.com/gogetta69/TMDB-To-VOD-Playlist) - Generate Playlists
|
* [TMDB-To-VOD](https://github.com/gogetta69/TMDB-To-VOD-Playlist) - Generate Playlists
|
||||||
@@ -577,6 +575,7 @@
|
|||||||
* ⭐ **[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/)
|
* ⭐ **[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/)
|
||||||
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
||||||
* [iSponsorBlockTV](https://github.com/dmunozv04/iSponsorBlockTV) - SponsorBlock App
|
* [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)
|
* [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 App
|
* [SmartTwitchTV](https://github.com/fgl27/SmartTwitchTV) - Smart TV Twitch App
|
||||||
* [SmartTVKick](https://github.com/CxWatcher/SmartTVKick) - Ad-Free FireTV + Android TV Kick App
|
* [SmartTVKick](https://github.com/CxWatcher/SmartTVKick) - Ad-Free FireTV + Android TV Kick App
|
||||||
@@ -586,15 +585,12 @@
|
|||||||
* [ChanSort](https://github.com/PredatH0r/ChanSort) - TV Channel List Editor for Samsung, LG, etc.
|
* [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
|
* [Samsung Smart TV Adblock](https://redd.it/gn7fw5) - Block Samsung Smart TV Ads
|
||||||
* [tvQuickActions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Remote Button Remapper / Sign-Up Required
|
* [tvQuickActions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Remote Button Remapper / Sign-Up Required
|
||||||
* [MuTube](https://github.com/Exaphis/mutube) or [Yattee](https://github.com/yattee/yattee)- Apple TV YouTube Apps
|
|
||||||
* [Blackb0x](https://github.com/NSSpiral/Blackb0x) - Apple TV Jailbreak
|
|
||||||
* [ATVLoadly](https://github.com/bitxeno/atvloadly) - Apple TV Sideloading
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Android TV
|
## ▷ Android TV
|
||||||
|
|
||||||
* 🌐 **[Awesome Android TV](https://github.com/Generator/Awesome-Android-TV-FOSS-Apps)**, **[Ultimate Android TV](https://xdaforums.com/t/android-ultimate-collection-guides.4513231/#post-87676359)** or **[TroyPoint](https://troypoint.com/)** - Android TV App Indexes
|
* 🌐 **[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)** / [Discord](https://discord.com/invite/m2P7v8Y2qR) / [Telegram](https://t.me/tizentubecobaltofficial) or [SmartTube](https://github.com/yuliskov/SmartTube) / [2](https://smarttubeapp.github.io/) / [Discord](https://discord.com/invite/Wt8HDDej5z) / [Telegram](https://t.me/SmartTubeEN) - Ad-Free Android TV / Firestick YouTube
|
* ⭐ **[TizenTube Cobalt](https://github.com/reisxd/TizenTubeCobalt)** / [Discord](https://discord.com/invite/m2P7v8Y2qR) / [Telegram](https://t.me/tizentubecobaltofficial) or [SmartTube](https://github.com/yuliskov/SmartTube) / [2](https://smarttubeapp.github.io/) / [Discord](https://discord.com/invite/Wt8HDDej5z) / [Telegram](https://t.me/SmartTubeEN) - Ad-Free Android TV / Firestick YouTube
|
||||||
* [Flicky](https://github.com/mlm-games/flicky) - F-Droid Client
|
* [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 Tools v4](https://xdaforums.com/t/tool-all-in-one-tool-for-windows-android-tv-tools-v4.4648239/) - Multiple Android TV Tools
|
||||||
@@ -603,13 +599,14 @@
|
|||||||
* [S0undTV](https://github.com/S0und/S0undTV) - Twitch Player / [Discord](https://discord.gg/zmNjK2S)
|
* [S0undTV](https://github.com/S0und/S0undTV) - Twitch Player / [Discord](https://discord.gg/zmNjK2S)
|
||||||
* [SmartTVKick](https://github.com/CxWatcher/SmartTVKick) - Ad-Free Kick App
|
* [SmartTVKick](https://github.com/CxWatcher/SmartTVKick) - Ad-Free Kick App
|
||||||
* [Serenity Android](https://github.com/NineWorlds/serenity-android) - Emby Android TV App
|
* [Serenity Android](https://github.com/NineWorlds/serenity-android) - Emby Android TV App
|
||||||
* [Nuvio](https://tapframe.github.io/NuvioStreaming/) - Streaming App / Stremio Support / [GitHub](https://github.com/tapframe/NuvioStreaming)
|
* [Nuvio](https://tapframe.github.io/NuvioStreaming/) / [GitHub](https://github.com/tapframe/NuvioStreaming) - Streaming App / Stremio Support
|
||||||
* [Sozo](https://sozo.azamov.me/) - Anime Streaming App
|
* [Sozo](https://sozo.azamov.me/) - Anime Streaming App
|
||||||
* [atvTools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Install Apps, Run ADB, Shell Commands, etc.
|
* [atvTools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Install Apps, Run ADB, Shell Commands, etc.
|
||||||
* [Projectivy Launcher](https://play.google.com/store/apps/details?id=com.spocky.projengmenu) / [XDA Thread](https://xdaforums.com/t/app-android-tv-projectivy-launcher.4436549/) / [Icon Pack](https://github.com/SicMundus86/ProjectivyIconPack) / [GitHub](https://github.com/spocky/miproja1/releases) or [Leanback on Fire](https://github.com/tsynik/LeanbackLauncher) - Android TV Launchers
|
* [Projectivy Launcher](https://play.google.com/store/apps/details?id=com.spocky.projengmenu) / [XDA Thread](https://xdaforums.com/t/app-android-tv-projectivy-launcher.4436549/) / [Icon Pack](https://github.com/SicMundus86/ProjectivyIconPack) / [GitHub](https://github.com/spocky/miproja1/releases) or [Leanback on Fire](https://github.com/tsynik/LeanbackLauncher) - Android TV Launchers
|
||||||
* [Launcher Manager](https://xdaforums.com/t/app-firetv-noroot-launcher-manager-change-launcher-without-root.4176349/) - Change Default Launcher
|
* [Launcher Manager](https://xdaforums.com/t/app-firetv-noroot-launcher-manager-change-launcher-without-root.4176349/) - Change Default Launcher
|
||||||
* [AerialViews](https://github.com/theothernt/AerialViews) - Custom Screensaver App
|
* [AerialViews](https://github.com/theothernt/AerialViews) - Custom Screensaver App
|
||||||
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► [Android Streaming](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_streaming)
|
# ► [Android Streaming](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_streaming)
|
||||||
@@ -628,9 +625,9 @@
|
|||||||
|
|
||||||
* ↪️ **[General DDL Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download)**
|
* ↪️ **[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)**
|
* ↪️ **[Video Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||||
* ⭐ **[111477](https://rentry.co/FMHYB64#directory-111477)** - Movies / TV / Anime / Directory / [Discord](https://discord.gg/YjkP4pANpg)
|
|
||||||
* ⭐ **[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)
|
* ⭐ **[Acer Movies](https://rentry.co/FMHYB64#acer)** - Movies / TV / Anime / [Discord](https://discord.com/invite/hpkMqrwRCE)
|
||||||
|
* ⭐ **[Scloud](https://rentry.co/FMHYB64#scloud)** - Movies / TV / 4K / [Telegram](https://t.me/scloudmediahub)
|
||||||
|
* ⭐ **[111477](https://rentry.co/FMHYB64#directory-111477)** - Movies / TV / Anime / Directory / [Discord](https://discord.gg/YjkP4pANpg)
|
||||||
* ⭐ **[The One Piece](https://m.flixindia.xyz/)** - Movie / TV / Anime / [Telegram](https://telegram.me/TheOnePieceUpdates)
|
* ⭐ **[The One Piece](https://m.flixindia.xyz/)** - Movie / TV / Anime / [Telegram](https://telegram.me/TheOnePieceUpdates)
|
||||||
* ⭐ **[VegaMovies](https://vegamovies.gripe/)**, [2](https://moviesflix.ad/) - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
* ⭐ **[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)
|
* ⭐ **[Pahe](https://pahe.ink/)** - Movies / TV / Anime / 4K / [Ad-Bypass (Must Have)](https://greasyfork.org/en/scripts/443277) / [Discord](https://discord.gg/4AvaCsd2J4)
|
||||||
@@ -649,7 +646,6 @@
|
|||||||
* [Medeberiya](https://medeberiya.net/) - Movie / TV
|
* [Medeberiya](https://medeberiya.net/) - Movie / TV
|
||||||
* [TFPDL](https://tfpdl.se/category/movies/), [2](https://tfpdl.to/category/movies/) - Movies / TV / Anime
|
* [TFPDL](https://tfpdl.se/category/movies/), [2](https://tfpdl.to/category/movies/) - Movies / TV / Anime
|
||||||
* [Ripper's Archive](https://rentry.co/FMHYB64#rippers-archive) - Movies / TV / Anime
|
* [Ripper's Archive](https://rentry.co/FMHYB64#rippers-archive) - Movies / TV / Anime
|
||||||
* [MoviesDrive](https://moviesdrive.forum/) - Movies / TV / Anime / [Status](https://moviesdrives.cv/), [2](https://moviedrive.org/) / [Telegram](https://t.me/moviesdrivee)
|
|
||||||
* [P-Stream](https://pstream.mov/) - Movies / TV / Anime / [Discord](https://discord.gg/uHU4knYRPa)
|
* [P-Stream](https://pstream.mov/) - Movies / TV / Anime / [Discord](https://discord.gg/uHU4knYRPa)
|
||||||
* [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)
|
* [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
|
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime
|
||||||
@@ -674,6 +670,7 @@
|
|||||||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / Anime / Right Click to Save
|
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / Anime / Right Click to Save
|
||||||
* [downloads-anymovies](https://www.downloads-anymovies.co/) - Movies / 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/)
|
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / [Clones](https://hollymoviehd-official.com/)
|
||||||
|
* [Download.ir](https://download.ir/topics/film/) - Movies / TV
|
||||||
* [UHDMovies](https://modlist.in/?type=uhdmovies) - Movies / 4K
|
* [UHDMovies](https://modlist.in/?type=uhdmovies) - Movies / 4K
|
||||||
* [4KHDHub](https://4khdhub.fans/) - Movies / TV / 4K
|
* [4KHDHub](https://4khdhub.fans/) - Movies / TV / 4K
|
||||||
* [ShareSpark](https://ww1.sharespark.cfd/) - Movies / TV
|
* [ShareSpark](https://ww1.sharespark.cfd/) - Movies / TV
|
||||||
@@ -814,7 +811,7 @@
|
|||||||
***
|
***
|
||||||
|
|
||||||
* ↪️ **[General Torrent Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent)**
|
* ↪️ **[General Torrent Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent)**
|
||||||
* ⭐ **[1337x Movies](https://1337x.to/movie-library/1/)** - Movies / TV / Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_sites)
|
* ⭐ **[1337x Movies](https://1337x.to/movie-library/1/)** - Movies / TV / Anime
|
||||||
* ⭐ **[RuTracker Movies](https://rutracker.org/forum/index.php?c=2)** - Movies / TV / Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_sites)
|
* ⭐ **[RuTracker Movies](https://rutracker.org/forum/index.php?c=2)** - Movies / TV / Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_sites)
|
||||||
* ⭐ **[Rive](https://rivestream.org/)** - Movies / TV / Anime / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
* ⭐ **[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
|
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / Sign-Up Required
|
||||||
@@ -930,16 +927,15 @@
|
|||||||
|
|
||||||
## ▷ Recommendation Tools
|
## ▷ Recommendation Tools
|
||||||
|
|
||||||
* ⭐ **[Nothing To Watch](https://nothing-to-watch.port80.ch/)** - Interactive Movie Discovery Visualization / [GitHub](https://github.com/gnovotny/nothing-to-watch)
|
* [Nothing To Watch](https://nothing-to-watch.port80.ch/) - Interactive Movie Discovery Visualization / [GitHub](https://github.com/gnovotny/nothing-to-watch)
|
||||||
* [SuggestStream](https://suggestream.com/) - Movie / TV Recommendations
|
* [SuggestStream](https://suggestream.com/) - Movie / TV Recommendations
|
||||||
* [Taste.io](https://www.taste.io/) - Movie Recommendations
|
|
||||||
* [BestSimilar](https://bestsimilar.com/) - Movie Recommendations
|
* [BestSimilar](https://bestsimilar.com/) - Movie Recommendations
|
||||||
|
* [Taste.io](https://www.taste.io/) - Movie Recommendations
|
||||||
* [MovieLens](https://movielens.org/) - Movie Recommendations
|
* [MovieLens](https://movielens.org/) - Movie Recommendations
|
||||||
* [r/MovieSuggestions](https://www.reddit.com/r/MovieSuggestions/) - Movie Recommendations
|
* [r/MovieSuggestions](https://www.reddit.com/r/MovieSuggestions/) - Movie Recommendations
|
||||||
* [MovieSync](https://movie-sync-app.web.app/) - Movie Recommendations
|
* [MovieSync](https://movie-sync-app.web.app/) - Movie Recommendations
|
||||||
* [Cinetrii](https://cinetrii.com/) - Discover Movies with Similar Themes
|
* [Cinetrii](https://cinetrii.com/) - Discover Movies with Similar Themes
|
||||||
* [couchmoney](https://couchmoney.tv/) - Trakt History Based Recommendations
|
* [Simkl](https://simkl.com/) - Recommendations Based on Your Ratings
|
||||||
* [Simkl](https://simkl.com/) - Simkl History Based Recommendations
|
|
||||||
* [Match-a-Movie](https://match-a-movie.com/) - Pick Movies with Friends
|
* [Match-a-Movie](https://match-a-movie.com/) - Pick Movies with Friends
|
||||||
* [NextFlick](https://nextflick.tv/) - Random Trailers
|
* [NextFlick](https://nextflick.tv/) - Random Trailers
|
||||||
|
|
||||||
@@ -976,7 +972,6 @@
|
|||||||
* [SoniTranslate](https://github.com/R3gm/SoniTranslate) - Video Translator
|
* [SoniTranslate](https://github.com/R3gm/SoniTranslate) - Video Translator
|
||||||
* [asbplayer](https://killergerbah.github.io/asbplayer/) - Subtitle Sentence Mining
|
* [asbplayer](https://killergerbah.github.io/asbplayer/) - Subtitle Sentence Mining
|
||||||
* [Sushi.net](https://github.com/maxpiva/Sushi.Net) - Automatic Subtitle Shifter Based on Audio
|
* [Sushi.net](https://github.com/maxpiva/Sushi.Net) - Automatic Subtitle Shifter Based on Audio
|
||||||
* [MkvDefaultTrackChanger](https://mkvdefaulttrackchanger.pages.dev/) - Easily Change Default MKV Subtitle / Audio Tracks / [GitHub](https://github.com/MikeMoolenaar/MkvDefaultTrackChanger)
|
|
||||||
* [mkv-extract](https://qgustavor.github.io/mkv-extract/), [gmkvextractgui](https://sourceforge.net/projects/gmkvextractgui/) or [MKVcleaver](https://www.videohelp.com/software/MKVcleaver) - Extract Subtitles from MKV Files
|
* [mkv-extract](https://qgustavor.github.io/mkv-extract/), [gmkvextractgui](https://sourceforge.net/projects/gmkvextractgui/) or [MKVcleaver](https://www.videohelp.com/software/MKVcleaver) - Extract Subtitles from MKV Files
|
||||||
* [VideoSubFinder](https://sourceforge.net/projects/videosubfinder/) - Hardcoded Subtitle Extractor
|
* [VideoSubFinder](https://sourceforge.net/projects/videosubfinder/) - Hardcoded Subtitle Extractor
|
||||||
* [Subtitling Guide](https://baechusquad.download/guide/) - Subtitling Guide
|
* [Subtitling Guide](https://baechusquad.download/guide/) - Subtitling Guide
|
||||||
|
|||||||
@@ -1,125 +0,0 @@
|
|||||||
|
|
||||||
import fs from 'node:fs';
|
|
||||||
import path from 'node:path';
|
|
||||||
import { fileURLToPath } from 'node:url';
|
|
||||||
|
|
||||||
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
||||||
const DOCS_DIR = path.resolve(__dirname, '../docs');
|
|
||||||
|
|
||||||
// Non-recursive scan of DOCS_DIR
|
|
||||||
function getDocsFiles(dir) {
|
|
||||||
const files = fs.readdirSync(dir);
|
|
||||||
const mdFiles = [];
|
|
||||||
files.forEach(file => {
|
|
||||||
const filePath = path.join(dir, file);
|
|
||||||
const stat = fs.statSync(filePath);
|
|
||||||
if (!stat.isDirectory() && file.endsWith('.md')) {
|
|
||||||
mdFiles.push(filePath);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return mdFiles;
|
|
||||||
}
|
|
||||||
|
|
||||||
const files = getDocsFiles(DOCS_DIR);
|
|
||||||
let hasErrors = false;
|
|
||||||
|
|
||||||
console.log('🔍 Scanning markdown files for formatting issues...\n');
|
|
||||||
|
|
||||||
files.forEach(file => {
|
|
||||||
const content = fs.readFileSync(file, 'utf-8');
|
|
||||||
const lines = content.split('\n');
|
|
||||||
const relativePath = path.relative(process.cwd(), file);
|
|
||||||
|
|
||||||
lines.forEach((line, index) => {
|
|
||||||
const lineNum = index + 1;
|
|
||||||
let errors = [];
|
|
||||||
|
|
||||||
// Check 1: Starred links must be bolded
|
|
||||||
// Pattern: * ⭐ [Link] -> Bad
|
|
||||||
// Pattern: * ⭐ **[Link] -> Good
|
|
||||||
// Only applies to list items starting with * or -
|
|
||||||
if (/^\s*[*+-]\s+⭐/.test(line)) {
|
|
||||||
// It's a starred list item.
|
|
||||||
// Check if the text immediately following "⭐ " starts with "**"
|
|
||||||
// We look for the star, then optional spaces, then ensure "**" follows.
|
|
||||||
if (!/⭐\s*\*\*/.test(line)) {
|
|
||||||
errors.push('Starred item not bolded (expected * ⭐ **Link**)');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check 2: Space between ] (
|
|
||||||
if (/\]\s+\(http/.test(line)) {
|
|
||||||
errors.push('Space between bracket and parenthesis in link');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check 3: Missing closing bracket ]
|
|
||||||
// Pattern: [Text(http...
|
|
||||||
// We look for [ followed by (http without ] in between.
|
|
||||||
if (/\[[^\]]*\(http/.test(line)) {
|
|
||||||
errors.push('Possible missing closing bracket "]"');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check 4: Missing closing parenthesis )
|
|
||||||
// Pattern: [Text](http... where it ends without )
|
|
||||||
// We look for "](http..." followed by space or end of line, but NOT ending with )
|
|
||||||
// regex: \]\(http[^)]*($|\s) matches "](http://url" at EOL or "](http://url "
|
|
||||||
const missingParenMatch = line.match(/\]\((http[^)]+?)($|\s)/);
|
|
||||||
if (missingParenMatch) {
|
|
||||||
errors.push(`Possible broken link (missing closing parenthesis or trailing space): ${missingParenMatch[1]}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check 5: Double parenthesis in link
|
|
||||||
// specific pattern: ](url))
|
|
||||||
// This is often valid if inside parenthesis: (See [Link](url))
|
|
||||||
// We only flag if parentheses are UNBALANCED in the line.
|
|
||||||
if (/\]\([^)]+\)\)/.test(line)) {
|
|
||||||
const openParens = (line.match(/\(/g) || []).length;
|
|
||||||
const closeParens = (line.match(/\)/g) || []).length;
|
|
||||||
if (closeParens > openParens) {
|
|
||||||
errors.push('Double closing parenthesis in link (Unbalanced)');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check 6: Double spaces
|
|
||||||
// We want to avoid double spaces in the text, but ignore leading indentation.
|
|
||||||
// We trim start of line to ignore indentation, then check for " ".
|
|
||||||
const trimmedLine = line.trimStart();
|
|
||||||
if (trimmedLine.includes(' ')) {
|
|
||||||
errors.push('Double space detected');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check 7: Broken Bold Syntax
|
|
||||||
// Pattern: ** Text**, **Text **, or ** Text **
|
|
||||||
// We temporarily replace inline code to avoid false positives
|
|
||||||
const boldLine = line.replace(/`[^`]+`/g, 'PLACEHOLDER');
|
|
||||||
if (boldLine.includes('**')) {
|
|
||||||
const parts = boldLine.split('**');
|
|
||||||
// Check odd segments (inside the stars)
|
|
||||||
for (let i = 1; i < parts.length; i += 2) {
|
|
||||||
// Ensure we have a closing pair on this line
|
|
||||||
if (i + 1 < parts.length) {
|
|
||||||
const text = parts[i];
|
|
||||||
if (text.length > 0 && (/^\s/.test(text) || /\s$/.test(text))) {
|
|
||||||
errors.push(`Broken bold syntax (leading/trailing space) in "**${text}**"`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (errors.length > 0) {
|
|
||||||
hasErrors = true;
|
|
||||||
errors.forEach(err => {
|
|
||||||
console.log(`${relativePath}:${lineNum} - ${err}`);
|
|
||||||
console.log(` Line: ${line.trim()}`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!hasErrors) {
|
|
||||||
console.log('✅ No formatting issues found.');
|
|
||||||
} else {
|
|
||||||
// console.log('\n❌ Issues found. Please review.');
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||