mirror of
https://github.com/fmhy/edit.git
synced 2026-01-12 23:11:06 +11:00
Merge branch 'fmhy:main' into main
This commit is contained in:
commit
6548233cc1
15 changed files with 104 additions and 26 deletions
|
|
@ -17,23 +17,27 @@
|
||||||
import type { MarkdownRenderer } from 'vitepress'
|
import type { MarkdownRenderer } from 'vitepress'
|
||||||
|
|
||||||
const excluded = ['Beginners Guide']
|
const excluded = ['Beginners Guide']
|
||||||
|
const starredMarkers = [':star:', ':glowing-star:', '⭐', '🌟']
|
||||||
|
const indexMarkers = ['🌐', ':globe_with_meridians:', ':globe-with-meridians:']
|
||||||
|
|
||||||
export function toggleStarredPlugin(md: MarkdownRenderer) {
|
export function toggleStarredPlugin(md: MarkdownRenderer) {
|
||||||
md.renderer.rules.list_item_open = (tokens, index, options, env, self) => {
|
md.renderer.rules.list_item_open = (tokens, index, options, env, self) => {
|
||||||
const contentToken = tokens[index + 2]
|
const contentToken = tokens[index + 2]
|
||||||
|
|
||||||
// Ensure the token exists
|
if (!contentToken) return self.renderToken(tokens, index, options)
|
||||||
if (contentToken) {
|
|
||||||
const content = contentToken.content
|
const content = contentToken.content
|
||||||
|
const isStarred =
|
||||||
if (
|
|
||||||
!excluded.includes(env.frontmatter.title) &&
|
!excluded.includes(env.frontmatter.title) &&
|
||||||
(content.includes(':star:') || content.includes(':glowing-star:'))
|
starredMarkers.some((marker) => content.includes(marker))
|
||||||
) {
|
const isIndex = indexMarkers.some((marker) => content.includes(marker))
|
||||||
return `<li class="starred">`
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return self.renderToken(tokens, index, options)
|
if (!isStarred && !isIndex) return self.renderToken(tokens, index, options)
|
||||||
|
|
||||||
|
const classes = []
|
||||||
|
if (isStarred) classes.push('starred')
|
||||||
|
if (isIndex) classes.push('index')
|
||||||
|
|
||||||
|
return `<li class="${classes.join(' ')}">`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ import ColorPicker from './ColorPicker.vue'
|
||||||
import ThemeSelector from './ThemeSelector.vue'
|
import ThemeSelector from './ThemeSelector.vue'
|
||||||
import InputField from './InputField.vue'
|
import InputField from './InputField.vue'
|
||||||
import ToggleStarred from './ToggleStarred.vue'
|
import ToggleStarred from './ToggleStarred.vue'
|
||||||
|
import ToggleIndexes from './ToggleIndexes.vue'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
@ -26,6 +27,11 @@ import ToggleStarred from './ToggleStarred.vue'
|
||||||
<ToggleStarred />
|
<ToggleStarred />
|
||||||
</template>
|
</template>
|
||||||
</InputField>
|
</InputField>
|
||||||
|
<InputField id="toggle-indexes" label="Toggle Indexes">
|
||||||
|
<template #display>
|
||||||
|
<ToggleIndexes />
|
||||||
|
</template>
|
||||||
|
</InputField>
|
||||||
|
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
<ColorPicker />
|
<ColorPicker />
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,13 @@ const enabled = ref(false)
|
||||||
.switch.enabled {
|
.switch.enabled {
|
||||||
background-color: var(--vp-c-brand);
|
background-color: var(--vp-c-brand);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.switch.disabled {
|
||||||
|
opacity: 0.5;
|
||||||
|
pointer-events: none;
|
||||||
|
background-color: var(--vp-c-bg-soft);
|
||||||
|
border-color: var(--vp-c-divider);
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
|
||||||
23
docs/.vitepress/theme/components/ToggleIndexes.vue
Normal file
23
docs/.vitepress/theme/components/ToggleIndexes.vue
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import Switch from './Switch.vue'
|
||||||
|
|
||||||
|
const toggleIndexes = () => {
|
||||||
|
const root = document.documentElement
|
||||||
|
const enabling = !root.classList.contains('indexes-only')
|
||||||
|
root.classList.toggle('indexes-only')
|
||||||
|
|
||||||
|
if (enabling && root.classList.contains('starred-only')) {
|
||||||
|
root.classList.remove('starred-only')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Switch @click="toggleIndexes()" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.indexes-only li:not(.index) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
@ -1,12 +1,46 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { onBeforeUnmount, onMounted, ref } from 'vue'
|
||||||
import Switch from './Switch.vue'
|
import Switch from './Switch.vue'
|
||||||
|
|
||||||
const toggleStarred = () =>
|
const isDisabled = ref(false)
|
||||||
|
const switchKey = ref(0)
|
||||||
|
|
||||||
|
const syncDisabled = () => {
|
||||||
|
const root = document.documentElement
|
||||||
|
const disabled = root.classList.contains('indexes-only')
|
||||||
|
isDisabled.value = disabled
|
||||||
|
|
||||||
|
if (disabled && root.classList.contains('starred-only')) {
|
||||||
|
root.classList.remove('starred-only')
|
||||||
|
switchKey.value += 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let observer: MutationObserver | undefined
|
||||||
|
|
||||||
|
onMounted(() =>
|
||||||
|
(observer = new MutationObserver(syncDisabled)).observe(document.documentElement, {
|
||||||
|
attributes: true,
|
||||||
|
attributeFilter: ['class']
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
onMounted(syncDisabled)
|
||||||
|
|
||||||
|
onBeforeUnmount(() => observer?.disconnect())
|
||||||
|
|
||||||
|
const toggleStarred = () => {
|
||||||
|
if (isDisabled.value) return
|
||||||
document.documentElement.classList.toggle('starred-only')
|
document.documentElement.classList.toggle('starred-only')
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Switch @click="toggleStarred()" />
|
<Switch
|
||||||
|
:key="switchKey"
|
||||||
|
:class="{ disabled: isDisabled }"
|
||||||
|
@click="toggleStarred()"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
|
||||||
|
|
@ -1219,6 +1219,7 @@
|
||||||
|
|
||||||
* 🌐 **[Reverse Engineering Resources](https://github.com/wtsxDev/reverse-engineering)** or [ReversingBits](https://mohitmishra786.github.io/reversingBits/) / [GitHub](https://github.com/mohitmishra786/reversingBits) - Reverse Engineering Resources
|
* 🌐 **[Reverse Engineering Resources](https://github.com/wtsxDev/reverse-engineering)** or [ReversingBits](https://mohitmishra786.github.io/reversingBits/) / [GitHub](https://github.com/mohitmishra786/reversingBits) - Reverse Engineering Resources
|
||||||
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
|
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
|
||||||
|
* ⭐ **[IDA Pro](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/)** (search) - Software Disassembler / Decompiler
|
||||||
* ⭐ **[GHIDRA](https://github.com/NationalSecurityAgency/ghidra)** - Reverse Engineering Framework
|
* ⭐ **[GHIDRA](https://github.com/NationalSecurityAgency/ghidra)** - Reverse Engineering Framework
|
||||||
* ⭐ **[x64dbg](https://x64dbg.com/)** - Debugger for Reverse Engineering
|
* ⭐ **[x64dbg](https://x64dbg.com/)** - Debugger for Reverse Engineering
|
||||||
* [LemmeDebug](https://greasyfork.org/en/scripts/537775) - Disable Anti-Devtools for Reverse Engineering / Debugging
|
* [LemmeDebug](https://greasyfork.org/en/scripts/537775) - Disable Anti-Devtools for Reverse Engineering / Debugging
|
||||||
|
|
|
||||||
|
|
@ -1025,7 +1025,7 @@
|
||||||
* [EggHead](https://egghead.io/) - Programming Courses
|
* [EggHead](https://egghead.io/) - Programming Courses
|
||||||
* [TechSchool](https://techschool.dev/en) - Programming Courses / [Discord](https://discord.com/invite/C4abRX5skH)
|
* [TechSchool](https://techschool.dev/en) - Programming Courses / [Discord](https://discord.com/invite/C4abRX5skH)
|
||||||
* [Josh Comeau](https://www.joshwcomeau.com/) - Programming Tutorials
|
* [Josh Comeau](https://www.joshwcomeau.com/) - Programming Tutorials
|
||||||
* [Scratch](https://scratch.mit.edu/) / [Javascript Converter](https://turbowarp.org/), [2](https://github.com/TurboWarp/) or [MIT App Inventor](https://appinventor.mit.edu/) - Beginner Programming Learning
|
* [Scratch](https://scratch.mit.edu/ / [Extra Features](https://scratchaddons.com/) / [GitHub](http://github.com/ScratchAddons/ScratchAddons) / [Javascript Converter](https://turbowarp.org/), [2](https://github.com/TurboWarp/) or [MIT App Inventor](https://appinventor.mit.edu/) - Beginner Programming Learning
|
||||||
* [USACO Guide](https://usaco.guide/) - Competitive Programming Lessons
|
* [USACO Guide](https://usaco.guide/) - Competitive Programming Lessons
|
||||||
* [Beej's Guides](https://www.beej.us/guide/) or [LearnByExample](https://learnbyexample.github.io/) - Programming Guides
|
* [Beej's Guides](https://www.beej.us/guide/) or [LearnByExample](https://learnbyexample.github.io/) - Programming Guides
|
||||||
* [CodinGame](https://www.codingame.com/) - Games to Practice Coding / Programming
|
* [CodinGame](https://www.codingame.com/) - Games to Practice Coding / Programming
|
||||||
|
|
@ -1242,7 +1242,7 @@
|
||||||
## ▷ Cybersecurity
|
## ▷ Cybersecurity
|
||||||
|
|
||||||
* 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources
|
* 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources
|
||||||
* 🌐 **[Cybersecurity YouTube Channels](https://github.com/superlincoln953/Free-Official-Youtube-Content?tab=readme-ov-file#tech--security)**
|
* 🌐 **[Official Cybersecurity YouTube Channels](https://github.com/superlincoln953/Free-Official-Youtube-Content?tab=readme-ov-file#tech--security)**
|
||||||
* 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [CTF101](https://ctf101.org/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/), [CTFtime](https://ctftime.org/) or [CTFLearn](https://ctflearn.com/) - CTF Resources / Guides
|
* 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [CTF101](https://ctf101.org/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/), [CTFtime](https://ctftime.org/) or [CTFLearn](https://ctflearn.com/) - CTF Resources / Guides
|
||||||
* 🌐 **[Awesome Sites to Test On](https://github.com/BMayhew/awesome-sites-to-test-on)** - Cybersecurity Practice Sites
|
* 🌐 **[Awesome Sites to Test On](https://github.com/BMayhew/awesome-sites-to-test-on)** - Cybersecurity Practice Sites
|
||||||
* ⭐ **[HackTricks](https://book.hacktricks.wiki/)** - Practical Penetration Testing & Security Auditing Tips
|
* ⭐ **[HackTricks](https://book.hacktricks.wiki/)** - Practical Penetration Testing & Security Auditing Tips
|
||||||
|
|
@ -1475,7 +1475,7 @@
|
||||||
* [PrideFlags](https://www.prideflags.org/) - LGBT Flag Index
|
* [PrideFlags](https://www.prideflags.org/) - LGBT Flag Index
|
||||||
* [TheDevilsDictionary](https://www.thedevilsdictionary.com/) - Cynical Dictionary
|
* [TheDevilsDictionary](https://www.thedevilsdictionary.com/) - Cynical Dictionary
|
||||||
* [WordSafety](http://wordsafety.com/) - Swear Word Indexes
|
* [WordSafety](http://wordsafety.com/) - Swear Word Indexes
|
||||||
* [PyGlossary](https://github.com/ilius/pyglossary) - Convert Dictionary Files
|
* [PyGlossary](https://github.com/ilius/pyglossary) or [DSL Converter](https://dictz.github.io/dsl_converter.html) - Convert Dictionary Files
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@
|
||||||
* [Lets Play Index](https://www.letsplayindex.com/) - Index of Lets Plays / Longplays
|
* [Lets Play Index](https://www.letsplayindex.com/) - Index of Lets Plays / Longplays
|
||||||
* [TASVideos](https://tasvideos.org/) - TAS Video Community / Resources / [Emulator Resources](https://tasvideos.org/EmulatorResources) / [Game Resources](https://tasvideos.org/GameResources)
|
* [TASVideos](https://tasvideos.org/) - TAS Video Community / Resources / [Emulator Resources](https://tasvideos.org/EmulatorResources) / [Game Resources](https://tasvideos.org/GameResources)
|
||||||
* [VGHF Digital Archive](https://library.gamehistory.org/) - Historical Documents, Magazines, Transcripts, etc. / [Archive](http://archive.gamehistory.org/)
|
* [VGHF Digital Archive](https://library.gamehistory.org/) - Historical Documents, Magazines, Transcripts, etc. / [Archive](http://archive.gamehistory.org/)
|
||||||
|
* [FRAMED](https://framedsc.com/index.htm) - In-Game Screenshotting Tips
|
||||||
* [NIWA](https://www.niwanetwork.org/) - Nintendo Independent Wiki Alliance / [Discord](https://discord.gg/59Mq6qB)
|
* [NIWA](https://www.niwanetwork.org/) - Nintendo Independent Wiki Alliance / [Discord](https://discord.gg/59Mq6qB)
|
||||||
* [Gog To Free](https://greasyfork.org/en/scripts/481134) - Add Piracy Site Links to GOG Store
|
* [Gog To Free](https://greasyfork.org/en/scripts/481134) - Add Piracy Site Links to GOG Store
|
||||||
* [The Models Resource](https://models.spriters-resource.com/) - Game Models
|
* [The Models Resource](https://models.spriters-resource.com/) - Game Models
|
||||||
|
|
@ -659,13 +660,14 @@
|
||||||
* 🌐 **[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
|
||||||
|
* [Forge](https://files.minecraftforge.net/), [NeoForged](https://neoforged.net/) / [Discord](https://discord.com/invite/UuM6bmAjXh), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Mod Loaders
|
||||||
|
* [ViaFabricPlus](https://github.com/ViaVersion/ViaFabricPlus) - Fabric Mod for Joining All Versions
|
||||||
* [WorldEdit](https://enginehub.org/worldedit) or [Axiom](https://modrinth.com/mod/axiom) - Building Tools
|
* [WorldEdit](https://enginehub.org/worldedit) or [Axiom](https://modrinth.com/mod/axiom) - Building Tools
|
||||||
* Worldedit Tools - [Docs](https://worldedit.enginehub.org/en/latest/) / [CUI](https://modrinth.com/mod/worldedit-cui) / [Discord](https://discord.gg/enginehub) / [GitHub](https://github.com/EngineHub/WorldEdit)
|
* Worldedit Tools - [Docs](https://worldedit.enginehub.org/en/latest/) / [CUI](https://modrinth.com/mod/worldedit-cui) / [Discord](https://discord.gg/enginehub) / [GitHub](https://github.com/EngineHub/WorldEdit)
|
||||||
* [quark](https://quarkmod.net/) - Add Vanilla-like / QoL Features
|
* [quark](https://quarkmod.net/) - Add Vanilla-like / QoL Features
|
||||||
* [Voxy](https://modrinth.com/mod/voxy), [DistantHorizons](https://modrinth.com/mod/distanthorizons) or [Bobby](https://modrinth.com/mod/bobby) - Lightweight Distance Rendering Mods
|
* [Voxy](https://modrinth.com/mod/voxy), [DistantHorizons](https://modrinth.com/mod/distanthorizons) or [Bobby](https://modrinth.com/mod/bobby) - Lightweight Distance Rendering Mods
|
||||||
* [Nvidium](https://modrinth.com/mod/nvidium) - Nvidia OpenGL Rendering Mod
|
* [Nvidium](https://modrinth.com/mod/nvidium) - Nvidia OpenGL Rendering Mod
|
||||||
* [VulkanMod](https://modrinth.com/mod/vulkanmod) - Vulkan Rendering Mod / [Discord](https://discord.gg/FVXg7AYR2Q)
|
* [VulkanMod](https://modrinth.com/mod/vulkanmod) - Vulkan Rendering Mod / [Discord](https://discord.gg/FVXg7AYR2Q)
|
||||||
* [Forge](https://files.minecraftforge.net/), [NeoForged](https://neoforged.net/) / [Discord](https://discord.com/invite/UuM6bmAjXh), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Mod Loaders
|
|
||||||
* [PAX](https://github.com/maradotwebp/pax), [ModMenu](https://modrinth.com/mod/modmenu) (fabric) or [Mod Manager](https://github.com/kaniol-lck/modmanager) - Minecraft Mod Managers
|
* [PAX](https://github.com/maradotwebp/pax), [ModMenu](https://modrinth.com/mod/modmenu) (fabric) or [Mod Manager](https://github.com/kaniol-lck/modmanager) - Minecraft Mod Managers
|
||||||
* [Forgix](https://github.com/PacifistMC/Forgix) - Merge Mod Loaders
|
* [Forgix](https://github.com/PacifistMC/Forgix) - Merge Mod Loaders
|
||||||
* [r/feedthebeast](https://reddit.com/r/feedthebeast/) - MC Modding Community
|
* [r/feedthebeast](https://reddit.com/r/feedthebeast/) - MC Modding Community
|
||||||
|
|
@ -758,7 +760,7 @@
|
||||||
# ► Game Specific
|
# ► Game Specific
|
||||||
|
|
||||||
* 🌐 **[Awesome Trackmania](https://github.com/EvoEsports/awesome-trackmania)** - Trackmania Resources
|
* 🌐 **[Awesome Trackmania](https://github.com/EvoEsports/awesome-trackmania)** - Trackmania Resources
|
||||||
* 🌐 **[ACNH.Directory](https://acnh.directory/)** - Animal Crossing: New Horizons Resources
|
* 🌐 **[ACNH.Directory](https://acnh.directory/)** or **[NookNet](https://nooknet.net/)** / [Discord](https://discord.com/invite/RwNrqmH) - Animal Crossing: New Horizons Resources / Guides
|
||||||
* 🌐 **[osu! Game Rsources](https://resources.osucord.moe/)** / [GitHub](https://github.com/osucord/resources) or **[Useful Osu](https://github.com/CarbonUwU/Useful-osu)** - Osu! Resources
|
* 🌐 **[osu! Game Rsources](https://resources.osucord.moe/)** / [GitHub](https://github.com/osucord/resources) or **[Useful Osu](https://github.com/CarbonUwU/Useful-osu)** - Osu! Resources
|
||||||
* 🌐 **[FM Scout](https://www.fmscout.com/)** - Football Manager Resources / Community
|
* 🌐 **[FM Scout](https://www.fmscout.com/)** - Football Manager Resources / Community
|
||||||
* ⭐ **[Tactics.tools](https://tactics.tools/)** / [Discord](https://discord.com/invite/K4Z6shucH8) or [MetaTFT](https://www.metatft.com/) / [Discord](https://discord.com/invite/RqN3qPy) - Team Fight Tactic Guides, Stats, Tools, etc.
|
* ⭐ **[Tactics.tools](https://tactics.tools/)** / [Discord](https://discord.com/invite/K4Z6shucH8) or [MetaTFT](https://www.metatft.com/) / [Discord](https://discord.com/invite/RqN3qPy) - Team Fight Tactic Guides, Stats, Tools, etc.
|
||||||
|
|
|
||||||
|
|
@ -689,6 +689,7 @@
|
||||||
|
|
||||||
* [PixelHunter](https://pixelhunter.io/) - Resize Images for Different Sites
|
* [PixelHunter](https://pixelhunter.io/) - Resize Images for Different Sites
|
||||||
* [Resize App Icon](https://resizeappicon.com/) - Resize Square Images
|
* [Resize App Icon](https://resizeappicon.com/) - Resize Square Images
|
||||||
|
* [Pro Image Tool](https://proimagetool.com/)
|
||||||
* [Simple Image Resizer](https://www.simpleimageresizer.com/)
|
* [Simple Image Resizer](https://www.simpleimageresizer.com/)
|
||||||
* [ImageResizer](https://imageresizer.com/)
|
* [ImageResizer](https://imageresizer.com/)
|
||||||
* [PicResize](https://picresize.com/)
|
* [PicResize](https://picresize.com/)
|
||||||
|
|
|
||||||
|
|
@ -164,7 +164,6 @@
|
||||||
## ▷ RSS Feed Generators
|
## ▷ RSS Feed Generators
|
||||||
|
|
||||||
* ⭐ **[RSS Bridge](https://rss-bridge.org/bridge01/)** / [GitHub](https://github.com/RSS-Bridge/rss-bridge)
|
* ⭐ **[RSS Bridge](https://rss-bridge.org/bridge01/)** / [GitHub](https://github.com/RSS-Bridge/rss-bridge)
|
||||||
* ⭐ **[Feedless](https://feedless.org/)** / [GitHub](https://github.com/damoeb/feedless)
|
|
||||||
* [MoRSS](https://morss.it/)
|
* [MoRSS](https://morss.it/)
|
||||||
* [RSSHub](https://github.com/DIYgod/RSSHub)
|
* [RSSHub](https://github.com/DIYgod/RSSHub)
|
||||||
* [Open RSS](https://openrss.org/)
|
* [Open RSS](https://openrss.org/)
|
||||||
|
|
|
||||||
|
|
@ -1075,6 +1075,7 @@
|
||||||
* [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) 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
|
||||||
* [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
|
||||||
* [KeyPad](https://apps.apple.com/app/id1491684442) - Connect Mac Keyboard to Mobile Devices
|
* [KeyPad](https://apps.apple.com/app/id1491684442) - Connect Mac Keyboard to Mobile Devices
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
* [Chuu](https://github.com/ishwi/Chuu) - Last.fm Discord Bot
|
* [Chuu](https://github.com/ishwi/Chuu) - Last.fm Discord Bot
|
||||||
* [Craig](https://craig.chat/) - Voice Channel Recorder Bot / [Backup](https://craig.chat/giarc/)
|
* [Craig](https://craig.chat/) - Voice Channel Recorder Bot / [Backup](https://craig.chat/giarc/)
|
||||||
* [MonitoRSS](https://monitorss.xyz/) or [ReadyBot](https://readybot.io/) - RSS Discord Bots
|
* [MonitoRSS](https://monitorss.xyz/) or [ReadyBot](https://readybot.io/) - RSS Discord Bots
|
||||||
* [Discord Music Bot](https://github.com/SudhanPlayz/Discord-MusicBot), [Music-bot](https://github.com/ZerioDev/Music-bot) / [Discord](https://discord.gg/Kqdn8CHacP), [Chip](https://chipbot.gg/) or [MusicBot](https://github.com/jagrosh/MusicBot) - Music Bots
|
* [Discord Music Bot](https://github.com/SudhanPlayz/Discord-MusicBot), [Music-bot](https://github.com/ZerioDev/Music-bot) / [Discord](https://discord.gg/Kqdn8CHacP) or [MusicBot](https://github.com/jagrosh/MusicBot) - Music Bots
|
||||||
* [Steambase Bot](https://steambase.io/tools/steam-discord-bot) - Steam Insights Bot
|
* [Steambase Bot](https://steambase.io/tools/steam-discord-bot) - Steam Insights Bot
|
||||||
* [Red Discordbot](https://github.com/Cog-Creators/Red-DiscordBot), [Discord-Bot](https://github.com/CorwinDev/Discord-Bot) or [Loritta](https://github.com/LorittaBot/Loritta) - Self-Hostable Discord Moderation Bots
|
* [Red Discordbot](https://github.com/Cog-Creators/Red-DiscordBot), [Discord-Bot](https://github.com/CorwinDev/Discord-Bot) or [Loritta](https://github.com/LorittaBot/Loritta) - Self-Hostable Discord Moderation Bots
|
||||||
* [Wickbot](https://wickbot.com/) - Discord Security Bot
|
* [Wickbot](https://wickbot.com/) - Discord Security Bot
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
* ⭐ **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)
|
* ⭐ **RuTracker Tools** - [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||||
* ⭐ **[m0nkrus](https://rentry.co/FMHYB64#m0nkrus)** - Adobe / Autodesk Software
|
* ⭐ **[m0nkrus](https://rentry.co/FMHYB64#m0nkrus)** - Adobe / Autodesk Software
|
||||||
* ⭐ **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)
|
* ⭐ **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/)
|
* [1337x](https://1337x.to/home/), [2](https://x1337x.cc/) - Video / Audio / NSFW / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#1337x-ranks) / [Mirrors](https://1337x-status.org/) / [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/)
|
||||||
* 1337x Tools - [Telegram Bot](https://t.me/search_content_bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Display Magnets](https://greasyfork.org/en/scripts/373230) / [Timestamp Fix](https://greasyfork.org/en/scripts/421635)
|
* 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
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@
|
||||||
* [Hexupload](https://hexload.com/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
* [Hexupload](https://hexload.com/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
||||||
* [Vidoza](https://vidoza.net/) - 15GB / 15 Days / Sign-Up Required
|
* [Vidoza](https://vidoza.net/) - 15GB / 15 Days / Sign-Up Required
|
||||||
* [Vidmoly](https://vidmoly.me/) - 15TB / 1 Year
|
* [Vidmoly](https://vidmoly.me/) - 15TB / 1 Year
|
||||||
|
* [NetU](https://netu.tv/) - 7.5GB / 90 Days (after last view)
|
||||||
* [Streamplay](https://streamplay.to/) - 30TB / 20GB
|
* [Streamplay](https://streamplay.to/) - 30TB / 20GB
|
||||||
* [Luluvdoo](https://luluvdoo.com/) - 15GB / 60 Days Since Last Download
|
* [Luluvdoo](https://luluvdoo.com/) - 15GB / 60 Days Since Last Download
|
||||||
* [Streamtape](https://streamtape.com/) - 15GB / Sign-Up Required / [.to](https://streamtape.to/)
|
* [Streamtape](https://streamtape.com/) - 15GB / Sign-Up Required / [.to](https://streamtape.to/)
|
||||||
|
|
@ -148,7 +149,7 @@
|
||||||
* [VDO Ninja](https://vdo.ninja/) - Live Stream Colab Tool
|
* [VDO Ninja](https://vdo.ninja/) - Live Stream Colab Tool
|
||||||
* [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) - Live Stream Recorders / Windows, Mac, Linux
|
* [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) - Live Stream Recorders / Windows, Mac, Linux
|
||||||
* [NVIDIA Broadcast](https://www.nvidia.com/en-us/geforce/broadcasting/broadcast-app/) - Stream Audio / Video Enhancer / Windows
|
* [NVIDIA Broadcast](https://www.nvidia.com/en-us/geforce/broadcasting/broadcast-app/) - Stream Audio / Video Enhancer / Windows
|
||||||
* [Owncast](https://owncast.online/) / [GitHub](https://github.com/owncast/owncast) or [Restreamer](https://github.com/datarhei/restreamer) - Self-Hosted Live Streaming
|
* [Owncast](https://owncast.online/) / [GitHub](https://github.com/owncast/owncast), [OwnCast](https://owncast.online/) / [GitHub](https://github.com/owncast/owncast) or [Restreamer](https://github.com/datarhei/restreamer) - Self-Hosted Live Streaming
|
||||||
* [WDFlat](https://www.wdflat.com/) - Stream Elements
|
* [WDFlat](https://www.wdflat.com/) - Stream Elements
|
||||||
* [Strem](https://github.com/strem-app/strem) - Stream Automation
|
* [Strem](https://github.com/strem-app/strem) - Stream Automation
|
||||||
* [ppInk](https://github.com/PubPub-zz/ppInk/), [AnnotateWeb](https://annotateweb.com/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation
|
* [ppInk](https://github.com/PubPub-zz/ppInk/), [AnnotateWeb](https://annotateweb.com/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation
|
||||||
|
|
@ -269,7 +270,7 @@
|
||||||
|
|
||||||
* ↪️ **[Torrent Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps)**
|
* ↪️ **[Torrent Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps)**
|
||||||
* ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server / [Matrix](https://matrix.to/#/#jellyfinorg:matrix.org) / [Discord](https://discord.gg/zHBxVSXdBV) / [GitHub](https://github.com/jellyfin/jellyfin)
|
* ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server / [Matrix](https://matrix.to/#/#jellyfinorg:matrix.org) / [Discord](https://discord.gg/zHBxVSXdBV) / [GitHub](https://github.com/jellyfin/jellyfin)
|
||||||
* ⭐ **[Kodi](https://kodi.tv/)** - Media Server
|
* ⭐ **[Kodi](https://kodi.tv/)** or [Xbox Kodi](https://apps.microsoft.com/detail/9nblggh4t892) - Media Server
|
||||||
* [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides
|
* [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides
|
||||||
* [Self-Hosted Anime](https://github.com/shyonae/selfhosted-anime/wiki) - Anime Server Setup Guides
|
* [Self-Hosted Anime](https://github.com/shyonae/selfhosted-anime/wiki) - Anime Server Setup Guides
|
||||||
* [Prowlarr](https://prowlarr.com/) / [GitHub](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
|
* [Prowlarr](https://prowlarr.com/) / [GitHub](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@
|
||||||
* [BFLIX](https://bflix.sh/) - Movies / TV
|
* [BFLIX](https://bflix.sh/) - Movies / TV
|
||||||
* [MovieHD](https://moviehd.us) - Movies / [Telegram](https://t.me/+NthvAOpP0oNkMWU1)
|
* [MovieHD](https://moviehd.us) - Movies / [Telegram](https://t.me/+NthvAOpP0oNkMWU1)
|
||||||
* [StreamM4u](https://streamm4u.com.co/), [2](https://m4uhd.page/) - Movies / TV / Anime / [Clones](https://rentry.co/sflix#streamm4u-clones)
|
* [StreamM4u](https://streamm4u.com.co/), [2](https://m4uhd.page/) - Movies / TV / Anime / [Clones](https://rentry.co/sflix#streamm4u-clones)
|
||||||
* [StreamDB](https://streamdb.space/) - Movies / TV / 3rd Party Hosts / [Telegram](https://t.me/streamdb_online)
|
|
||||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
||||||
* [PrimeWire](https://www.primewire.mov/), [2](https://www.primewire.tf/) - Movies / TV / Anime / Mostly 3rd Party Hosts
|
* [PrimeWire](https://www.primewire.mov/), [2](https://www.primewire.tf/) - Movies / TV / Anime / Mostly 3rd Party Hosts
|
||||||
* [Cineb](https://cineb.world/) - Movies / TV / Anime / Mostly 3rd Party Hosts
|
* [Cineb](https://cineb.world/) - Movies / TV / Anime / Mostly 3rd Party Hosts
|
||||||
|
|
@ -79,7 +78,7 @@
|
||||||
* ⭐ **[CinemaOS](https://cinemaos.live/)**, [2](https://cinemaos.tech/), [3](https://cinemaos.me/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/38yFnFCJnA)
|
* ⭐ **[CinemaOS](https://cinemaos.live/)**, [2](https://cinemaos.tech/), [3](https://cinemaos.me/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/38yFnFCJnA)
|
||||||
* ⭐ **[FlyX](https://tv.vynx.cc/)** - Movies / TV / Anime / [Discord](https://discord.vynx.cc/) / [GitHub](https://github.com/Vynx-Velvet/Flyx-main)
|
* ⭐ **[FlyX](https://tv.vynx.cc/)** - Movies / TV / Anime / [Discord](https://discord.vynx.cc/) / [GitHub](https://github.com/Vynx-Velvet/Flyx-main)
|
||||||
* ⭐ **[Poprink](https://popr.ink/)** - Movies / TV / Anime / [Telegram](https://t.me/vlopstreaming) / [Discord](https://discord.gg/GzXQWKUbjh)
|
* ⭐ **[Poprink](https://popr.ink/)** - Movies / TV / Anime / [Telegram](https://t.me/vlopstreaming) / [Discord](https://discord.gg/GzXQWKUbjh)
|
||||||
* [HydraHD](https://hydrahd.com/), [2](https://hydrahd.ru/) - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
* [HydraHD](https://hydrahd.com/), [2](https://hydrahd.ru/) - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/) / [Telegram](https://t.me/HDHYDRAHD)
|
||||||
* [Primeshows](https://www.primeshows.uk/) or [Netflex](https://netflex.uk/) - Movies / TV / Anime / [Discord](https://discord.com/invite/t2PnzRgKeM)
|
* [Primeshows](https://www.primeshows.uk/) or [Netflex](https://netflex.uk/) - Movies / TV / Anime / [Discord](https://discord.com/invite/t2PnzRgKeM)
|
||||||
* [LordFlix](https://lordflix.club/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/JeMDzxSbhH)
|
* [LordFlix](https://lordflix.club/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/JeMDzxSbhH)
|
||||||
* [VoidFlix](https://voidflix.pages.dev/) or [Flixzy](https://flixzy.pages.dev/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/GDfP8S243T)
|
* [VoidFlix](https://voidflix.pages.dev/) or [Flixzy](https://flixzy.pages.dev/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/GDfP8S243T)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue