gitextract_e2k2ctcw/ ├── .devcontainer/ │ └── devcontainer.json ├── .dockerignore ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ └── wiki.yml │ ├── POST_TEMPLATE.md │ ├── README.md │ ├── assets/ │ │ └── nginx.conf │ └── workflows/ │ ├── deploy-api.yml │ └── deploy-gh-pages.yml ├── .gitignore ├── .gitpod.yml ├── .licenserc.json ├── .mise.toml ├── .npmrc ├── .prettierignore ├── .prettierrc.yaml ├── Dockerfile ├── api/ │ ├── README.md │ ├── middleware/ │ │ ├── cors.ts │ │ └── ratelimit.ts │ ├── routes/ │ │ ├── feedback.post.ts │ │ ├── index.ts │ │ └── single-page.ts │ ├── tsconfig.json │ └── worker-configuration.d.ts ├── docker-compose.yaml ├── docs/ │ ├── .vitepress/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.mts │ │ ├── constants.ts │ │ ├── fonts/ │ │ │ ├── Inter-Bold.otf │ │ │ ├── Inter-Medium.otf │ │ │ ├── Inter-Regular.otf │ │ │ └── Inter-SemiBold.otf │ │ ├── hooks/ │ │ │ ├── Template.vue │ │ │ ├── index.ts │ │ │ ├── meta.ts │ │ │ ├── opengraph.ts │ │ │ ├── rss.ts │ │ │ └── satoriConfig.ts │ │ ├── markdown/ │ │ │ ├── base64.ts │ │ │ ├── emoji.ts │ │ │ ├── headers.ts │ │ │ └── toggleStarred.ts │ │ ├── notes/ │ │ │ ├── 1337x-ranks.md │ │ │ ├── CodeRabbit.md │ │ │ ├── advanced-logic-calculators.md │ │ │ ├── affine-note.md │ │ │ ├── alt-twitch-player-extensions.md │ │ │ ├── alt-warp-clients.md │ │ │ ├── android-spotify-note.md │ │ │ ├── apkmirror-extensions.md │ │ │ ├── audiobookbay-warning.md │ │ │ ├── aurora-note.md │ │ │ ├── better-reasoning.md │ │ │ ├── bookmarkeddit.md │ │ │ ├── buster-note.md │ │ │ ├── buzzheavier-warning.md │ │ │ ├── bypass-freedlink.md │ │ │ ├── captcha-4pda.md │ │ │ ├── chatgpt-limits.md │ │ │ ├── clipboard2file-addons.md │ │ │ ├── cofi-note.md │ │ │ ├── crystaldiskinfo.md │ │ │ ├── csrin-search.md │ │ │ ├── cute-save-button-icon.md │ │ │ ├── dodi-warning.md │ │ │ ├── dolby-access-atmos-note.md │ │ │ ├── driver-note.md │ │ │ ├── eaglercraft-note.md │ │ │ ├── eruda.md │ │ │ ├── filebin-warning.md │ │ │ ├── filelu-warning.md │ │ │ ├── filezilla-warning.md │ │ │ ├── flicker-proxy.md │ │ │ ├── fluxy-repacks.md │ │ │ ├── forest-extensions.md │ │ │ ├── foxit-warning.md │ │ │ ├── freegogpcgames-note.md │ │ │ ├── gemai.md │ │ │ ├── general-tweak-warning.md │ │ │ ├── glitchwave-note.md │ │ │ ├── google-song-identification.md │ │ │ ├── google-translate-note.md │ │ │ ├── hdo-box-note.md │ │ │ ├── hugging-face-warning.md │ │ │ ├── instaeclipse-note.md │ │ │ ├── irc-highway-note.md │ │ │ ├── jdownloader-warning.md │ │ │ ├── limit-bypass-note.md │ │ │ ├── liteapk-modyolo-note.md │ │ │ ├── malware-removal-forums.md │ │ │ ├── megabasterd-note.md │ │ │ ├── mobilism-ranks.md │ │ │ ├── modelscope.md │ │ │ ├── mori-note.md │ │ │ ├── movie-web-sources.md │ │ │ ├── movieparadise-code.md │ │ │ ├── mp-opensubs.md │ │ │ ├── mvsep-note.md │ │ │ ├── oneclick-note.md │ │ │ ├── openasar.md │ │ │ ├── openrgb-beta.md │ │ │ ├── pollinations-limits.md │ │ │ ├── printeditwe-addons.md │ │ │ ├── proton-torrenting.md │ │ │ ├── reaper-note.md │ │ │ ├── redditfilter-note.md │ │ │ ├── rgshows-autoplay.md │ │ │ ├── sanet-warning.md │ │ │ ├── savepagewe.md │ │ │ ├── scrollanywhere-addons.md │ │ │ ├── sd-maid.md │ │ │ ├── sh-note.md │ │ │ ├── site-favicon-dl.md │ │ │ ├── soft98-note.md │ │ │ ├── sora.md │ │ │ ├── spacewar.md │ │ │ ├── spicetify-note.md │ │ │ ├── sport7.md │ │ │ ├── steam-controller-support.md │ │ │ ├── steam-currency-converter-note.md │ │ │ ├── tabiverse-extensions.md │ │ │ ├── tautulli-note.md │ │ │ ├── teamspeak-warning.md │ │ │ ├── thunderbird.md │ │ │ ├── tinyurl-note.md │ │ │ ├── video-downloadhelper.md │ │ │ ├── welib-note.md │ │ │ ├── winrar.md │ │ │ ├── yet-another-call-blocker-note.md │ │ │ ├── youtube-tweaks.md │ │ │ └── yts-yify-note.md │ │ ├── shared.ts │ │ ├── theme/ │ │ │ ├── Appearance.vue │ │ │ ├── Layout.vue │ │ │ ├── PostLayout.vue │ │ │ ├── Posts.vue │ │ │ ├── components/ │ │ │ │ ├── Announcement.vue │ │ │ │ ├── Authors.vue │ │ │ │ ├── Base64Dialog.vue │ │ │ │ ├── CardField.vue │ │ │ │ ├── ColorPicker.vue │ │ │ │ ├── Feedback.vue │ │ │ │ ├── InputField.vue │ │ │ │ ├── SidebarCard.vue │ │ │ │ ├── Switch.vue │ │ │ │ ├── ThemeDropdown.vue │ │ │ │ ├── ThemeSelector.vue │ │ │ │ ├── ToggleIndexes.vue │ │ │ │ ├── ToggleStarred.vue │ │ │ │ ├── Tooltip.vue │ │ │ │ ├── VPLocalSearchBox.vue │ │ │ │ ├── VPNav.vue │ │ │ │ ├── WallpaperCard.vue │ │ │ │ └── startpage/ │ │ │ │ ├── Bookmarks.vue │ │ │ │ ├── Clock.vue │ │ │ │ ├── SearchBar.vue │ │ │ │ └── Startpage.vue │ │ │ ├── composables/ │ │ │ │ └── nprogress.ts │ │ │ ├── index.ts │ │ │ ├── posts.data.ts │ │ │ ├── style.scss │ │ │ └── themes/ │ │ │ ├── README.md │ │ │ ├── configs/ │ │ │ │ ├── catppuccin.ts │ │ │ │ ├── christmas.ts │ │ │ │ ├── index.ts │ │ │ │ └── monochrome.ts │ │ │ ├── index.ts │ │ │ ├── themeHandler.ts │ │ │ └── types.ts │ │ ├── transformer/ │ │ │ ├── constants.ts │ │ │ └── core.ts │ │ ├── transformer.ts │ │ ├── types/ │ │ │ └── Feedback.ts │ │ ├── utils/ │ │ │ ├── markdown.ts │ │ │ └── tooltips.ts │ │ ├── utils.ts │ │ └── vue-shim.d.ts │ ├── ai.md │ ├── audio.md │ ├── beginners-guide.md │ ├── developer-tools.md │ ├── downloading.md │ ├── educational.md │ ├── feedback.md │ ├── file-tools.md │ ├── gaming-tools.md │ ├── gaming.md │ ├── image-tools.md │ ├── index.md │ ├── internet-tools.md │ ├── linux-macos.md │ ├── misc.md │ ├── mobile.md │ ├── non-english.md │ ├── other/ │ │ ├── FAQ.md │ │ ├── backups.md │ │ ├── contributing.md │ │ ├── selfhosting.md │ │ └── wallpapers.md │ ├── posts/ │ │ ├── FCC.md │ │ ├── Internet-Archive.md │ │ ├── KeepAndroidOpen.md │ │ ├── Nov-2025.md │ │ ├── WWH.md │ │ ├── april-2023.md │ │ ├── april-2024.md │ │ ├── april-2025.md │ │ ├── aug-2023.md │ │ ├── aug-2024.md │ │ ├── aug-2025.md │ │ ├── changelog-sites.md │ │ ├── dec-2023.md │ │ ├── dec-2024.md │ │ ├── dec-2025.md │ │ ├── discord.md │ │ ├── feb-2024.md │ │ ├── feb-2025.md │ │ ├── feb-2026.md │ │ ├── jan-2024.md │ │ ├── jan-2025.md │ │ ├── jan-2026.md │ │ ├── july-2023.md │ │ ├── july-2024.md │ │ ├── july-2025.md │ │ ├── jun-2023.md │ │ ├── june-2024.md │ │ ├── june-2025.md │ │ ├── mar-2025.md │ │ ├── mar-2026.md │ │ ├── march-2024.md │ │ ├── may-2023.md │ │ ├── may-2024.md │ │ ├── may-2025.md │ │ ├── new-site.md │ │ ├── nov-2023.md │ │ ├── nov-2024.md │ │ ├── oct-2023.md │ │ ├── oct-2024.md │ │ ├── oct-2025.md │ │ ├── search.md │ │ ├── sept-2023.md │ │ ├── sept-2024.md │ │ ├── sept-2025.md │ │ └── support-ia.md │ ├── posts.md │ ├── privacy.md │ ├── public/ │ │ ├── _headers │ │ ├── key.txt │ │ ├── manifest.json │ │ └── robots.txt │ ├── reading.md │ ├── sandbox.md │ ├── social-media-tools.md │ ├── startpage.md │ ├── storage.md │ ├── system-tools.md │ ├── text-tools.md │ ├── torrenting.md │ ├── unsafe.md │ ├── video-tools.md │ └── video.md ├── flake.nix ├── nitro.config.ts ├── package.json ├── pests-repellent/ │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierrc │ ├── .vscode/ │ │ └── settings.json │ ├── package.json │ ├── src/ │ │ └── index.ts │ ├── test/ │ │ ├── env.d.ts │ │ ├── index.spec.ts │ │ └── tsconfig.json │ ├── tsconfig.json │ ├── vitest.config.mts │ ├── worker-configuration.d.ts │ └── wrangler.jsonc ├── scripts/ │ ├── lint-markdown.js │ └── typos.csv ├── tsconfig.json ├── unocss.config.ts └── wrangler.toml