diff --git a/.cache/mastodon.json b/.cache/mastodon.json deleted file mode 100644 index 768bb3e..0000000 --- a/.cache/mastodon.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "lastFetched": "2026-07-05T22:01:02.267Z", - "posts": [ - { - "date": "2026-07-03T01:51:37.604Z", - "id": "116853538658966225", - "content": "

So about the #digitalcircus finale.

They made me cry tears I've been holding for long. The way this EP dealed with supressed emotions and coping with the pain of what's unchangeable, unfixable; communicated deeply with me. It's funny I cried laughing in realization of how warm and clever this goodbye was.

It's the best bittersweet ending I could ever wish for the show.

OH GOD the part they tell Jax is doing okay. You can't hit my heart harder than that 😭😭😭

", - "source_url": "https://mstdn.social/@tenkuma/116853538658966225", - "site": "Mastodon", - "media": [], - "emojis": [] - }, - { - "date": "2026-07-01T22:04:13.252Z", - "id": "116846982152346064", - "content": "

if I wanted shit there's a shit generator at chat.openai.com

", - "source_url": "https://mstdn.social/@tenkuma/116846982152346064", - "site": "Mastodon", - "media": [], - "emojis": [] - }, - { - "date": "2025-07-08T21:40:54.760Z", - "id": "114819783377460165", - "content": "

I love how ya'll humans give grades for vulnerabilities

@cR0w https://infosec.exchange/@cR0w/114819777669875206

", - "source_url": "https://mstdn.social/@tenkuma/114819783377460165", - "site": "Mastodon", - "media": [], - "emojis": [] - }, - { - "date": "2025-07-07T22:42:45.377Z", - "id": "114814364246016516", - "content": "

Another level of nostalgia playing Roblox on Linux with Sober! Plus wearing that Linux t-shirt just feels right. Good times...

#RobloxSober

", - "source_url": "https://mstdn.social/@tenkuma/114814364246016516", - "site": "Mastodon", - "media": [ - { - "image": "https://media.mstdn.social/media_attachments/files/114/814/350/913/893/408/original/a0c9e5a52e282587.png", - "alt": null, - "width": 640, - "height": 360, - "aspect": 1.7777777777777777 - } - ], - "emojis": [] - }, - { - "date": "2025-07-01T09:12:57.603Z", - "id": "114777206135368914", - "content": "

Meet Pete the cat :baba_baba:

He is as sleepy as I am.

", - "source_url": "https://mstdn.social/@tenkuma/114777206135368914", - "site": "Mastodon", - "media": [ - { - "image": "https://media.mstdn.social/media_attachments/files/114/777/200/647/969/908/original/203ba60ae84a96cb.jpg", - "alt": "Black and white cat lying in a sofa.", - "width": 554, - "height": 415, - "aspect": 1.3349397590361445 - } - ], - "emojis": [ - { - "shortcode": "baba_baba", - "url": "https://media.mstdn.social/custom_emojis/images/000/641/966/static/8d71b7179d1a7445.png" - } - ] - }, - { - "date": "2025-06-29T03:15:31.767Z", - "id": "114764476040214757", - "content": "

@cR0w this guy bio is just impeccable.

", - "source_url": "https://mstdn.social/@tenkuma/114764476040214757", - "site": "Mastodon", - "media": [], - "emojis": [] - }, - { - "date": "2025-06-10T21:32:12.812Z", - "id": "114661204480015822", - "content": "

Hello, world.

", - "source_url": "https://mstdn.social/@tenkuma/114661204480015822", - "site": "Mastodon", - "media": [], - "emojis": [] - } - ] -} \ No newline at end of file diff --git a/.eleventy.js b/.eleventy.js deleted file mode 100644 index e272860..0000000 --- a/.eleventy.js +++ /dev/null @@ -1,171 +0,0 @@ -import fs from "fs"; -import path from "path"; - -import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight"; -import safeLinks from "@sardine/eleventy-plugin-external-links"; -import pluginGitCommitDate from "eleventy-plugin-git-commit-date"; -import recentChanges from "eleventy-plugin-recent-changes"; -// import Webmentions from "eleventy-plugin-webmentions"; // configure later -import pluginInlineLinkFavicon from "eleventy-plugin-inline-link-favicon"; -import poison from "eleventy-plugin-poison"; -import mastoarchive from "eleventy-plugin-mastoarchive"; -// import purgeCssPlugin from "eleventy-plugin-purgecss"; -import pluginCleanUrls from "@inframanufaktur/eleventy-plugin-clean-urls"; -// import githubRepos from 'eleventy-plugin-github-repos'; -import readingTime from 'eleventy-plugin-reading-time'; - -// import i18n from "./_data/i18n.js"; - -const production = (process.env.GITHUB_ACTIONS || process.env.FORGEJO_ACTIONS || process.env.IS_PRODUCTION); -console.log("Production:", production ? "true" : "false"); - -export default function (eleventyConfig) { - eleventyConfig.setInputDirectory("site"); - - eleventyConfig.setQuietMode(true); - eleventyConfig.addPlugin(syntaxHighlight); - eleventyConfig.addPlugin(safeLinks); - eleventyConfig.addPlugin(pluginGitCommitDate); - eleventyConfig.addPlugin(recentChanges, { - commits: 10, - }); - eleventyConfig.addPlugin(pluginInlineLinkFavicon); - eleventyConfig.addPlugin(poison); - eleventyConfig.addPlugin(mastoarchive, { - host: "https://mstdn.social", - userId: "114661188739031987", - cacheLocation: ".cache/mastodon.json", - isProduction: production - }); - // eleventyConfig.addPlugin(purgeCssPlugin, { - // config: "./purgecss.config.cjs", - // quiet: false, - // }); - eleventyConfig.addPlugin(pluginCleanUrls); - // eleventyConfig.addPlugin(githubRepos, { userAccount: 'adrianvic' }); - eleventyConfig.addPlugin(readingTime); - - eleventyConfig.addWatchTarget("./site"); - - - eleventyConfig.addCollection("post", function (collectionApi) { - return collectionApi - .getFilteredByGlob("./site/posts/*") - .sort((a, b) => b.date - a.date); - }); - - eleventyConfig.addCollection("misc", (api) => api.getFilteredByTag("misc")); - - eleventyConfig.addFilter("getTranslation", (page, lang) => { - const dir = path.dirname(page.inputPath); - const file = path.join(dir, `${lang}.json`); - - if (fs.existsSync(file)) { - return JSON.parse(fs.readFileSync(file, "utf-8")); - } - - return {}; - }); - - eleventyConfig.addCollection("88x31", () => { - return fs - .readdirSync("static/images/88x31") - .map((file) => ({ - url: `/static/images/88x31/${file}`, - fileSlug: file, - })); - }); - - eleventyConfig.addPassthroughCopy("static"); - - eleventyConfig.addNunjucksFilter( - "alternateLanguages", - function (collection, postId, currentLanguageKey) { - return collection - .filter( - (post) => - post.data.postId === postId && - post.data.langKey !== currentLanguageKey - ) - .map((post) => ({ - lang: post.data.langKey, - url: post.url, - title: post.data.title, - })); - } - ); - - eleventyConfig.addFilter("absoluteUrl", function (url) { - const base = "https://adrianvic.github.io"; - const prefix = process.env.GITHUB_ACTIONS ? "" : "/tenkuma/web"; - return base + prefix + url; - }); - - eleventyConfig.addFilter("postDate", (dateObj) => { - if (!dateObj) return ""; - return dateObj.toLocaleString(undefined, { - year: "numeric", - month: "numeric", - day: "numeric", - timeZone: "America/Sao_Paulo", - }); - }); - - eleventyConfig.addNunjucksFilter("smartTitle", function (str) { - if (!str) return ""; - const smallWords = [ - "a", - "an", - "and", - "at", - "but", - "by", - "for", - "in", - "nor", - "of", - "on", - "or", - "so", - "the", - "to", - "up", - "yet", - "e", - "de", - "do", - "da", - "dos", - "das", - "a", - "o", - "um", - "uma", - "em", - "por", - "para", - "com", - "no", - "na", - "nos", - ]; - - return str - .toLowerCase() - .split(" ") - .map((word, i) => { - if (i === 0) return word.charAt(0).toUpperCase() + word.slice(1); - return smallWords.includes(word) - ? word - : word.charAt(0).toUpperCase() + word.slice(1); - }) - .join(" "); - }); - - return { - pathPrefix: process.env.GITHUB_ACTIONS ? "" : "/tenkuma/web", - dir: { - output: "docs", - }, - }; -} diff --git a/.forgejo/workflows/build-forgejo.yml b/.forgejo/workflows/build-forgejo.yml deleted file mode 100644 index e0b77da..0000000 --- a/.forgejo/workflows/build-forgejo.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Build Eleventy Forgero - -on: - push: - paths-ignore: - - '/maintenance/**' - - '/README.md' - branches: - - main - workflow_dispatch: - pull_request: - paths-ignore: - - '/maintenance/**' - - '/README.md' - -permissions: - contents: write - -jobs: - build: - runs-on: arch-linux - - strategy: - matrix: - node-version: [24.x] - - steps: - - uses: actions/checkout@v4 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - - name: Install dependencies & build - run: | - npm ci - npm run build -- --pathprefix="/pages/tenkuma/web" - - - name: Deploy to forgejo-pages - run: | - git config user.email "adrianvictor+webmaster@disroot.org" - git config user.name "mareguma" - git checkout --orphan forgejo-pages - git rm -rf . - cp -r docs/* . - git add . - git commit -m "Deploy: $(date)" - git push -f origin forgejo-pages \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index b7d21c1..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Build Eleventy - -on: - push: - paths-ignore: - - 'maintenance/**' - - 'README.md' - branches: - - main - workflow_dispatch: - pull_request: - paths-ignore: - - 'maintenance/**' - - 'README.md' - -permissions: - contents: write - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [24.x] - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - - name: Install dependencies & build - run: | - npm ci - npm run build -- --pathprefix="" - - - name: Deploy - uses: peaceiris/actions-gh-pages@v4 - with: - publish_dir: ./docs - github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.gitignore b/.gitignore deleted file mode 100644 index d1a9dc6..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -_site/ -node_modules/ -docs/ \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 261eeb9..0000000 --- a/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/README.md b/README.md deleted file mode 100644 index 65eb7c5..0000000 --- a/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# Adrian Victor -[![Forgejo Pages Build and Deploy](https://inspiran.beetal-castor.ts.net/git/tenkuma/web/badges/workflows/build-forgejo.yml/badge.svg)](https://inspiran.beetal-castor.ts.net/git/tenkuma/web/actions?workflow=build-forgejo.yml) -[![Github Pages Build](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/build.yml/badge.svg)](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/build.yml) -[![pages-build-deployment](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/pages/pages-build-deployment) - -My personal static website/blog built with Eleventy. - - - -## Mirrors - - Forgejo: https://inspiran.beetal-castor.ts.net/pages/tenkuma/web/ - - GitHub Pages: https://adrianvic.github.io/ - - NeoCities (some features are broken): https://tenkuma.neocities.org/ - -## Interesting features - - Multiple pages - - Text support - - Interactive - -## Features that are not interesting at all - - Localization support with global/page string table - - Reusable elements with Eleventy's macros - - Responsive design for computers, medium sized devices and smartphones - - Functional without JavaScript - - Robust blog functionality with support for linking post translations with a common internal ID - - Some elements have hints while hovering, they update the text of a hint bar on the website header diff --git a/README/index.html b/README/index.html new file mode 100644 index 0000000..7176c98 --- /dev/null +++ b/README/index.html @@ -0,0 +1,27 @@ +

Adrian Victor

+

Forgejo Pages Build and Deploy +Github Pages Build +pages-build-deployment

+

My personal static website/blog built with Eleventy.

+

+

Mirrors

+ +

Interesting features

+ +

Features that are not interesting at all

+ diff --git a/docs/README/index.html b/docs/README/index.html new file mode 100644 index 0000000..7176c98 --- /dev/null +++ b/docs/README/index.html @@ -0,0 +1,27 @@ +

Adrian Victor

+

Forgejo Pages Build and Deploy +Github Pages Build +pages-build-deployment

+

My personal static website/blog built with Eleventy.

+

+

Mirrors

+ +

Interesting features

+ +

Features that are not interesting at all

+ diff --git a/docs/en/blog/index.html b/docs/en/blog/index.html new file mode 100644 index 0000000..50692e1 --- /dev/null +++ b/docs/en/blog/index.html @@ -0,0 +1,115 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor:Blog

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ +
+

Listing Blog Posts:

+ +
+
+
+ + \ No newline at end of file diff --git a/docs/en/index.html b/docs/en/index.html new file mode 100644 index 0000000..8f74ddf --- /dev/null +++ b/docs/en/index.html @@ -0,0 +1,355 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ + + + +
+
+ +
+ + + + +
+
+

Welcome

+

It seems that you have found my website! Hi, I am Adrian Victor (or tenkuma), a Brazilian guy who likes to mess around with computers, computer programs and enimatpyrtlyhtemids.

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +

About Me

+

+ My name is Adrian Victor, but I go by tenkuma on-line. I'm in high school's last year, also studying computing. My hobbies are music and music production, programming, selfhosting, Linux, and a lot more. +

+

Tenkuma, or 天くま in japanese, means celestial bear and was given by a friend of mine that I lost contact a long time ago. Sakata is gone, but the name stayed and turned into an integral part of my digital self.

+ +

Socials and Contact

+

+ I'm publicly available at Mastodon (@tenkuma@mstdn.social), + GitHub (adrianvic), + Disroot Git (adrianvictor), + Discord (@adrianvic), + YouTube (@adrianvictor8), + BitView (tenkuma), + Modrinth (tenkumabear) + and XMPP (adrianvictor@disroot.org). +

+

You can message me on my E-mail (adrianvictor@disroot.org) or feel free to get in touch through any of the other places mentioned above. For project-specific subjects, check for the project's contact field or if there's no such field add +projectname to my E-mail address (example: adrianvictor+coolproject@disroot.org).

+

Please, avoid reaching me through ways not mentioned above :)

+
+ +
+
+

My Music

+

I've always loved music, and lately I've been finding music production very interesting. I publish my songs as tenkuma, and have founded an amateur label called Margarina Records with my friends.

+

You can find my latest on songs Genius.

+ +
+ + + + + + +
+
+ +
+ + +
+ +
+
+

My Videos

+

I make videos for my YouTube channel. Videos do not come regularly, there's no schedule—just a guy wanting to show something.

+
+ +
+ + + + +
+ +
+
+

My Software

+

I am studying computing at IFC (SC, Brazil) but in my free time I have some projects like computer applications, Minecraft plugins, Minecraft servers, etc... Anything that is public should be in my GitHub profile.

+
+ +
+ +
+ +
+
+
+ Jamfish +
+ + + +
+
+

Native music player for Android devices that connects to Jellyfin media servers. The code is based on Gelli's archived repository, which is based on an old version of Phonograph.

+
+
+ + + +
+
+
+ ItemEconomy +
+ + + +
+
+

This PaperMC plugin integrates with VaultUnlocked to provide a unique, item-based economy system for your Minecraft server. Instead of relying solely on virtual balances, players use in-game items as physical currency, adding a layer of immersion and realism to your economy.

+
+
+ + + +
+
+
+ Eye of Nemesis +
+ + + +
+
+

Eye of Nemesis is a plugin that allows server admins to write policies that will deny or allow (black/whitelist) players to do specific things based on the value of nodes.

+
+
+ + + +
+
+
+ PestoWiki +
+ + + +
+
+

Multi-platform customizable client for wikis written in Python using PySide6 (QT).

+
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/docs/en/misc/88x31/index.html b/docs/en/misc/88x31/index.html new file mode 100644 index 0000000..aa1e20e --- /dev/null +++ b/docs/en/misc/88x31/index.html @@ -0,0 +1,3093 @@ + + + + + + + Adrian Victor - 88x31 + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ + +
+
+

88x31

+

This is the collection of 88x31 GIFs and images I've downloaded across the web.

+
+
+

Made by me

+
+ + + +
+

Others

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + \ No newline at end of file diff --git a/docs/en/misc/bookmarks/index.html b/docs/en/misc/bookmarks/index.html new file mode 100644 index 0000000..1fc3cbd --- /dev/null +++ b/docs/en/misc/bookmarks/index.html @@ -0,0 +1,454 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ + +
+
+

Bookmarks

+

A list of useful or cool websites/pages curated by me. Divided in sections for an easier navigation.

+ + + +
+
+ +
+

Downloads

+ +
+ + + + + + + + + +
+ +
+ +
+
MalwareWatch
+
+
+ Enderman's website. Provides download to various useful softwares, operating system images and malware. +
+ +
+
+
+ +
+
Free Images
+
+
+ Search through millions of free stock photos, art and vector images. Every image is Public Domain or CC0. Free to Download and Free to Use. +
+ +
+
+
+ +
+
88x31
+
+
+ This website is a collection with over 6500 GIF's and PNG's in 88x31 format. In the late 1990 and begin of the 2000's it was very common to use these pictures on your personal website. +
+ + + + + + + + + + + +
+
+
+ +
+ +
+

Profiles

+ +
+ +
+
Mr. Nando
+
+
+ My friend Fernando, he makes music and YouTube videos of Minecraft and speedrun. +
+ +
+
+
+ +
+
Endermanch
+
+
+ Andrew is a software engineer, a malware enthusiast and most importantly, a weird tall creature. I've grown up with his videos and he's a great inspiration for me. +
+ +
+
+
+ +
+ +
+

Tools

+ +
+ +
+
Excalidraw
+
+
+ Whiteboard with no bloat. +
+ +
+
+
+ +
+
Postimages
+
+
+ Get permanent links of your images for forums, blogs, and social media. +
+ +
+
+
+ +
+
uBlock Origin
+
+
+ An efficient blocker for Chromium and Firefox. Fast and lean. +
+ + + + + + + +
+
+
+ +
+ +
+

Games

+ +
+ + + + + + + + + +
+ +
+ +
+
SteamGridDB
+
+
+ Download and share custom video game assets and personalize your gaming library. +
+ +
+
+
+ +
+ +
+

Music

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
CVGM Radio
+
+
+ Your home for video game, demo scene and computer related music. +
+ +
+
+
+ +
+ +
+

Piracy

+ +
+ + + + + +
+ +
+ +
+
Nyaa
+
+
+ A tracker of animes, mangas and related stuff. +
+ + + + + + + +
+
+
+ +
+
Lucida
+
+
+ With Lucida, you can download music directly from Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, and Yandex Music in high quality for free. No catches, no mandatory ads, no BS. How does it work? +
+ +
+
+
+ +
+
DoubleDouble
+
+
+ Download music directly from Amazon Music, Soundcloud, Qobuz, Deezer and Tidal for free. +
+ +
+
+
+ +
+ +
+
+
+ + \ No newline at end of file diff --git a/docs/en/misc/index.html b/docs/en/misc/index.html new file mode 100644 index 0000000..b8cb8d9 --- /dev/null +++ b/docs/en/misc/index.html @@ -0,0 +1,124 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor:Misc

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ +
+

Miscellaneous

+ +
    +
    + + + +
    + + 88x31 + +
    + +
    + + + My collection of 88x31 GIFs and images. +
    + + + +
    + + Bookmarks + +
    + +
    + + + My collection of interesting websites/pages. +
    + +
    +
+
+
+
+ + \ No newline at end of file diff --git a/docs/global/blog/index.html b/docs/global/blog/index.html new file mode 100644 index 0000000..5d1b59c --- /dev/null +++ b/docs/global/blog/index.html @@ -0,0 +1,101 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor:Blog

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ +
+

+
    + + + + + + + + + +
+
+
+
+ + \ No newline at end of file diff --git a/docs/global/index.html b/docs/global/index.html new file mode 100644 index 0000000..49af188 --- /dev/null +++ b/docs/global/index.html @@ -0,0 +1,343 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ + + + +
+
+ +
+ + + + +
+
+

+

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +

+

+

+ +

+

+

+
+ +
+
+

+

+

+ +
+ + + + + + +
+
+ +
+ + +
+ +
+
+

+

+
+ +
+ + + + +
+ +
+
+

+

+
+ +
+ +
+ +
+
+
+ Jamfish +
+ + + +
+
+

+
+
+ + + +
+
+
+ ItemEconomy +
+ + + +
+
+

+
+
+ + + +
+
+
+ Eye of Nemesis +
+ + + +
+
+

+
+
+ + + +
+
+
+ PestoWiki +
+ + + +
+
+

+
+
+ +
+
+
+
+
+ + \ No newline at end of file diff --git a/docs/global/misc/index.html b/docs/global/misc/index.html new file mode 100644 index 0000000..439ba1e --- /dev/null +++ b/docs/global/misc/index.html @@ -0,0 +1,124 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor:Misc

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ +
+

+ + +
+
+
+ + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..13b0ed3 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,99 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ + +
+

Pick a language

+ +
+
+
+ + \ No newline at end of file diff --git a/site/posts/android-developer-verification.html b/docs/posts/android-developer-verification/index.html similarity index 63% rename from site/posts/android-developer-verification.html rename to docs/posts/android-developer-verification/index.html index 0a68f7e..b2d9d9b 100644 --- a/site/posts/android-developer-verification.html +++ b/docs/posts/android-developer-verification/index.html @@ -1,13 +1,107 @@ ---- -postTitle: "On the Recent Changes to App Distribution Requirements in the Android System by Google." -postId: developer-verification -langKey: en -layout: post.njk -date: 2025-08-30 -background: android-jellybean.jpg -backgroundOpacity: .35 ---- -

Recap

+ + + + + + + Adrian Victor - On the Recent Changes to App Distribution Requirements in the Android System by Google. + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Adrian Victor:Blog

+ Fanasy is not a crime, find your castle in the sky. + +
+
+
+ + +
+
+
+ + + +
+
+
+

On the Recent Changes to App Distribution Requirements in the Android System by Google.

+

Adrian Victor - 8/29/2025 (last edited in 5/15/2026)

+ + Also available in other languages: + +
  • + + português + +
  • + + +
    + + +

    Recap

    Android is that open-source operating system that works well for users and is loved by developers. Always known for breaking barriers and being open, expandable, versatile, and even friendly to power users–something not every system dares to be (iOS, Windows Phone). For a long time, Android was seen this way compared to its competitors: a breath of fresh air against the abusive practices of companies like Apple. But it seems the Android we've nurtured for two decades no longer fits in the pockets of Google executives; it is too free, creating ethical and technical barriers to the profitable exploitation path adopted by its developer.

    @@ -48,4 +142,10 @@ justify our API usage to their satisfaction. As such, the permission is now bloc

    We must watch how these policies are applied and how they affect the Android ecosystem. An inevitable consequence is that countless abandoned apps, perfectly functional without the new requirements, will disappear overnight. Not all old software connects to the internet, and not all represents a constant threat. Google is taking away the option for experienced users to take responsibility and say: "I know what I'm doing!", treating us as if they know what's best for everyone.

    -

    The commercial Android on phones is based on the AOSP, meaning Android's core remains open, and Google hasn't taken that from users yet. I plan to write another post explaining how to regain control of your device through system modifications, from the simplest, safest, most stable methods to advanced approaches, if you feel confident.

    \ No newline at end of file +

    The commercial Android on phones is based on the AOSP, meaning Android's core remains open, and Google hasn't taken that from users yet. I plan to write another post explaining how to regain control of your device through system modifications, from the simplest, safest, most stable methods to advanced approaches, if you feel confident.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/site/posts/instalando-fl-studio-no-linux.html b/docs/posts/instalando-fl-studio-no-linux/index.html similarity index 64% rename from site/posts/instalando-fl-studio-no-linux.html rename to docs/posts/instalando-fl-studio-no-linux/index.html index 1431010..72006e8 100644 --- a/site/posts/instalando-fl-studio-no-linux.html +++ b/docs/posts/instalando-fl-studio-no-linux/index.html @@ -1,18 +1,127 @@ ---- -postTitle: "Instalando FL Studio no Linux." -postId: fl-linux-install -postVideoLink: "https://www.youtube.com/watch?v=6bnNAnSY9Uo" -postVideoTitle: "Como instalar o FL Studio no Linux?" -postVideoImage: "/thumbnails/fl_studio_linux.png" -postVideoWebsite: "YouTube" -postVideoDuration: "5:53" -langKey: pt -layout: post.njk -date: 2026-04-20 -background: fl_screenshot_no_text.png -backgroundOpacity: .35 ---- -

    Prólogo

    + + + + + + + Adrian Victor - Instalando FL Studio no Linux. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Instalando FL Studio no Linux.

    +

    Adrian Victor - 4/19/2026 (editado por último em 5/15/2026)

    + + Também disponível em outros idiomas: + +
  • + + english + +
  • + + +
    + + + + + + +

    Prólogo

    Desde que mudei permanentemente para o Linux em 2024, venho me impressionando com a capacidade inabalável da comunidade open-source de trazer a vida no Linux softwares complexos feitos originalmente para Windows. Entretanto, um dos programas amaldiçoados com os mais ímpetos e abstratos erros na velha guarda do Wine é o FL Studio, caracteristica essa que fez com que eu, por muito tempo, achasse que a DAW da Image-Line não iria rodar de jeito nenhum no sistema do penguim.

    Acontece que o FL roda no Linux, e roda muito bem, considerando a sua complexidade. Descartando uns problemas visuais, algumas VSTs que simplesmente não rodam e uma gambiarra para rodar plugins 32-bits, a experiência de usar o FL Studio no Linux é bem sólida. Parece que a Valve, Wine e comunidade open-source não estão para brincadeira mesmo.

    Antes de ir às formalidades, gostaria de definir o escopo desse tutorial. Faço ele com tudo o que cabe na minha memória recente trabalhando com o FL no Linux. Mas também não é uma postagem estática; se estiver faltando alguma coisa me mande um e-mail e eu atualizo.

    @@ -61,4 +170,10 @@ backgroundOpacity: .35

    Conclusões

    Não sou a pessoa mais apta para dizer até onde a usabilidade da DAW se extende no Linux; não sou nem de longe um usuário avançado do FL. Mas, a título de informação, consegui produzir a faixa Velkommen inteiramente no sistema do penguim e não tenho a intenção de voltar para o Windows.

    É mesmo inconveniente quando um plugin ou outro não funciona, quando eu tenho que criar um Fruity Wrapper antes de usar um plugin 32bits, ou quando eu penso que talvez a DAW possa performar um pouco melhor nativamente no Windows. Porém, para mim, é um preço muito justo a se pagar para misturar nas minhas músicas um pouco desse suco de ideologia que é me desafiar a não usar o sistema da Microsoft.

    -

    Espero que você também encontre esse conforto—não na conveniência, mas em desafiar o molde com intenção. Excentricidade digna de um artista.

    \ No newline at end of file +

    Espero que você também encontre esse conforto—não na conveniência, mas em desafiar o molde com intenção. Excentricidade digna de um artista.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/site/posts/installing-fl-studio-on-linux.html b/docs/posts/installing-fl-studio-on-linux/index.html similarity index 66% rename from site/posts/installing-fl-studio-on-linux.html rename to docs/posts/installing-fl-studio-on-linux/index.html index 623c1bf..8491c89 100644 --- a/site/posts/installing-fl-studio-on-linux.html +++ b/docs/posts/installing-fl-studio-on-linux/index.html @@ -1,13 +1,107 @@ ---- -postTitle: "Installing FL Studio on linux." -postId: fl-linux-install -langKey: en -layout: post.njk -date: 2026-04-20 -background: fl_screenshot_no_text.png -backgroundOpacity: .35 ---- -

    Prologue

    + + + + + + + Adrian Victor - Installing FL Studio on linux. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Installing FL Studio on linux.

    +

    Adrian Victor - 4/19/2026 (last edited in 5/15/2026)

    + + Also available in other languages: + +
  • + + português + +
  • + + +
    + + +

    Prologue

    Since I permanently moved to Linux in 2024, I have been impressed by the unwavering ability of the open-source community to bring to life in Linux complex software originally made for Windows. However, one of the programs cursed with the most stubborn and abstract errors in the old guard of Wine is FL Studio, a characteristic that made me, for a long time, think that Image-Line's DAW would not run at all on the penguin's system.

    It turns out that FL runs on Linux, and runs very well, considering its complexity. Disregarding some visual problems, some VSTs that simply don't run, and a workaround to run 32-bit plugins, the experience of using FL Studio on Linux is quite solid. It seems that Valve, Wine, and the open-source community are not messing around.

    Before getting into the formalities, I would like to define the scope of this tutorial. I'm making it with everything that fits in my recent memory working with FL on Linux. But it's also not a static post; if something is missing, send me an email and I'll update it.

    @@ -59,4 +153,10 @@ backgroundOpacity: .35

    Conclusions

    I'm not the most apt person to say how far the DAW's usability extends on Linux; I'm far from an advanced FL user. But, for your information, I was able to produce the track Velkommen entirely on the penguin's system and have no intention of going back to Windows.

    It's really inconvenient when one plugin or another doesn't work, when I have to create a Fruity Wrapper before using a 32-bit plugin, or when I think that maybe the DAW could perform a little better natively on Windows. However, for me, it's a very fair price to pay to mix into my music a little bit of that ideology juice that is challenging myself not to use Microsoft's system.

    -

    I hope you also find that comfort—not in convenience, but in challenging the mold with intention. Eccentricity worthy of an artist.

    \ No newline at end of file +

    I hope you also find that comfort—not in convenience, but in challenging the mold with intention. Eccentricity worthy of an artist.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/site/posts/verificacao-de-desenvolvedor-no-android.html b/docs/posts/verificacao-de-desenvolvedor-no-android/index.html similarity index 68% rename from site/posts/verificacao-de-desenvolvedor-no-android.html rename to docs/posts/verificacao-de-desenvolvedor-no-android/index.html index f39b84a..7ec775a 100644 --- a/site/posts/verificacao-de-desenvolvedor-no-android.html +++ b/docs/posts/verificacao-de-desenvolvedor-no-android/index.html @@ -1,13 +1,107 @@ ---- -postTitle: "Sobre as recentes mudanças nos requisitos de distribuição de apps no sistema Android feitas pela Google." -postId: developer-verification -layout: post.njk -date: 2025-08-30 -background: android-jellybean.jpg -backgroundOpacity: .35 -langKey: pt ---- -

    Recapitulando

    + + + + + + + Adrian Victor - Sobre as recentes mudanças nos requisitos de distribuição de apps no sistema Android feitas pela Google. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Sobre as recentes mudanças nos requisitos de distribuição de apps no sistema Android feitas pela Google.

    +

    Adrian Victor - 8/29/2025 (editado por último em 5/15/2026)

    + + Também disponível em outros idiomas: + +
  • + + english + +
  • + + +
    + + +

    Recapitulando

    Android é aquele sistema operacional open-source que funciona bem para os usuários, e que os desenvolvedores amam. Sempre conhecido por quebrar barreiras e por ser aberto, expansível, versátil e até amigável com os mais nerds, coisa que nem todo sistema tem a cara e coragem de ser (iOS, Windows Phone). É assim que, por muito tempo, o Android foi visto em relação aos seus concorrentes: Um suspiro de ar puro em relação às práticas abusivas de empresas como a Apple. Mas parece que o Android que cultivamos por duas décadas não cabe mais no bolso dos executivos da Google, é livre demais, e isso criou barreiras éticas e técnicas no lucrativo caminho de exploração adotado pela sua desenvolvedora.

    @@ -47,4 +141,10 @@ langKey: pt

    Devemos ficar atentos a como essas novas políticas vão ser aplicadas, e como as mesmas afetarão o ecossistema do Android. Uma consequência inevitável das mudanças é que um número inestimável de aplicações abandonadas pelos desenvolvedores, que, se não fosse pelos novos requisitos, seriam perfeitamente funcionais serão perdidas de um dia para o outro. Nem todo software antigo se conecta à internet, nem todo software antigo representa um perigo constante ao usuário. A Google está tirando do usuário experiente a opção de assumir a responsabilidade e dizer: "Eu sei o que estou fazendo!", nos segurando como crianças, como se soubessem o que é melhor para todos.

    -

    O Android comercializado nos celulares é baseado no AOSP, o que significa que a força vital do Android é aberta, e isso a Google ainda não tirou dos usuários. Portanto pretendo fazer um outro post explicando como você pode recuperar o controle do seu dispositivo por meio de modificações no sistema, da forma mais simples, segura e estável possível, até as formas mais avançadas, caso você se sinta confiante.

    \ No newline at end of file +

    O Android comercializado nos celulares é baseado no AOSP, o que significa que a força vital do Android é aberta, e isso a Google ainda não tirou dos usuários. Portanto pretendo fazer um outro post explicando como você pode recuperar o controle do seu dispositivo por meio de modificações no sistema, da forma mais simples, segura e estável possível, até as formas mais avançadas, caso você se sinta confiante.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/docs/pt/blog/index.html b/docs/pt/blog/index.html new file mode 100644 index 0000000..3be56fa --- /dev/null +++ b/docs/pt/blog/index.html @@ -0,0 +1,115 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    Listando Postagens do Blog:

    + +
    +
    +
    + + \ No newline at end of file diff --git a/docs/pt/index.html b/docs/pt/index.html new file mode 100644 index 0000000..6dffb0d --- /dev/null +++ b/docs/pt/index.html @@ -0,0 +1,354 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + + +
    +
    + +
    + + + + +
    +
    +

    Bem-vindo

    +

    Parece que você encontrou meu website! Olá, sou Adrian Victor (ou tenkuma), um cara brasileiro que gosta de mexer com computadores, programas de computadores e enimatpirtlitemídios.

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + +

    Sobre Mim

    +

    + Meu nome é Adrian Victor, mas on-line eu uso o nickname tenkuma. Estou no último ano do ensino médio e estudo informática. Meus hobbies são escutar e produzir música, programação, selfhosting, Linux, e muito mais. +

    +

    Tenkuma, ou 天くま em japonês, significa urso celestial e foi um nome dado a mim por um amigo que eu já perdi contato há muito tempo. Sakata se foi, mas o nome ficou e se tornou parte integral da personalidade do meu eu digital até hoje.

    + +

    Redes Sociais e Contato

    +

    + Estou publicamente disponível no Mastodon (@tenkuma@mstdn.social), + GitHub (adrianvic), + Disroot Git (adrianvictor), + Discord (@adrianvic), + YouTube (@adrianvictor8), + BitView (tenkuma), + Modrinth (tenkumabear) + e XMPP (adrianvictor@disroot.org). +

    +

    Você pode enviar um correio eletrônico para (adrianvictor@disroot.org) ou me contactar por qualquer outro meio citado acima. Para assuntos relativos a projetos específicos, verifique o campo de contato do projeto, caso não haja um adicione +nomedoprojeto ao meu endereço de E-mail (exemplo: adrianvictor+projetolegal@disroot.org).

    +
    + +
    +
    +

    Música

    +

    Sempre amei música, e tenho achado produção musical algo muito interessante ultimamente. Publico minhas músicas como tenkuma, junto com meus amigos formei a Margarina Records—uma label amadora.

    +

    Você pode conferir minhas músicas mais recentes no meu perfil do Genius.

    + +
    + + + + + + +
    +
    + +
    + + +
    + +
    +
    +

    Vídeos

    +

    Eu faço vídeos para o meu canal do YouTube. Não posto regularmente; não tem calendário—apenas eu mostrando alguma coisa em vídeo.

    +
    + +
    + + + + +
    + +
    +
    +

    Software

    +

    Estou estudando informática no IFC (SC, Brazil) mas no meu tempo livre tenho projetos como programas de computador, plugins para Minecraft, servidores Minecraft, etc... Todos meus projetos públicos estão disponíveis no meu perfil do GitHub.

    +
    + +
    + +
    + +
    +
    +
    + Jamfish +
    + + + +
    +
    +

    Reprodutor de música nativo para dispositivos Android que se conecta a servidores de mídia Jellyfin. O código é baseado no repositório arquivado do Gelli, que por sua vez se baseia em uma versão antiga do Phonograph.

    +
    +
    + + + +
    +
    +
    + ItemEconomy +
    + + + +
    +
    +

    Este plugin PaperMC integra-se ao VaultUnlocked para fornecer um sistema de economia único baseado em itens para o seu servidor Minecraft. Em vez de depender apenas de saldos virtuais, os jogadores usam itens do jogo como moeda física, adicionando uma camada de imersão e realismo à sua economia.

    +
    +
    + + + +
    +
    +
    + Eye of Nemesis +
    + + + +
    +
    +

    Eye of Nemesis é um plugin que permite aos administradores de servidores escrever políticas que negarão ou permitirão (lista negra/branca) que os jogadores façam coisas específicas com base no valor dos nós.

    +
    +
    + + + +
    +
    +
    + PestoWiki +
    + + + +
    +
    +

    Cliente personalizável multiplataforma para wikis escrito em Python usando PySide6 (QT).

    +
    +
    + +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/docs/pt/misc/88x31/index.html b/docs/pt/misc/88x31/index.html new file mode 100644 index 0000000..0ac32c7 --- /dev/null +++ b/docs/pt/misc/88x31/index.html @@ -0,0 +1,3093 @@ + + + + + + + Adrian Victor - 88x31 + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + +
    +
    +

    88x31

    +

    Essa é uma coleção de GIFs e imagens 88x31 que eu baixei pela internet.

    +
    +
    +

    Feitos por mim

    +
    + + + +
    +

    Outros

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + \ No newline at end of file diff --git a/docs/pt/misc/bookmarks/index.html b/docs/pt/misc/bookmarks/index.html new file mode 100644 index 0000000..b7ff761 --- /dev/null +++ b/docs/pt/misc/bookmarks/index.html @@ -0,0 +1,454 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + +
    +
    +

    Favoritos

    +

    Essa é a lista de links favoritos curada por mim, dividida em seções para facilitar a navegação ;-)

    + + + +
    +
    + +
    +

    Downloads

    + +
    + + + + + + + + + +
    + +
    + +
    +
    MalwareWatch
    +
    +
    + Website do Enderman. Tem download de vários softwares úteis, imagens de sistemas operacionais e malware. +
    + +
    +
    +
    + +
    +
    Free Images
    +
    +
    + Pesquise por milhões de imagens, artes e vetores. Todas as imagens são de domínio público ou sobre CC0. Livre para baixar e livre para usar. +
    + +
    +
    +
    + +
    +
    88x31
    +
    +
    + Essa é uma coleção de mais de 6500 GIFs e PNGs no formato 88x31. No final dos anos 1990 e começo dos 2000 era muito comum usar essas imagens no seu site pessoal. +
    + + + + + + + + + + + +
    +
    +
    + +
    + +
    +

    Perfis

    + +
    + +
    +
    Mr. Nando
    +
    +
    + Meu amigo Fernando, ele faz músicas e vídeos de Minecraft e speedrun. +
    + +
    +
    +
    + +
    +
    Endermanch
    +
    +
    + Andrew é um engenheiro de software, entusiasta de malware e, mais importante, uma estranha e alta criatura. Cresci com os seus videos e ele é uma grande inspiração para mim. +
    + +
    +
    +
    + +
    + +
    +

    Ferramentas

    + +
    + +
    +
    Excalidraw
    +
    +
    + Quadro branco sem distrações. +
    + +
    +
    +
    + +
    +
    Postimages
    +
    +
    + Gere links permantes de suas imagens para forums, blogs e redes sociais. +
    + +
    +
    +
    + +
    +
    uBlock Origin
    +
    +
    + Um bloqueador eficiente para Chromium e Firefox. Rápido e pequeno. +
    + + + + + + + +
    +
    +
    + +
    + +
    +

    Jogos

    + +
    + + + + + + + + + +
    + +
    + +
    +
    SteamGridDB
    +
    +
    + Baixe e compartilhe recursos visuais de jogos e personalize sua biblioteca de jogos. +
    + +
    +
    +
    + +
    + +
    +

    Música

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    CVGM Radio
    +
    +
    + Seu lar para música relacionada a video games, demo scene e computadores. +
    + +
    +
    +
    + +
    + +
    +

    Pirataria

    + +
    + + + + + +
    + +
    + +
    +
    Nyaa
    +
    +
    + Um tracker de animes, mangás e coisas relacionadas. +
    + + + + + + + +
    +
    +
    + +
    +
    Lucida
    +
    +
    + Com Lucida, você pode baixar musica diretamente de Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, e Yandex Music em alta qualidade de graça. Sem pegadinhas, sem anúncios obrigatórios, sem enrolação. Como que funciona? +
    + +
    +
    +
    + +
    +
    DoubleDouble
    +
    +
    + Baixe musica diretamente de Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, e Yandex Music em alta qualidade de graça. +
    + +
    +
    +
    + +
    + +
    +
    +
    + + \ No newline at end of file diff --git a/docs/pt/misc/index.html b/docs/pt/misc/index.html new file mode 100644 index 0000000..8884646 --- /dev/null +++ b/docs/pt/misc/index.html @@ -0,0 +1,124 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Misc

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    Miscelâneo

    + +
      +
      + + + +
      + + 88x31 + +
      + +
      + + + Minha coleção de GIFs e imagens 88x31. +
      + + + +
      + + Favoritos + +
      + +
      + + + Minha coleção de sites e páginas interessantes. +
      + +
      +
    +
    +
    +
    + + \ No newline at end of file diff --git a/site/school/api-rodrigoribeiro.html b/docs/school/api-rodrigoribeiro/index.html similarity index 56% rename from site/school/api-rodrigoribeiro.html rename to docs/school/api-rodrigoribeiro/index.html index dcf84df..6ab6141 100644 --- a/site/school/api-rodrigoribeiro.html +++ b/docs/school/api-rodrigoribeiro/index.html @@ -1,7 +1,86 @@ ---- -pageTitle: "Demonstração da API do Prof. Rodrigo Ribeiro" ---- - + +
    + +
    +
    +

    Adrian Victor:Trabalhos

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    +
    -

    {{pageTitle}}

    +

    Demonstração da API do Prof. Rodrigo Ribeiro

    A API do Prof. Rodrigo Ribeiro permite que o client envie uma imagem, assim retornando o resultado de uma leitura óptica realizada sobre a mesma com inteligência artificial. Esse client lê o resultado e o mostra de forma simples para o usuário.

    Mais informações sobre a API podem ser encontradas no seu website.

    Token: Ausente
    @@ -128,4 +207,8 @@ pageTitle: "Demonstração da API do Prof. Rodrigo Ribeiro" apiDiv.classList.toggle('selected'); loginDiv.classList.toggle('selected'); } - \ No newline at end of file + +
    +
    + + \ No newline at end of file diff --git a/site/school/guia-ifc-novatos.html b/docs/school/guia-ifc-novatos/index.html similarity index 64% rename from site/school/guia-ifc-novatos.html rename to docs/school/guia-ifc-novatos/index.html index fe765bd..560ad85 100644 --- a/site/school/guia-ifc-novatos.html +++ b/docs/school/guia-ifc-novatos/index.html @@ -1,13 +1,98 @@ ---- -postTitle: "Guia para novatos no IFC." -langKey: pt -layout: post.njk -date: 2026-01-13 -background: ifc.jpg -backgroundOpacity: .35 -title: Adrian Victor:Escola ---- - + +
    + +
    +
    +

    Adrian Victor:Escola

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Guia para novatos no IFC.

    +

    Adrian Victor - 1/12/2026 (editado por último em )

    + +
    + + + + +
    + +
    +
    +

    Adrian Victor:Trabalhos

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Telnet

    +

    Adrian Victor & Arthur Borges - 8/26/2025 (last edited in )

    + +
    + + + +

    What the protocol is, its function and history

    +

    Telnet (from TELecommunication NETwork) is a TCP/IP stack network protocol that allows remote text-mode communication between computers. Its main function is to provide an interactive session where a user can access and control another device as if they were on a local terminal.

    +

    Created in 1969, Telnet was one of the first protocols developed for ARPANET (the network that gave rise to the Internet) and became fundamental for system and device administration in the 1970s, 1980s, and 1990s. Over time, it fell out of use due to lack of security, being replaced by more modern alternatives such as SSH (Secure Shell).

    +

    Implementation

    +

    Default port: 23/TCP.
    +Works at the application layer of the OSI model.
    +Format: Based on ASCII character exchange, without encryption.
    +RFC: Defined by RFC 854 (1983).
    +Architecture: Follows the client-server model

    +

    How it works

    +

    In practice, Telnet works relatively simply. The process starts when the client establishes a TCP connection to the server via port 23. Then a remote terminal session is initiated and the user must provide credentials such as username and password. After authentication, commands typed on the client are transmitted in plain text to the server, which processes them and returns the corresponding output. The session remains active as long as the user wants, normally ending with commands like exit or logout

    +

    Use cases

    +

    For many years, Telnet was widely used for remote access to Unix, Linux, and Windows servers, especially older versions of these systems. It also became common in network device administration, such as routers and switches, until SSH became the standard. Additionally, mainframes and some legacy devices still use Telnet today. Another practical application is in educational environments and network diagnostics, where it is used to test open ports and check service connectivity, such as running “telnet server.com 80” to see if a web server port is operational.

    +

    Encryption: the inherent problem

    +

    Telnet has no native encryption, which makes it extremely vulnerable. To solve this problem, more secure alternatives were developed. The main one is SSH (Secure Shell), created in the 1990s as a direct Telnet replacement. SSH offers the same functionality while ensuring data protection through strong authentication and full traffic encryption. Another, less common approach is using SSL/TLS to tunnel Telnet sessions, but in practice this is rarely used.

    +

    Advantages and disadvantages

    +

    Telnet’s advantages include simplicity, low resource usage, and compatibility with various older systems, which facilitated its adoption over the years. However, these benefits are outweighed by its disadvantages. The main one is the lack of encryption, exposing all transmitted data—including passwords—in plain text. This makes it vulnerable to attacks such as sniffing, which captures network packets, and hijacking, which takes over active sessions. For this reason, Telnet is considered obsolete and unsafe for use on open networks like the Internet.

    +

    Relation to other protocols

    +

    Telnet is part of the TCP/IP protocol family and uses TCP to ensure reliable communication. Like other protocols in this stack, such as HTTP, FTP, and SMTP, it relies on stable connections to perform its functions, but its distinguishing feature has always been terminal-mode interactivity. Due to security flaws, it was replaced by its natural successor, SSH, which retained Telnet’s conceptual base but added robust protection layers.

    +

    Functional example

    +

    Below is a Telnet connection simulator written in JavaScript.

    +
    +

    Loading...

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Server

    + + +
    +
    +

    Client

    + +
    + + +
    +
    +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/site/school/telnet-pt.html b/docs/school/telnet-pt/index.html similarity index 61% rename from site/school/telnet-pt.html rename to docs/school/telnet-pt/index.html index a798ccc..7de9b70 100644 --- a/site/school/telnet-pt.html +++ b/docs/school/telnet-pt/index.html @@ -1,12 +1,98 @@ ---- -postTitle: "Telnet" -layout: post.njk -date: 2025-08-27 -background: redes.jpg -authors: Adrian Victor & Arthur Borges -langKey: pt ---- - + + + + + + + Adrian Victor - Telnet + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Trabalhos

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Telnet

    +

    Adrian Victor & Arthur Borges - 8/26/2025 (editado por último em )

    + +
    + + +

    O que é o protocolo, sua função e histórico

    O Telnet (do inglês TELecommunication NETwork) é um protocolo de rede da pilha TCP/IP que permite a comunicação remota entre computadores em modo texto. Sua @@ -100,3 +186,10 @@ Pronto para receber comandos.

    + + + +
    +
    + + \ No newline at end of file diff --git a/docs/static/android-chrome-192x192.png b/docs/static/android-chrome-192x192.png new file mode 100644 index 0000000..7412893 Binary files /dev/null and b/docs/static/android-chrome-192x192.png differ diff --git a/docs/static/android-chrome-512x512.png b/docs/static/android-chrome-512x512.png new file mode 100644 index 0000000..11103d2 Binary files /dev/null and b/docs/static/android-chrome-512x512.png differ diff --git a/docs/static/apple-touch-icon.png b/docs/static/apple-touch-icon.png new file mode 100644 index 0000000..e7e523d Binary files /dev/null and b/docs/static/apple-touch-icon.png differ diff --git a/docs/static/favicon-16x16.png b/docs/static/favicon-16x16.png new file mode 100644 index 0000000..800a6dc Binary files /dev/null and b/docs/static/favicon-16x16.png differ diff --git a/docs/static/favicon-32x32.png b/docs/static/favicon-32x32.png new file mode 100644 index 0000000..3ace631 Binary files /dev/null and b/docs/static/favicon-32x32.png differ diff --git a/docs/static/favicon.ico b/docs/static/favicon.ico new file mode 100644 index 0000000..92263f2 Binary files /dev/null and b/docs/static/favicon.ico differ diff --git a/docs/static/images/88x31/000010.gif b/docs/static/images/88x31/000010.gif new file mode 100644 index 0000000..5b387b2 Binary files /dev/null and b/docs/static/images/88x31/000010.gif differ diff --git a/docs/static/images/88x31/149.png b/docs/static/images/88x31/149.png new file mode 100644 index 0000000..4d0f68b Binary files /dev/null and b/docs/static/images/88x31/149.png differ diff --git a/docs/static/images/88x31/2001.gif b/docs/static/images/88x31/2001.gif new file mode 100644 index 0000000..69a11b7 Binary files /dev/null and b/docs/static/images/88x31/2001.gif differ diff --git a/docs/static/images/88x31/2014-rave.gif b/docs/static/images/88x31/2014-rave.gif new file mode 100644 index 0000000..28c2615 Binary files /dev/null and b/docs/static/images/88x31/2014-rave.gif differ diff --git a/docs/static/images/88x31/2ktan.png b/docs/static/images/88x31/2ktan.png new file mode 100644 index 0000000..af33b58 Binary files /dev/null and b/docs/static/images/88x31/2ktan.png differ diff --git a/static/images/88x31/88x31-micro-button.gif b/docs/static/images/88x31/88x31-your-ad.gif similarity index 65% rename from static/images/88x31/88x31-micro-button.gif rename to docs/static/images/88x31/88x31-your-ad.gif index 08b2af2..e366403 100644 Binary files a/static/images/88x31/88x31-micro-button.gif and b/docs/static/images/88x31/88x31-your-ad.gif differ diff --git a/docs/static/images/88x31/88x31floral.gif b/docs/static/images/88x31/88x31floral.gif new file mode 100644 index 0000000..62ad118 Binary files /dev/null and b/docs/static/images/88x31/88x31floral.gif differ diff --git a/docs/static/images/88x31/88x31gold.gif b/docs/static/images/88x31/88x31gold.gif new file mode 100644 index 0000000..6e2dcc5 Binary files /dev/null and b/docs/static/images/88x31/88x31gold.gif differ diff --git a/docs/static/images/88x31/88x31greenmarble.gif b/docs/static/images/88x31/88x31greenmarble.gif new file mode 100644 index 0000000..1280e32 Binary files /dev/null and b/docs/static/images/88x31/88x31greenmarble.gif differ diff --git a/docs/static/images/88x31/88x31pinkmarble.gif b/docs/static/images/88x31/88x31pinkmarble.gif new file mode 100644 index 0000000..0656162 Binary files /dev/null and b/docs/static/images/88x31/88x31pinkmarble.gif differ diff --git a/docs/static/images/88x31/88x31tms.gif b/docs/static/images/88x31/88x31tms.gif new file mode 100644 index 0000000..e532947 Binary files /dev/null and b/docs/static/images/88x31/88x31tms.gif differ diff --git a/docs/static/images/88x31/88x31whitemarble.gif b/docs/static/images/88x31/88x31whitemarble.gif new file mode 100644 index 0000000..79ece74 Binary files /dev/null and b/docs/static/images/88x31/88x31whitemarble.gif differ diff --git a/docs/static/images/88x31/96.png b/docs/static/images/88x31/96.png new file mode 100644 index 0000000..4576fbb Binary files /dev/null and b/docs/static/images/88x31/96.png differ diff --git a/docs/static/images/88x31/98.gif b/docs/static/images/88x31/98.gif new file mode 100644 index 0000000..8132b5c Binary files /dev/null and b/docs/static/images/88x31/98.gif differ diff --git a/docs/static/images/88x31/AB_big3.gif b/docs/static/images/88x31/AB_big3.gif new file mode 100644 index 0000000..d659e6d Binary files /dev/null and b/docs/static/images/88x31/AB_big3.gif differ diff --git a/docs/static/images/88x31/BOOKMARKthispageNOW.png b/docs/static/images/88x31/BOOKMARKthispageNOW.png new file mode 100644 index 0000000..5a01e10 Binary files /dev/null and b/docs/static/images/88x31/BOOKMARKthispageNOW.png differ diff --git a/docs/static/images/88x31/BWA_Boing_88x31_19991004.gif b/docs/static/images/88x31/BWA_Boing_88x31_19991004.gif new file mode 100644 index 0000000..a467712 Binary files /dev/null and b/docs/static/images/88x31/BWA_Boing_88x31_19991004.gif differ diff --git a/docs/static/images/88x31/EmacsNow (2).gif b/docs/static/images/88x31/EmacsNow (2).gif new file mode 100644 index 0000000..d5939e2 Binary files /dev/null and b/docs/static/images/88x31/EmacsNow (2).gif differ diff --git a/docs/static/images/88x31/KMeleon-White_Ani.gif b/docs/static/images/88x31/KMeleon-White_Ani.gif new file mode 100644 index 0000000..bc95862 Binary files /dev/null and b/docs/static/images/88x31/KMeleon-White_Ani.gif differ diff --git a/docs/static/images/88x31/KMeleon_logo.gif b/docs/static/images/88x31/KMeleon_logo.gif new file mode 100644 index 0000000..5d94413 Binary files /dev/null and b/docs/static/images/88x31/KMeleon_logo.gif differ diff --git a/docs/static/images/88x31/WEBP.gif b/docs/static/images/88x31/WEBP.gif new file mode 100644 index 0000000..e63f1f2 Binary files /dev/null and b/docs/static/images/88x31/WEBP.gif differ diff --git a/docs/static/images/88x31/agoraroad.gif b/docs/static/images/88x31/agoraroad.gif new file mode 100644 index 0000000..366f661 Binary files /dev/null and b/docs/static/images/88x31/agoraroad.gif differ diff --git a/docs/static/images/88x31/ai.gif b/docs/static/images/88x31/ai.gif new file mode 100644 index 0000000..571bf9d Binary files /dev/null and b/docs/static/images/88x31/ai.gif differ diff --git a/docs/static/images/88x31/amd_now.gif b/docs/static/images/88x31/amd_now.gif new file mode 100644 index 0000000..12b9000 Binary files /dev/null and b/docs/static/images/88x31/amd_now.gif differ diff --git a/docs/static/images/88x31/amd_powered.gif b/docs/static/images/88x31/amd_powered.gif new file mode 100644 index 0000000..344cda4 Binary files /dev/null and b/docs/static/images/88x31/amd_powered.gif differ diff --git a/docs/static/images/88x31/amiga_friendly.gif b/docs/static/images/88x31/amiga_friendly.gif new file mode 100644 index 0000000..75113f1 Binary files /dev/null and b/docs/static/images/88x31/amiga_friendly.gif differ diff --git a/docs/static/images/88x31/amiga_power.gif b/docs/static/images/88x31/amiga_power.gif new file mode 100644 index 0000000..cebe83f Binary files /dev/null and b/docs/static/images/88x31/amiga_power.gif differ diff --git a/docs/static/images/88x31/amiga_rc5.gif b/docs/static/images/88x31/amiga_rc5.gif new file mode 100644 index 0000000..ecd5cb0 Binary files /dev/null and b/docs/static/images/88x31/amiga_rc5.gif differ diff --git a/docs/static/images/88x31/angellogo.gif b/docs/static/images/88x31/angellogo.gif new file mode 100644 index 0000000..d434ab7 Binary files /dev/null and b/docs/static/images/88x31/angellogo.gif differ diff --git a/docs/static/images/88x31/anybrowser.gif b/docs/static/images/88x31/anybrowser.gif new file mode 100644 index 0000000..8b1f661 Binary files /dev/null and b/docs/static/images/88x31/anybrowser.gif differ diff --git a/docs/static/images/88x31/anybrowser6.gif b/docs/static/images/88x31/anybrowser6.gif new file mode 100644 index 0000000..6c35d10 Binary files /dev/null and b/docs/static/images/88x31/anybrowser6.gif differ diff --git a/docs/static/images/88x31/armed.gif b/docs/static/images/88x31/armed.gif new file mode 100644 index 0000000..33427ac Binary files /dev/null and b/docs/static/images/88x31/armed.gif differ diff --git a/docs/static/images/88x31/asexuals_now.gif b/docs/static/images/88x31/asexuals_now.gif new file mode 100644 index 0000000..7642e36 Binary files /dev/null and b/docs/static/images/88x31/asexuals_now.gif differ diff --git a/docs/static/images/88x31/az01.gif b/docs/static/images/88x31/az01.gif new file mode 100644 index 0000000..cd8590b Binary files /dev/null and b/docs/static/images/88x31/az01.gif differ diff --git a/docs/static/images/88x31/az02.gif b/docs/static/images/88x31/az02.gif new file mode 100644 index 0000000..a904f0e Binary files /dev/null and b/docs/static/images/88x31/az02.gif differ diff --git a/docs/static/images/88x31/az03.gif b/docs/static/images/88x31/az03.gif new file mode 100644 index 0000000..9b8ae67 Binary files /dev/null and b/docs/static/images/88x31/az03.gif differ diff --git a/docs/static/images/88x31/bbn.gif b/docs/static/images/88x31/bbn.gif new file mode 100644 index 0000000..c677368 Binary files /dev/null and b/docs/static/images/88x31/bbn.gif differ diff --git a/docs/static/images/88x31/beos_now_anim.gif b/docs/static/images/88x31/beos_now_anim.gif new file mode 100644 index 0000000..fe13b6a Binary files /dev/null and b/docs/static/images/88x31/beos_now_anim.gif differ diff --git a/docs/static/images/88x31/best1024.gif b/docs/static/images/88x31/best1024.gif new file mode 100644 index 0000000..b3e87c6 Binary files /dev/null and b/docs/static/images/88x31/best1024.gif differ diff --git a/docs/static/images/88x31/best800x600.gif b/docs/static/images/88x31/best800x600.gif new file mode 100644 index 0000000..c93fcf6 Binary files /dev/null and b/docs/static/images/88x31/best800x600.gif differ diff --git a/docs/static/images/88x31/best_free.gif b/docs/static/images/88x31/best_free.gif new file mode 100644 index 0000000..5a6931c Binary files /dev/null and b/docs/static/images/88x31/best_free.gif differ diff --git a/docs/static/images/88x31/best_viewed_with_monitor.gif b/docs/static/images/88x31/best_viewed_with_monitor.gif new file mode 100644 index 0000000..5e1afea Binary files /dev/null and b/docs/static/images/88x31/best_viewed_with_monitor.gif differ diff --git a/docs/static/images/88x31/best_viewed_with_open_eyes.gif b/docs/static/images/88x31/best_viewed_with_open_eyes.gif new file mode 100644 index 0000000..27581b7 Binary files /dev/null and b/docs/static/images/88x31/best_viewed_with_open_eyes.gif differ diff --git a/docs/static/images/88x31/bestviewed16bit.gif b/docs/static/images/88x31/bestviewed16bit.gif new file mode 100644 index 0000000..e8f8acd Binary files /dev/null and b/docs/static/images/88x31/bestviewed16bit.gif differ diff --git a/docs/static/images/88x31/bestviewedcomp.gif b/docs/static/images/88x31/bestviewedcomp.gif new file mode 100644 index 0000000..0b43d5a Binary files /dev/null and b/docs/static/images/88x31/bestviewedcomp.gif differ diff --git a/docs/static/images/88x31/bestvieweddesktop.gif b/docs/static/images/88x31/bestvieweddesktop.gif new file mode 100644 index 0000000..06620c0 Binary files /dev/null and b/docs/static/images/88x31/bestvieweddesktop.gif differ diff --git a/docs/static/images/88x31/bestviewedlinks.gif b/docs/static/images/88x31/bestviewedlinks.gif new file mode 100644 index 0000000..5b35db4 Binary files /dev/null and b/docs/static/images/88x31/bestviewedlinks.gif differ diff --git a/docs/static/images/88x31/bestviewedopen.gif b/docs/static/images/88x31/bestviewedopen.gif new file mode 100644 index 0000000..fcae15a Binary files /dev/null and b/docs/static/images/88x31/bestviewedopen.gif differ diff --git a/docs/static/images/88x31/bestviewedyour.gif b/docs/static/images/88x31/bestviewedyour.gif new file mode 100644 index 0000000..9f45a84 Binary files /dev/null and b/docs/static/images/88x31/bestviewedyour.gif differ diff --git a/docs/static/images/88x31/bestvw.gif b/docs/static/images/88x31/bestvw.gif new file mode 100644 index 0000000..3695756 Binary files /dev/null and b/docs/static/images/88x31/bestvw.gif differ diff --git a/docs/static/images/88x31/blank.gif b/docs/static/images/88x31/blank.gif new file mode 100644 index 0000000..d5320c8 Binary files /dev/null and b/docs/static/images/88x31/blank.gif differ diff --git a/docs/static/images/88x31/blasphemy.gif b/docs/static/images/88x31/blasphemy.gif new file mode 100644 index 0000000..e0da2ad Binary files /dev/null and b/docs/static/images/88x31/blasphemy.gif differ diff --git a/docs/static/images/88x31/blender_get.gif b/docs/static/images/88x31/blender_get.gif new file mode 100644 index 0000000..0b7ee8a Binary files /dev/null and b/docs/static/images/88x31/blender_get.gif differ diff --git a/docs/static/images/88x31/blogger_88x31.gif b/docs/static/images/88x31/blogger_88x31.gif new file mode 100644 index 0000000..41b4541 Binary files /dev/null and b/docs/static/images/88x31/blogger_88x31.gif differ diff --git a/docs/static/images/88x31/botao08.gif b/docs/static/images/88x31/botao08.gif new file mode 100644 index 0000000..0d939de Binary files /dev/null and b/docs/static/images/88x31/botao08.gif differ diff --git a/docs/static/images/88x31/brothings.gif b/docs/static/images/88x31/brothings.gif new file mode 100644 index 0000000..a774972 Binary files /dev/null and b/docs/static/images/88x31/brothings.gif differ diff --git a/docs/static/images/88x31/btn-silvercruiser.gif b/docs/static/images/88x31/btn-silvercruiser.gif new file mode 100644 index 0000000..54f2320 Binary files /dev/null and b/docs/static/images/88x31/btn-silvercruiser.gif differ diff --git a/docs/static/images/88x31/button.png b/docs/static/images/88x31/button.png new file mode 100644 index 0000000..83af9b2 Binary files /dev/null and b/docs/static/images/88x31/button.png differ diff --git a/docs/static/images/88x31/buttons_now.gif b/docs/static/images/88x31/buttons_now.gif new file mode 100644 index 0000000..7abaadd Binary files /dev/null and b/docs/static/images/88x31/buttons_now.gif differ diff --git a/docs/static/images/88x31/bvbstar.gif b/docs/static/images/88x31/bvbstar.gif new file mode 100644 index 0000000..5f7c7d9 Binary files /dev/null and b/docs/static/images/88x31/bvbstar.gif differ diff --git a/docs/static/images/88x31/bvwe.gif b/docs/static/images/88x31/bvwe.gif new file mode 100644 index 0000000..b98de4d Binary files /dev/null and b/docs/static/images/88x31/bvwe.gif differ diff --git a/docs/static/images/88x31/cakey.gif b/docs/static/images/88x31/cakey.gif new file mode 100644 index 0000000..32831ab Binary files /dev/null and b/docs/static/images/88x31/cakey.gif differ diff --git a/docs/static/images/88x31/caldera.gif b/docs/static/images/88x31/caldera.gif new file mode 100644 index 0000000..a4598ee Binary files /dev/null and b/docs/static/images/88x31/caldera.gif differ diff --git a/docs/static/images/88x31/cardsbutton.gif b/docs/static/images/88x31/cardsbutton.gif new file mode 100644 index 0000000..6aa2791 Binary files /dev/null and b/docs/static/images/88x31/cardsbutton.gif differ diff --git a/docs/static/images/88x31/catp0rtal.gif b/docs/static/images/88x31/catp0rtal.gif new file mode 100644 index 0000000..3678c51 Binary files /dev/null and b/docs/static/images/88x31/catp0rtal.gif differ diff --git a/docs/static/images/88x31/catscape2.gif b/docs/static/images/88x31/catscape2.gif new file mode 100644 index 0000000..61a3ab6 Binary files /dev/null and b/docs/static/images/88x31/catscape2.gif differ diff --git a/docs/static/images/88x31/catscape3.gif b/docs/static/images/88x31/catscape3.gif new file mode 100644 index 0000000..05bd59a Binary files /dev/null and b/docs/static/images/88x31/catscape3.gif differ diff --git a/docs/static/images/88x31/catt_banner.gif b/docs/static/images/88x31/catt_banner.gif new file mode 100644 index 0000000..4fd7883 Binary files /dev/null and b/docs/static/images/88x31/catt_banner.gif differ diff --git a/docs/static/images/88x31/cc-by-nc-sa.gif b/docs/static/images/88x31/cc-by-nc-sa.gif new file mode 100644 index 0000000..508f484 Binary files /dev/null and b/docs/static/images/88x31/cc-by-nc-sa.gif differ diff --git a/docs/static/images/88x31/cc-by-sa.gif b/docs/static/images/88x31/cc-by-sa.gif new file mode 100644 index 0000000..c43b365 Binary files /dev/null and b/docs/static/images/88x31/cc-by-sa.gif differ diff --git a/docs/static/images/88x31/cc-some.gif b/docs/static/images/88x31/cc-some.gif new file mode 100644 index 0000000..0860fa9 Binary files /dev/null and b/docs/static/images/88x31/cc-some.gif differ diff --git a/docs/static/images/88x31/cc-somerights.gif b/docs/static/images/88x31/cc-somerights.gif new file mode 100644 index 0000000..0c01840 Binary files /dev/null and b/docs/static/images/88x31/cc-somerights.gif differ diff --git a/docs/static/images/88x31/cc0.png b/docs/static/images/88x31/cc0.png new file mode 100644 index 0000000..1b710a0 Binary files /dev/null and b/docs/static/images/88x31/cc0.png differ diff --git a/docs/static/images/88x31/cd.gif b/docs/static/images/88x31/cd.gif new file mode 100644 index 0000000..e6d6048 Binary files /dev/null and b/docs/static/images/88x31/cd.gif differ diff --git a/docs/static/images/88x31/cheezit.gif b/docs/static/images/88x31/cheezit.gif new file mode 100644 index 0000000..3a90ba0 Binary files /dev/null and b/docs/static/images/88x31/cheezit.gif differ diff --git a/docs/static/images/88x31/chilliwebhosting.gif b/docs/static/images/88x31/chilliwebhosting.gif new file mode 100644 index 0000000..5dd4fa2 Binary files /dev/null and b/docs/static/images/88x31/chilliwebhosting.gif differ diff --git a/docs/static/images/88x31/chocomint.png b/docs/static/images/88x31/chocomint.png new file mode 100644 index 0000000..702a5cd Binary files /dev/null and b/docs/static/images/88x31/chocomint.png differ diff --git a/docs/static/images/88x31/chrome.gif b/docs/static/images/88x31/chrome.gif new file mode 100644 index 0000000..2090066 Binary files /dev/null and b/docs/static/images/88x31/chrome.gif differ diff --git a/docs/static/images/88x31/clickhere_blue.gif b/docs/static/images/88x31/clickhere_blue.gif new file mode 100644 index 0000000..481266d Binary files /dev/null and b/docs/static/images/88x31/clickhere_blue.gif differ diff --git a/docs/static/images/88x31/clickhere_red.gif b/docs/static/images/88x31/clickhere_red.gif new file mode 100644 index 0000000..0ad0512 Binary files /dev/null and b/docs/static/images/88x31/clickhere_red.gif differ diff --git a/docs/static/images/88x31/cocacola.gif b/docs/static/images/88x31/cocacola.gif new file mode 100644 index 0000000..964bf13 Binary files /dev/null and b/docs/static/images/88x31/cocacola.gif differ diff --git a/docs/static/images/88x31/coolacid.gif b/docs/static/images/88x31/coolacid.gif new file mode 100644 index 0000000..51e927e Binary files /dev/null and b/docs/static/images/88x31/coolacid.gif differ diff --git a/docs/static/images/88x31/corp.gif b/docs/static/images/88x31/corp.gif new file mode 100644 index 0000000..19b7739 Binary files /dev/null and b/docs/static/images/88x31/corp.gif differ diff --git a/docs/static/images/88x31/css.gif b/docs/static/images/88x31/css.gif new file mode 100644 index 0000000..be69d58 Binary files /dev/null and b/docs/static/images/88x31/css.gif differ diff --git a/docs/static/images/88x31/css2.gif b/docs/static/images/88x31/css2.gif new file mode 100644 index 0000000..8dcff0b Binary files /dev/null and b/docs/static/images/88x31/css2.gif differ diff --git a/docs/static/images/88x31/css3.gif b/docs/static/images/88x31/css3.gif new file mode 100644 index 0000000..8f9ef44 Binary files /dev/null and b/docs/static/images/88x31/css3.gif differ diff --git a/docs/static/images/88x31/cyberrot.gif b/docs/static/images/88x31/cyberrot.gif new file mode 100644 index 0000000..81a859a Binary files /dev/null and b/docs/static/images/88x31/cyberrot.gif differ diff --git a/docs/static/images/88x31/debian-powered.gif b/docs/static/images/88x31/debian-powered.gif new file mode 100644 index 0000000..92cbdf1 Binary files /dev/null and b/docs/static/images/88x31/debian-powered.gif differ diff --git a/docs/static/images/88x31/debian.gif b/docs/static/images/88x31/debian.gif new file mode 100644 index 0000000..eaf7001 Binary files /dev/null and b/docs/static/images/88x31/debian.gif differ diff --git a/docs/static/images/88x31/dumbasswebmasterahead.gif b/docs/static/images/88x31/dumbasswebmasterahead.gif new file mode 100644 index 0000000..52fb8ab Binary files /dev/null and b/docs/static/images/88x31/dumbasswebmasterahead.gif differ diff --git a/docs/static/images/88x31/eftpbutton.gif b/docs/static/images/88x31/eftpbutton.gif new file mode 100644 index 0000000..b875227 Binary files /dev/null and b/docs/static/images/88x31/eftpbutton.gif differ diff --git a/docs/static/images/88x31/ehbutton.gif b/docs/static/images/88x31/ehbutton.gif new file mode 100644 index 0000000..848d9c1 Binary files /dev/null and b/docs/static/images/88x31/ehbutton.gif differ diff --git a/docs/static/images/88x31/emacs.gif b/docs/static/images/88x31/emacs.gif new file mode 100644 index 0000000..495caf8 Binary files /dev/null and b/docs/static/images/88x31/emacs.gif differ diff --git a/docs/static/images/88x31/emacs2.gif b/docs/static/images/88x31/emacs2.gif new file mode 100644 index 0000000..2474856 Binary files /dev/null and b/docs/static/images/88x31/emacs2.gif differ diff --git a/docs/static/images/88x31/emacs3.gif b/docs/static/images/88x31/emacs3.gif new file mode 100644 index 0000000..c2356a9 Binary files /dev/null and b/docs/static/images/88x31/emacs3.gif differ diff --git a/docs/static/images/88x31/emacsnow.gif b/docs/static/images/88x31/emacsnow.gif new file mode 100644 index 0000000..e5fe9e2 Binary files /dev/null and b/docs/static/images/88x31/emacsnow.gif differ diff --git a/docs/static/images/88x31/email.gif b/docs/static/images/88x31/email.gif new file mode 100644 index 0000000..23425f3 Binary files /dev/null and b/docs/static/images/88x31/email.gif differ diff --git a/docs/static/images/88x31/facebook.gif b/docs/static/images/88x31/facebook.gif new file mode 100644 index 0000000..a7cf4cd Binary files /dev/null and b/docs/static/images/88x31/facebook.gif differ diff --git a/docs/static/images/88x31/feed.gif b/docs/static/images/88x31/feed.gif new file mode 100644 index 0000000..5a18e7e Binary files /dev/null and b/docs/static/images/88x31/feed.gif differ diff --git a/docs/static/images/88x31/ffmpeg.gif b/docs/static/images/88x31/ffmpeg.gif new file mode 100644 index 0000000..7125358 Binary files /dev/null and b/docs/static/images/88x31/ffmpeg.gif differ diff --git a/docs/static/images/88x31/fingerofgod.gif b/docs/static/images/88x31/fingerofgod.gif new file mode 100644 index 0000000..96110b9 Binary files /dev/null and b/docs/static/images/88x31/fingerofgod.gif differ diff --git a/docs/static/images/88x31/firefox2.gif b/docs/static/images/88x31/firefox2.gif new file mode 100644 index 0000000..14a24df Binary files /dev/null and b/docs/static/images/88x31/firefox2.gif differ diff --git a/docs/static/images/88x31/firefox3.gif b/docs/static/images/88x31/firefox3.gif new file mode 100644 index 0000000..80e7e85 Binary files /dev/null and b/docs/static/images/88x31/firefox3.gif differ diff --git a/docs/static/images/88x31/firefox4.gif b/docs/static/images/88x31/firefox4.gif new file mode 100644 index 0000000..94621d5 Binary files /dev/null and b/docs/static/images/88x31/firefox4.gif differ diff --git a/docs/static/images/88x31/firefoxget.gif b/docs/static/images/88x31/firefoxget.gif new file mode 100644 index 0000000..3cd754f Binary files /dev/null and b/docs/static/images/88x31/firefoxget.gif differ diff --git a/docs/static/images/88x31/firefoxnow.gif b/docs/static/images/88x31/firefoxnow.gif new file mode 100644 index 0000000..a4cd0bd Binary files /dev/null and b/docs/static/images/88x31/firefoxnow.gif differ diff --git a/docs/static/images/88x31/firen00bs.gif b/docs/static/images/88x31/firen00bs.gif new file mode 100644 index 0000000..e6445e5 Binary files /dev/null and b/docs/static/images/88x31/firen00bs.gif differ diff --git a/docs/static/images/88x31/flash_get_20010813.gif b/docs/static/images/88x31/flash_get_20010813.gif new file mode 100644 index 0000000..d0ea7bd Binary files /dev/null and b/docs/static/images/88x31/flash_get_20010813.gif differ diff --git a/docs/static/images/88x31/floppy.gif b/docs/static/images/88x31/floppy.gif new file mode 100644 index 0000000..c5dc9c5 Binary files /dev/null and b/docs/static/images/88x31/floppy.gif differ diff --git a/docs/static/images/88x31/folder.gif b/docs/static/images/88x31/folder.gif new file mode 100644 index 0000000..b2502e5 Binary files /dev/null and b/docs/static/images/88x31/folder.gif differ diff --git a/docs/static/images/88x31/fpbutton.png b/docs/static/images/88x31/fpbutton.png new file mode 100644 index 0000000..53ead68 Binary files /dev/null and b/docs/static/images/88x31/fpbutton.png differ diff --git a/docs/static/images/88x31/fspeech96.gif b/docs/static/images/88x31/fspeech96.gif new file mode 100644 index 0000000..b9628aa Binary files /dev/null and b/docs/static/images/88x31/fspeech96.gif differ diff --git a/static/images/88x31/speech.gif b/docs/static/images/88x31/fspeech96a.gif similarity index 59% rename from static/images/88x31/speech.gif rename to docs/static/images/88x31/fspeech96a.gif index f1fa905..5984b78 100644 Binary files a/static/images/88x31/speech.gif and b/docs/static/images/88x31/fspeech96a.gif differ diff --git a/docs/static/images/88x31/ftpxani.gif b/docs/static/images/88x31/ftpxani.gif new file mode 100644 index 0000000..4fd222a Binary files /dev/null and b/docs/static/images/88x31/ftpxani.gif differ diff --git a/docs/static/images/88x31/gb.gif b/docs/static/images/88x31/gb.gif new file mode 100644 index 0000000..d2b9001 Binary files /dev/null and b/docs/static/images/88x31/gb.gif differ diff --git a/docs/static/images/88x31/gba_now.png b/docs/static/images/88x31/gba_now.png new file mode 100644 index 0000000..938f4a9 Binary files /dev/null and b/docs/static/images/88x31/gba_now.png differ diff --git a/docs/static/images/88x31/get_a_computer.jpg b/docs/static/images/88x31/get_a_computer.jpg new file mode 100644 index 0000000..bc0c591 Binary files /dev/null and b/docs/static/images/88x31/get_a_computer.jpg differ diff --git a/docs/static/images/88x31/get_flashplayer_19981202.gif b/docs/static/images/88x31/get_flashplayer_19981202.gif new file mode 100644 index 0000000..4bd5fa9 Binary files /dev/null and b/docs/static/images/88x31/get_flashplayer_19981202.gif differ diff --git a/docs/static/images/88x31/get_flashplayer_88_31_20021015.gif b/docs/static/images/88x31/get_flashplayer_88_31_20021015.gif new file mode 100644 index 0000000..75cfd74 Binary files /dev/null and b/docs/static/images/88x31/get_flashplayer_88_31_20021015.gif differ diff --git a/docs/static/images/88x31/get_shock_player_20040607.gif b/docs/static/images/88x31/get_shock_player_20040607.gif new file mode 100644 index 0000000..a936233 Binary files /dev/null and b/docs/static/images/88x31/get_shock_player_20040607.gif differ diff --git a/docs/static/images/88x31/get_shock_player_20060706.gif b/docs/static/images/88x31/get_shock_player_20060706.gif new file mode 100644 index 0000000..75149ab Binary files /dev/null and b/docs/static/images/88x31/get_shock_player_20060706.gif differ diff --git a/docs/static/images/88x31/get_shockwave_grys.gif b/docs/static/images/88x31/get_shockwave_grys.gif new file mode 100644 index 0000000..665fd60 Binary files /dev/null and b/docs/static/images/88x31/get_shockwave_grys.gif differ diff --git a/docs/static/images/88x31/get_shockwave_player_20070913.gif b/docs/static/images/88x31/get_shockwave_player_20070913.gif new file mode 100644 index 0000000..3d50967 Binary files /dev/null and b/docs/static/images/88x31/get_shockwave_player_20070913.gif differ diff --git a/docs/static/images/88x31/get_wmp_20031005.gif b/docs/static/images/88x31/get_wmp_20031005.gif new file mode 100644 index 0000000..ef21397 Binary files /dev/null and b/docs/static/images/88x31/get_wmp_20031005.gif differ diff --git a/docs/static/images/88x31/getfirefox.gif b/docs/static/images/88x31/getfirefox.gif new file mode 100644 index 0000000..d82f741 Binary files /dev/null and b/docs/static/images/88x31/getfirefox.gif differ diff --git a/docs/static/images/88x31/gif b/docs/static/images/88x31/gif new file mode 100644 index 0000000..e1466be Binary files /dev/null and b/docs/static/images/88x31/gif differ diff --git a/docs/static/images/88x31/gladiators-88x31-2.gif b/docs/static/images/88x31/gladiators-88x31-2.gif new file mode 100644 index 0000000..c61b99b Binary files /dev/null and b/docs/static/images/88x31/gladiators-88x31-2.gif differ diff --git a/docs/static/images/88x31/gnu-linux.gif b/docs/static/images/88x31/gnu-linux.gif new file mode 100644 index 0000000..89e3562 Binary files /dev/null and b/docs/static/images/88x31/gnu-linux.gif differ diff --git a/docs/static/images/88x31/got_html.gif b/docs/static/images/88x31/got_html.gif new file mode 100644 index 0000000..f713730 Binary files /dev/null and b/docs/static/images/88x31/got_html.gif differ diff --git a/docs/static/images/88x31/gplv3.gif b/docs/static/images/88x31/gplv3.gif new file mode 100644 index 0000000..9dcf393 Binary files /dev/null and b/docs/static/images/88x31/gplv3.gif differ diff --git a/docs/static/images/88x31/hamexp.png b/docs/static/images/88x31/hamexp.png new file mode 100644 index 0000000..9c43881 Binary files /dev/null and b/docs/static/images/88x31/hamexp.png differ diff --git a/docs/static/images/88x31/happymix.gif b/docs/static/images/88x31/happymix.gif new file mode 100644 index 0000000..728613d Binary files /dev/null and b/docs/static/images/88x31/happymix.gif differ diff --git a/docs/static/images/88x31/iebad.gif b/docs/static/images/88x31/iebad.gif new file mode 100644 index 0000000..6c82660 Binary files /dev/null and b/docs/static/images/88x31/iebad.gif differ diff --git a/docs/static/images/88x31/iebarf.gif b/docs/static/images/88x31/iebarf.gif new file mode 100644 index 0000000..897af6f Binary files /dev/null and b/docs/static/images/88x31/iebarf.gif differ diff --git a/docs/static/images/88x31/ieborg.gif b/docs/static/images/88x31/ieborg.gif new file mode 100644 index 0000000..1571c77 Binary files /dev/null and b/docs/static/images/88x31/ieborg.gif differ diff --git a/docs/static/images/88x31/ieburnbtn.gif b/docs/static/images/88x31/ieburnbtn.gif new file mode 100644 index 0000000..266ccd2 Binary files /dev/null and b/docs/static/images/88x31/ieburnbtn.gif differ diff --git a/docs/static/images/88x31/iecrash.gif b/docs/static/images/88x31/iecrash.gif new file mode 100644 index 0000000..b4efd89 Binary files /dev/null and b/docs/static/images/88x31/iecrash.gif differ diff --git a/docs/static/images/88x31/iedie2.gif b/docs/static/images/88x31/iedie2.gif new file mode 100644 index 0000000..beb2678 Binary files /dev/null and b/docs/static/images/88x31/iedie2.gif differ diff --git a/docs/static/images/88x31/ieexpecter.gif b/docs/static/images/88x31/ieexpecter.gif new file mode 100644 index 0000000..d541dca Binary files /dev/null and b/docs/static/images/88x31/ieexpecter.gif differ diff --git a/docs/static/images/88x31/ieexplode.gif b/docs/static/images/88x31/ieexplode.gif new file mode 100644 index 0000000..e0a3a3d Binary files /dev/null and b/docs/static/images/88x31/ieexplode.gif differ diff --git a/docs/static/images/88x31/ieeyes.gif b/docs/static/images/88x31/ieeyes.gif new file mode 100644 index 0000000..f3c97b5 Binary files /dev/null and b/docs/static/images/88x31/ieeyes.gif differ diff --git a/docs/static/images/88x31/iefuck.gif b/docs/static/images/88x31/iefuck.gif new file mode 100644 index 0000000..d8a7880 Binary files /dev/null and b/docs/static/images/88x31/iefuck.gif differ diff --git a/docs/static/images/88x31/ieget_an.gif b/docs/static/images/88x31/ieget_an.gif new file mode 100644 index 0000000..0095c0f Binary files /dev/null and b/docs/static/images/88x31/ieget_an.gif differ diff --git a/docs/static/images/88x31/ieidiot.gif b/docs/static/images/88x31/ieidiot.gif new file mode 100644 index 0000000..beedabf Binary files /dev/null and b/docs/static/images/88x31/ieidiot.gif differ diff --git a/docs/static/images/88x31/ieisevil.gif b/docs/static/images/88x31/ieisevil.gif new file mode 100644 index 0000000..88a5fec Binary files /dev/null and b/docs/static/images/88x31/ieisevil.gif differ diff --git a/docs/static/images/88x31/iemickey.gif b/docs/static/images/88x31/iemickey.gif new file mode 100644 index 0000000..65c4781 Binary files /dev/null and b/docs/static/images/88x31/iemickey.gif differ diff --git a/docs/static/images/88x31/iemono.gif b/docs/static/images/88x31/iemono.gif new file mode 100644 index 0000000..59e5abe Binary files /dev/null and b/docs/static/images/88x31/iemono.gif differ diff --git a/docs/static/images/88x31/ieretards.gif b/docs/static/images/88x31/ieretards.gif new file mode 100644 index 0000000..d39158e Binary files /dev/null and b/docs/static/images/88x31/ieretards.gif differ diff --git a/docs/static/images/88x31/ieshit.gif b/docs/static/images/88x31/ieshit.gif new file mode 100644 index 0000000..83390a6 Binary files /dev/null and b/docs/static/images/88x31/ieshit.gif differ diff --git a/docs/static/images/88x31/iestop.gif b/docs/static/images/88x31/iestop.gif new file mode 100644 index 0000000..e604340 Binary files /dev/null and b/docs/static/images/88x31/iestop.gif differ diff --git a/docs/static/images/88x31/iglooftp.gif b/docs/static/images/88x31/iglooftp.gif new file mode 100644 index 0000000..0d25339 Binary files /dev/null and b/docs/static/images/88x31/iglooftp.gif differ diff --git a/docs/static/images/88x31/imissxp.gif b/docs/static/images/88x31/imissxp.gif new file mode 100644 index 0000000..77a7f1c Binary files /dev/null and b/docs/static/images/88x31/imissxp.gif differ diff --git a/docs/static/images/88x31/infernobutton2.gif b/docs/static/images/88x31/infernobutton2.gif new file mode 100644 index 0000000..d43dcf3 Binary files /dev/null and b/docs/static/images/88x31/infernobutton2.gif differ diff --git a/docs/static/images/88x31/internetarchive.gif b/docs/static/images/88x31/internetarchive.gif new file mode 100644 index 0000000..21ccfa3 Binary files /dev/null and b/docs/static/images/88x31/internetarchive.gif differ diff --git a/docs/static/images/88x31/java_green_button.gif b/docs/static/images/88x31/java_green_button.gif new file mode 100644 index 0000000..a5a44ad Binary files /dev/null and b/docs/static/images/88x31/java_green_button.gif differ diff --git a/docs/static/images/88x31/javanow.gif b/docs/static/images/88x31/javanow.gif new file mode 100644 index 0000000..0d8cfec Binary files /dev/null and b/docs/static/images/88x31/javanow.gif differ diff --git a/docs/static/images/88x31/javascriptfree.gif b/docs/static/images/88x31/javascriptfree.gif new file mode 100644 index 0000000..b83040c Binary files /dev/null and b/docs/static/images/88x31/javascriptfree.gif differ diff --git a/docs/static/images/88x31/jellyfin.gif b/docs/static/images/88x31/jellyfin.gif new file mode 100644 index 0000000..cc0ed75 Binary files /dev/null and b/docs/static/images/88x31/jellyfin.gif differ diff --git a/docs/static/images/88x31/ka.png b/docs/static/images/88x31/ka.png new file mode 100644 index 0000000..dd85f7f Binary files /dev/null and b/docs/static/images/88x31/ka.png differ diff --git a/docs/static/images/88x31/kaboom3.gif b/docs/static/images/88x31/kaboom3.gif new file mode 100644 index 0000000..47aaf6f Binary files /dev/null and b/docs/static/images/88x31/kaboom3.gif differ diff --git a/docs/static/images/88x31/kdenews.gif b/docs/static/images/88x31/kdenews.gif new file mode 100644 index 0000000..a9c8361 Binary files /dev/null and b/docs/static/images/88x31/kdenews.gif differ diff --git a/docs/static/images/88x31/kirbykevinson.png b/docs/static/images/88x31/kirbykevinson.png new file mode 100644 index 0000000..81b6b22 Binary files /dev/null and b/docs/static/images/88x31/kirbykevinson.png differ diff --git a/docs/static/images/88x31/kittyrun.gif b/docs/static/images/88x31/kittyrun.gif new file mode 100644 index 0000000..593e0bf Binary files /dev/null and b/docs/static/images/88x31/kittyrun.gif differ diff --git a/docs/static/images/88x31/kmfms-n.gif b/docs/static/images/88x31/kmfms-n.gif new file mode 100644 index 0000000..0fa80c4 Binary files /dev/null and b/docs/static/images/88x31/kmfms-n.gif differ diff --git a/docs/static/images/88x31/knbutton.gif b/docs/static/images/88x31/knbutton.gif new file mode 100644 index 0000000..a11c3a7 Binary files /dev/null and b/docs/static/images/88x31/knbutton.gif differ diff --git a/docs/static/images/88x31/konata.gif b/docs/static/images/88x31/konata.gif new file mode 100644 index 0000000..ac1e57c Binary files /dev/null and b/docs/static/images/88x31/konata.gif differ diff --git a/docs/static/images/88x31/li.png b/docs/static/images/88x31/li.png new file mode 100644 index 0000000..fb64ed2 Binary files /dev/null and b/docs/static/images/88x31/li.png differ diff --git a/docs/static/images/88x31/libreboot.gif b/docs/static/images/88x31/libreboot.gif new file mode 100644 index 0000000..65f2918 Binary files /dev/null and b/docs/static/images/88x31/libreboot.gif differ diff --git a/docs/static/images/88x31/linksbrow.gif b/docs/static/images/88x31/linksbrow.gif new file mode 100644 index 0000000..a4a65d1 Binary files /dev/null and b/docs/static/images/88x31/linksbrow.gif differ diff --git a/docs/static/images/88x31/linres.gif b/docs/static/images/88x31/linres.gif new file mode 100644 index 0000000..125f631 Binary files /dev/null and b/docs/static/images/88x31/linres.gif differ diff --git a/docs/static/images/88x31/linux-directory.gif b/docs/static/images/88x31/linux-directory.gif new file mode 100644 index 0000000..901bcf6 Binary files /dev/null and b/docs/static/images/88x31/linux-directory.gif differ diff --git a/docs/static/images/88x31/linux-p.gif b/docs/static/images/88x31/linux-p.gif new file mode 100644 index 0000000..32b2658 Binary files /dev/null and b/docs/static/images/88x31/linux-p.gif differ diff --git a/docs/static/images/88x31/linux.gif b/docs/static/images/88x31/linux.gif new file mode 100644 index 0000000..ba8241c Binary files /dev/null and b/docs/static/images/88x31/linux.gif differ diff --git a/docs/static/images/88x31/linuxberg.gif b/docs/static/images/88x31/linuxberg.gif new file mode 100644 index 0000000..ae5be81 Binary files /dev/null and b/docs/static/images/88x31/linuxberg.gif differ diff --git a/docs/static/images/88x31/linuxgames_button.gif b/docs/static/images/88x31/linuxgames_button.gif new file mode 100644 index 0000000..9533e72 Binary files /dev/null and b/docs/static/images/88x31/linuxgames_button.gif differ diff --git a/docs/static/images/88x31/linuxnow.jpg b/docs/static/images/88x31/linuxnow.jpg new file mode 100644 index 0000000..d776ca4 Binary files /dev/null and b/docs/static/images/88x31/linuxnow.jpg differ diff --git a/docs/static/images/88x31/linuxnow2.gif b/docs/static/images/88x31/linuxnow2.gif new file mode 100644 index 0000000..03b9285 Binary files /dev/null and b/docs/static/images/88x31/linuxnow2.gif differ diff --git a/docs/static/images/88x31/lynx-anim.gif b/docs/static/images/88x31/lynx-anim.gif new file mode 100644 index 0000000..c87a993 Binary files /dev/null and b/docs/static/images/88x31/lynx-anim.gif differ diff --git a/docs/static/images/88x31/lynx-lutz.gif b/docs/static/images/88x31/lynx-lutz.gif new file mode 100644 index 0000000..293a9ec Binary files /dev/null and b/docs/static/images/88x31/lynx-lutz.gif differ diff --git a/docs/static/images/88x31/mastodon_button_1.gif b/docs/static/images/88x31/mastodon_button_1.gif new file mode 100644 index 0000000..c154de8 Binary files /dev/null and b/docs/static/images/88x31/mastodon_button_1.gif differ diff --git a/docs/static/images/88x31/members_choice_19961109.gif b/docs/static/images/88x31/members_choice_19961109.gif new file mode 100644 index 0000000..a01a8e2 Binary files /dev/null and b/docs/static/images/88x31/members_choice_19961109.gif differ diff --git a/docs/static/images/88x31/mentos.gif b/docs/static/images/88x31/mentos.gif new file mode 100644 index 0000000..76f2247 Binary files /dev/null and b/docs/static/images/88x31/mentos.gif differ diff --git a/docs/static/images/88x31/merlinxp.gif b/docs/static/images/88x31/merlinxp.gif new file mode 100644 index 0000000..e5470a4 Binary files /dev/null and b/docs/static/images/88x31/merlinxp.gif differ diff --git a/docs/static/images/88x31/mirc.gif b/docs/static/images/88x31/mirc.gif new file mode 100644 index 0000000..356b5db Binary files /dev/null and b/docs/static/images/88x31/mirc.gif differ diff --git a/docs/static/images/88x31/mirc50.gif b/docs/static/images/88x31/mirc50.gif new file mode 100644 index 0000000..38daaf5 Binary files /dev/null and b/docs/static/images/88x31/mirc50.gif differ diff --git a/docs/static/images/88x31/mirc53.gif b/docs/static/images/88x31/mirc53.gif new file mode 100644 index 0000000..1967efd Binary files /dev/null and b/docs/static/images/88x31/mirc53.gif differ diff --git a/docs/static/images/88x31/mircnet.gif b/docs/static/images/88x31/mircnet.gif new file mode 100644 index 0000000..9de854b Binary files /dev/null and b/docs/static/images/88x31/mircnet.gif differ diff --git a/docs/static/images/88x31/mircnow2.gif b/docs/static/images/88x31/mircnow2.gif new file mode 100644 index 0000000..c379430 Binary files /dev/null and b/docs/static/images/88x31/mircnow2.gif differ diff --git a/docs/static/images/88x31/mircnow56.gif b/docs/static/images/88x31/mircnow56.gif new file mode 100644 index 0000000..7369340 Binary files /dev/null and b/docs/static/images/88x31/mircnow56.gif differ diff --git a/docs/static/images/88x31/mircnow_002.gif b/docs/static/images/88x31/mircnow_002.gif new file mode 100644 index 0000000..8fec6cd Binary files /dev/null and b/docs/static/images/88x31/mircnow_002.gif differ diff --git a/docs/static/images/88x31/mousemade.gif b/docs/static/images/88x31/mousemade.gif new file mode 100644 index 0000000..bc5d7fe Binary files /dev/null and b/docs/static/images/88x31/mousemade.gif differ diff --git a/docs/static/images/88x31/ms-iex.gif b/docs/static/images/88x31/ms-iex.gif new file mode 100644 index 0000000..0a0dd71 Binary files /dev/null and b/docs/static/images/88x31/ms-iex.gif differ diff --git a/docs/static/images/88x31/mwm_dir_88x31_20000815.gif b/docs/static/images/88x31/mwm_dir_88x31_20000815.gif new file mode 100644 index 0000000..aaf783c Binary files /dev/null and b/docs/static/images/88x31/mwm_dir_88x31_20000815.gif differ diff --git a/docs/static/images/88x31/mwm_director_120_40_20021015.gif b/docs/static/images/88x31/mwm_director_120_40_20021015.gif new file mode 100644 index 0000000..8d32fca Binary files /dev/null and b/docs/static/images/88x31/mwm_director_120_40_20021015.gif differ diff --git a/docs/static/images/88x31/mwm_dirmw_120_40_20030404.gif b/docs/static/images/88x31/mwm_dirmw_120_40_20030404.gif new file mode 100644 index 0000000..6560a87 Binary files /dev/null and b/docs/static/images/88x31/mwm_dirmw_120_40_20030404.gif differ diff --git a/docs/static/images/88x31/mwm_dirmw_88_31_20061117.gif b/docs/static/images/88x31/mwm_dirmw_88_31_20061117.gif new file mode 100644 index 0000000..7ad029c Binary files /dev/null and b/docs/static/images/88x31/mwm_dirmw_88_31_20061117.gif differ diff --git a/docs/static/images/88x31/mwm_dw_88x31_20000815.gif b/docs/static/images/88x31/mwm_dw_88x31_20000815.gif new file mode 100644 index 0000000..21c9560 Binary files /dev/null and b/docs/static/images/88x31/mwm_dw_88x31_20000815.gif differ diff --git a/docs/static/images/88x31/mwm_dwmx_120_40_20030404.gif b/docs/static/images/88x31/mwm_dwmx_120_40_20030404.gif new file mode 100644 index 0000000..20a3b19 Binary files /dev/null and b/docs/static/images/88x31/mwm_dwmx_120_40_20030404.gif differ diff --git a/docs/static/images/88x31/mwm_dwmx_88_31_20061117.gif b/docs/static/images/88x31/mwm_dwmx_88_31_20061117.gif new file mode 100644 index 0000000..60135ba Binary files /dev/null and b/docs/static/images/88x31/mwm_dwmx_88_31_20061117.gif differ diff --git a/docs/static/images/88x31/mwm_fla_88x31_20000815.gif b/docs/static/images/88x31/mwm_fla_88x31_20000815.gif new file mode 100644 index 0000000..ce87748 Binary files /dev/null and b/docs/static/images/88x31/mwm_fla_88x31_20000815.gif differ diff --git a/docs/static/images/88x31/mwm_flmx_120_40_20030404.gif b/docs/static/images/88x31/mwm_flmx_120_40_20030404.gif new file mode 100644 index 0000000..0479209 Binary files /dev/null and b/docs/static/images/88x31/mwm_flmx_120_40_20030404.gif differ diff --git a/docs/static/images/88x31/mwm_fw_88x31_20000815.gif b/docs/static/images/88x31/mwm_fw_88x31_20000815.gif new file mode 100644 index 0000000..afbbdc7 Binary files /dev/null and b/docs/static/images/88x31/mwm_fw_88x31_20000815.gif differ diff --git a/docs/static/images/88x31/mwm_fwmx_120_40_20030404.gif b/docs/static/images/88x31/mwm_fwmx_120_40_20030404.gif new file mode 100644 index 0000000..d14dfe8 Binary files /dev/null and b/docs/static/images/88x31/mwm_fwmx_120_40_20030404.gif differ diff --git a/docs/static/images/88x31/mwm_fwmx_88_31_20061117.gif b/docs/static/images/88x31/mwm_fwmx_88_31_20061117.gif new file mode 100644 index 0000000..ac0c73a Binary files /dev/null and b/docs/static/images/88x31/mwm_fwmx_88_31_20061117.gif differ diff --git a/docs/static/images/88x31/mymusic.gif b/docs/static/images/88x31/mymusic.gif new file mode 100644 index 0000000..3d50cd9 Binary files /dev/null and b/docs/static/images/88x31/mymusic.gif differ diff --git a/docs/static/images/88x31/myspace.gif b/docs/static/images/88x31/myspace.gif new file mode 100644 index 0000000..8cc1460 Binary files /dev/null and b/docs/static/images/88x31/myspace.gif differ diff --git a/docs/static/images/88x31/mysql-88x31-bow.gif b/docs/static/images/88x31/mysql-88x31-bow.gif new file mode 100644 index 0000000..801e8f7 Binary files /dev/null and b/docs/static/images/88x31/mysql-88x31-bow.gif differ diff --git a/docs/static/images/88x31/mysql-88x31-wob.gif b/docs/static/images/88x31/mysql-88x31-wob.gif new file mode 100644 index 0000000..cd3544c Binary files /dev/null and b/docs/static/images/88x31/mysql-88x31-wob.gif differ diff --git a/docs/static/images/88x31/mysql-88x31.gif b/docs/static/images/88x31/mysql-88x31.gif new file mode 100644 index 0000000..6beda36 Binary files /dev/null and b/docs/static/images/88x31/mysql-88x31.gif differ diff --git a/docs/static/images/88x31/mysql4.gif b/docs/static/images/88x31/mysql4.gif new file mode 100644 index 0000000..34e074b Binary files /dev/null and b/docs/static/images/88x31/mysql4.gif differ diff --git a/docs/static/images/88x31/mysql5.gif b/docs/static/images/88x31/mysql5.gif new file mode 100644 index 0000000..f78b8a1 Binary files /dev/null and b/docs/static/images/88x31/mysql5.gif differ diff --git a/docs/static/images/88x31/mysql_88x31.gif b/docs/static/images/88x31/mysql_88x31.gif new file mode 100644 index 0000000..cac153d Binary files /dev/null and b/docs/static/images/88x31/mysql_88x31.gif differ diff --git a/docs/static/images/88x31/mysqla.gif b/docs/static/images/88x31/mysqla.gif new file mode 100644 index 0000000..cfd3e1c Binary files /dev/null and b/docs/static/images/88x31/mysqla.gif differ diff --git a/docs/static/images/88x31/n64.gif b/docs/static/images/88x31/n64.gif new file mode 100644 index 0000000..bcd3645 Binary files /dev/null and b/docs/static/images/88x31/n64.gif differ diff --git a/docs/static/images/88x31/nailbutt.gif b/docs/static/images/88x31/nailbutt.gif new file mode 100644 index 0000000..e74948f Binary files /dev/null and b/docs/static/images/88x31/nailbutt.gif differ diff --git a/docs/static/images/88x31/namcomuseum.gif b/docs/static/images/88x31/namcomuseum.gif new file mode 100644 index 0000000..2f81088 Binary files /dev/null and b/docs/static/images/88x31/namcomuseum.gif differ diff --git a/docs/static/images/88x31/nano.gif b/docs/static/images/88x31/nano.gif new file mode 100644 index 0000000..d3e1025 Binary files /dev/null and b/docs/static/images/88x31/nano.gif differ diff --git a/docs/static/images/88x31/nano2.gif b/docs/static/images/88x31/nano2.gif new file mode 100644 index 0000000..079c476 Binary files /dev/null and b/docs/static/images/88x31/nano2.gif differ diff --git a/docs/static/images/88x31/nanoarrow.gif b/docs/static/images/88x31/nanoarrow.gif new file mode 100644 index 0000000..d6c3dc3 Binary files /dev/null and b/docs/static/images/88x31/nanoarrow.gif differ diff --git a/docs/static/images/88x31/navidrome.gif b/docs/static/images/88x31/navidrome.gif new file mode 100644 index 0000000..b95f070 Binary files /dev/null and b/docs/static/images/88x31/navidrome.gif differ diff --git a/docs/static/images/88x31/nclinux.gif b/docs/static/images/88x31/nclinux.gif new file mode 100644 index 0000000..adfd866 Binary files /dev/null and b/docs/static/images/88x31/nclinux.gif differ diff --git a/docs/static/images/88x31/net_escape.gif b/docs/static/images/88x31/net_escape.gif new file mode 100644 index 0000000..8597cd0 Binary files /dev/null and b/docs/static/images/88x31/net_escape.gif differ diff --git a/docs/static/images/88x31/netbeans_download_88x31.gif b/docs/static/images/88x31/netbeans_download_88x31.gif new file mode 100644 index 0000000..9c892d0 Binary files /dev/null and b/docs/static/images/88x31/netbeans_download_88x31.gif differ diff --git a/docs/static/images/88x31/netbsd.gif b/docs/static/images/88x31/netbsd.gif new file mode 100644 index 0000000..1f8cf8e Binary files /dev/null and b/docs/static/images/88x31/netbsd.gif differ diff --git a/docs/static/images/88x31/netbsd2.gif b/docs/static/images/88x31/netbsd2.gif new file mode 100644 index 0000000..d27bfe7 Binary files /dev/null and b/docs/static/images/88x31/netbsd2.gif differ diff --git a/docs/static/images/88x31/netscape6.gif b/docs/static/images/88x31/netscape6.gif new file mode 100644 index 0000000..ff768aa Binary files /dev/null and b/docs/static/images/88x31/netscape6.gif differ diff --git a/docs/static/images/88x31/netscape_cd.gif b/docs/static/images/88x31/netscape_cd.gif new file mode 100644 index 0000000..54f3b93 Binary files /dev/null and b/docs/static/images/88x31/netscape_cd.gif differ diff --git a/docs/static/images/88x31/netscape_now01.gif b/docs/static/images/88x31/netscape_now01.gif new file mode 100644 index 0000000..853d098 Binary files /dev/null and b/docs/static/images/88x31/netscape_now01.gif differ diff --git a/docs/static/images/88x31/netscapecd.gif b/docs/static/images/88x31/netscapecd.gif new file mode 100644 index 0000000..29dd296 Binary files /dev/null and b/docs/static/images/88x31/netscapecd.gif differ diff --git a/docs/static/images/88x31/newbuttonone.gif b/docs/static/images/88x31/newbuttonone.gif new file mode 100644 index 0000000..95008f7 Binary files /dev/null and b/docs/static/images/88x31/newbuttonone.gif differ diff --git a/docs/static/images/88x31/newbuttontwo.gif b/docs/static/images/88x31/newbuttontwo.gif new file mode 100644 index 0000000..1365cab Binary files /dev/null and b/docs/static/images/88x31/newbuttontwo.gif differ diff --git a/docs/static/images/88x31/newgame.png b/docs/static/images/88x31/newgame.png new file mode 100644 index 0000000..8336562 Binary files /dev/null and b/docs/static/images/88x31/newgame.png differ diff --git a/docs/static/images/88x31/newlambda.gif b/docs/static/images/88x31/newlambda.gif new file mode 100644 index 0000000..f0a82dc Binary files /dev/null and b/docs/static/images/88x31/newlambda.gif differ diff --git a/docs/static/images/88x31/nextcloud.gif b/docs/static/images/88x31/nextcloud.gif new file mode 100644 index 0000000..df5fef3 Binary files /dev/null and b/docs/static/images/88x31/nextcloud.gif differ diff --git a/docs/static/images/88x31/nokia64.gif b/docs/static/images/88x31/nokia64.gif new file mode 100644 index 0000000..f3e873f Binary files /dev/null and b/docs/static/images/88x31/nokia64.gif differ diff --git a/docs/static/images/88x31/notebook.gif b/docs/static/images/88x31/notebook.gif new file mode 100644 index 0000000..6ea3c87 Binary files /dev/null and b/docs/static/images/88x31/notebook.gif differ diff --git a/docs/static/images/88x31/notepad-logo3.gif b/docs/static/images/88x31/notepad-logo3.gif new file mode 100644 index 0000000..08cec6b Binary files /dev/null and b/docs/static/images/88x31/notepad-logo3.gif differ diff --git a/docs/static/images/88x31/notepad3.gif b/docs/static/images/88x31/notepad3.gif new file mode 100644 index 0000000..6a64d11 Binary files /dev/null and b/docs/static/images/88x31/notepad3.gif differ diff --git a/docs/static/images/88x31/one.gif b/docs/static/images/88x31/one.gif new file mode 100644 index 0000000..d659e6d Binary files /dev/null and b/docs/static/images/88x31/one.gif differ diff --git a/docs/static/images/88x31/openeye.gif b/docs/static/images/88x31/openeye.gif new file mode 100644 index 0000000..6924012 Binary files /dev/null and b/docs/static/images/88x31/openeye.gif differ diff --git a/docs/static/images/88x31/openeyes.gif b/docs/static/images/88x31/openeyes.gif new file mode 100644 index 0000000..1a5a142 Binary files /dev/null and b/docs/static/images/88x31/openeyes.gif differ diff --git a/docs/static/images/88x31/opengl.gif b/docs/static/images/88x31/opengl.gif new file mode 100644 index 0000000..bb96801 Binary files /dev/null and b/docs/static/images/88x31/opengl.gif differ diff --git a/docs/static/images/88x31/opennet.gif b/docs/static/images/88x31/opennet.gif new file mode 100644 index 0000000..4d3589c Binary files /dev/null and b/docs/static/images/88x31/opennet.gif differ diff --git a/docs/static/images/88x31/openwall.gif b/docs/static/images/88x31/openwall.gif new file mode 100644 index 0000000..c9f946d Binary files /dev/null and b/docs/static/images/88x31/openwall.gif differ diff --git a/docs/static/images/88x31/ostan.gif b/docs/static/images/88x31/ostan.gif new file mode 100644 index 0000000..cff1a6e Binary files /dev/null and b/docs/static/images/88x31/ostan.gif differ diff --git a/docs/static/images/88x31/otaking.png b/docs/static/images/88x31/otaking.png new file mode 100644 index 0000000..88405f9 Binary files /dev/null and b/docs/static/images/88x31/otaking.png differ diff --git a/docs/static/images/88x31/otaku.gif b/docs/static/images/88x31/otaku.gif new file mode 100644 index 0000000..0f60a9e Binary files /dev/null and b/docs/static/images/88x31/otaku.gif differ diff --git a/docs/static/images/88x31/parental.png b/docs/static/images/88x31/parental.png new file mode 100644 index 0000000..ba89dab Binary files /dev/null and b/docs/static/images/88x31/parental.png differ diff --git a/docs/static/images/88x31/penguins.gif b/docs/static/images/88x31/penguins.gif new file mode 100644 index 0000000..ff5b112 Binary files /dev/null and b/docs/static/images/88x31/penguins.gif differ diff --git a/docs/static/images/88x31/petzcape.gif b/docs/static/images/88x31/petzcape.gif new file mode 100644 index 0000000..43d3418 Binary files /dev/null and b/docs/static/images/88x31/petzcape.gif differ diff --git a/docs/static/images/88x31/pgn.gif b/docs/static/images/88x31/pgn.gif new file mode 100644 index 0000000..93d4a9e Binary files /dev/null and b/docs/static/images/88x31/pgn.gif differ diff --git a/docs/static/images/88x31/piracy.png b/docs/static/images/88x31/piracy.png new file mode 100644 index 0000000..fd6fe15 Binary files /dev/null and b/docs/static/images/88x31/piracy.png differ diff --git a/docs/static/images/88x31/plasticlove.gif b/docs/static/images/88x31/plasticlove.gif new file mode 100644 index 0000000..3f23dcc Binary files /dev/null and b/docs/static/images/88x31/plasticlove.gif differ diff --git a/docs/static/images/88x31/pngbar.gif b/docs/static/images/88x31/pngbar.gif new file mode 100644 index 0000000..a9d2f92 Binary files /dev/null and b/docs/static/images/88x31/pngbar.gif differ diff --git a/docs/static/images/88x31/pngnow.png b/docs/static/images/88x31/pngnow.png new file mode 100644 index 0000000..5375f8e Binary files /dev/null and b/docs/static/images/88x31/pngnow.png differ diff --git a/docs/static/images/88x31/poetryrenaissance.png b/docs/static/images/88x31/poetryrenaissance.png new file mode 100644 index 0000000..5a4c501 Binary files /dev/null and b/docs/static/images/88x31/poetryrenaissance.png differ diff --git a/docs/static/images/88x31/power-button_20000304.gif b/docs/static/images/88x31/power-button_20000304.gif new file mode 100644 index 0000000..cd41141 Binary files /dev/null and b/docs/static/images/88x31/power-button_20000304.gif differ diff --git a/docs/static/images/88x31/powered-by-debian.gif b/docs/static/images/88x31/powered-by-debian.gif new file mode 100644 index 0000000..1f617c8 Binary files /dev/null and b/docs/static/images/88x31/powered-by-debian.gif differ diff --git a/docs/static/images/88x31/powered-cpp.gif b/docs/static/images/88x31/powered-cpp.gif new file mode 100644 index 0000000..6b8dddd Binary files /dev/null and b/docs/static/images/88x31/powered-cpp.gif differ diff --git a/docs/static/images/88x31/proud_of_my_son.gif b/docs/static/images/88x31/proud_of_my_son.gif new file mode 100644 index 0000000..25fe2ee Binary files /dev/null and b/docs/static/images/88x31/proud_of_my_son.gif differ diff --git a/docs/static/images/88x31/publicdomain.gif b/docs/static/images/88x31/publicdomain.gif new file mode 100644 index 0000000..0cc5528 Binary files /dev/null and b/docs/static/images/88x31/publicdomain.gif differ diff --git a/docs/static/images/88x31/publicdomain2.png b/docs/static/images/88x31/publicdomain2.png new file mode 100644 index 0000000..c078808 Binary files /dev/null and b/docs/static/images/88x31/publicdomain2.png differ diff --git a/docs/static/images/88x31/pwsuse.gif b/docs/static/images/88x31/pwsuse.gif new file mode 100644 index 0000000..12b76e1 Binary files /dev/null and b/docs/static/images/88x31/pwsuse.gif differ diff --git a/docs/static/images/88x31/qnow7.gif b/docs/static/images/88x31/qnow7.gif new file mode 100644 index 0000000..f4acf30 Binary files /dev/null and b/docs/static/images/88x31/qnow7.gif differ diff --git a/docs/static/images/88x31/quake-button1.gif b/docs/static/images/88x31/quake-button1.gif new file mode 100644 index 0000000..3f49e1c Binary files /dev/null and b/docs/static/images/88x31/quake-button1.gif differ diff --git a/docs/static/images/88x31/quake-button2.gif b/docs/static/images/88x31/quake-button2.gif new file mode 100644 index 0000000..569f495 Binary files /dev/null and b/docs/static/images/88x31/quake-button2.gif differ diff --git a/docs/static/images/88x31/quake2levels.gif b/docs/static/images/88x31/quake2levels.gif new file mode 100644 index 0000000..7079fc9 Binary files /dev/null and b/docs/static/images/88x31/quake2levels.gif differ diff --git a/docs/static/images/88x31/r03.gif b/docs/static/images/88x31/r03.gif new file mode 100644 index 0000000..7609a17 Binary files /dev/null and b/docs/static/images/88x31/r03.gif differ diff --git a/docs/static/images/88x31/rainbow_bev.gif b/docs/static/images/88x31/rainbow_bev.gif new file mode 100644 index 0000000..5ec7386 Binary files /dev/null and b/docs/static/images/88x31/rainbow_bev.gif differ diff --git a/docs/static/images/88x31/rainbowrain.gif b/docs/static/images/88x31/rainbowrain.gif new file mode 100644 index 0000000..1f50feb Binary files /dev/null and b/docs/static/images/88x31/rainbowrain.gif differ diff --git a/docs/static/images/88x31/ralseismokingadart.gif b/docs/static/images/88x31/ralseismokingadart.gif new file mode 100644 index 0000000..9e3d13f Binary files /dev/null and b/docs/static/images/88x31/ralseismokingadart.gif differ diff --git a/docs/static/images/88x31/rararchiverlogo.gif b/docs/static/images/88x31/rararchiverlogo.gif new file mode 100644 index 0000000..16c2b8e Binary files /dev/null and b/docs/static/images/88x31/rararchiverlogo.gif differ diff --git a/docs/static/images/88x31/rave.gif b/docs/static/images/88x31/rave.gif new file mode 100644 index 0000000..bc9b736 Binary files /dev/null and b/docs/static/images/88x31/rave.gif differ diff --git a/docs/static/images/88x31/recommend.gif b/docs/static/images/88x31/recommend.gif new file mode 100644 index 0000000..3b06631 Binary files /dev/null and b/docs/static/images/88x31/recommend.gif differ diff --git a/docs/static/images/88x31/redhat.gif b/docs/static/images/88x31/redhat.gif new file mode 100644 index 0000000..562cf93 Binary files /dev/null and b/docs/static/images/88x31/redhat.gif differ diff --git a/docs/static/images/88x31/redhat1.gif b/docs/static/images/88x31/redhat1.gif new file mode 100644 index 0000000..4dc69f6 Binary files /dev/null and b/docs/static/images/88x31/redhat1.gif differ diff --git a/docs/static/images/88x31/redhat2.gif b/docs/static/images/88x31/redhat2.gif new file mode 100644 index 0000000..78f4513 Binary files /dev/null and b/docs/static/images/88x31/redhat2.gif differ diff --git a/docs/static/images/88x31/reshirii.gif b/docs/static/images/88x31/reshirii.gif new file mode 100644 index 0000000..8cb0971 Binary files /dev/null and b/docs/static/images/88x31/reshirii.gif differ diff --git a/docs/static/images/88x31/rlinux.gif b/docs/static/images/88x31/rlinux.gif new file mode 100644 index 0000000..6146825 Binary files /dev/null and b/docs/static/images/88x31/rlinux.gif differ diff --git a/docs/static/images/88x31/rosydolly.gif b/docs/static/images/88x31/rosydolly.gif new file mode 100644 index 0000000..b214358 Binary files /dev/null and b/docs/static/images/88x31/rosydolly.gif differ diff --git a/docs/static/images/88x31/rresbb.gif b/docs/static/images/88x31/rresbb.gif new file mode 100644 index 0000000..a78b9c9 Binary files /dev/null and b/docs/static/images/88x31/rresbb.gif differ diff --git a/docs/static/images/88x31/rss-button.gif b/docs/static/images/88x31/rss-button.gif new file mode 100644 index 0000000..6d20802 Binary files /dev/null and b/docs/static/images/88x31/rss-button.gif differ diff --git a/docs/static/images/88x31/rukia.gif b/docs/static/images/88x31/rukia.gif new file mode 100644 index 0000000..8596c3d Binary files /dev/null and b/docs/static/images/88x31/rukia.gif differ diff --git a/docs/static/images/88x31/sarcasm.gif b/docs/static/images/88x31/sarcasm.gif new file mode 100644 index 0000000..7633b58 Binary files /dev/null and b/docs/static/images/88x31/sarcasm.gif differ diff --git a/docs/static/images/88x31/saturnscape.jpg b/docs/static/images/88x31/saturnscape.jpg new file mode 100644 index 0000000..9f2546d Binary files /dev/null and b/docs/static/images/88x31/saturnscape.jpg differ diff --git a/docs/static/images/88x31/scape.gif b/docs/static/images/88x31/scape.gif new file mode 100644 index 0000000..13ea643 Binary files /dev/null and b/docs/static/images/88x31/scape.gif differ diff --git a/docs/static/images/88x31/schoolsucks.gif b/docs/static/images/88x31/schoolsucks.gif new file mode 100644 index 0000000..1bfc2cf Binary files /dev/null and b/docs/static/images/88x31/schoolsucks.gif differ diff --git a/docs/static/images/88x31/screw.gif b/docs/static/images/88x31/screw.gif new file mode 100644 index 0000000..5c1044e Binary files /dev/null and b/docs/static/images/88x31/screw.gif differ diff --git a/docs/static/images/88x31/shockwave.gif b/docs/static/images/88x31/shockwave.gif new file mode 100644 index 0000000..e010006 Binary files /dev/null and b/docs/static/images/88x31/shockwave.gif differ diff --git a/docs/static/images/88x31/shockwave2.gif b/docs/static/images/88x31/shockwave2.gif new file mode 100644 index 0000000..32dc56c Binary files /dev/null and b/docs/static/images/88x31/shockwave2.gif differ diff --git a/docs/static/images/88x31/sky-manta.gif b/docs/static/images/88x31/sky-manta.gif new file mode 100644 index 0000000..e0e3cbd Binary files /dev/null and b/docs/static/images/88x31/sky-manta.gif differ diff --git a/docs/static/images/88x31/skybutton.gif b/docs/static/images/88x31/skybutton.gif new file mode 100644 index 0000000..7322c6b Binary files /dev/null and b/docs/static/images/88x31/skybutton.gif differ diff --git a/docs/static/images/88x31/slimesnow.gif b/docs/static/images/88x31/slimesnow.gif new file mode 100644 index 0000000..12d4d7c Binary files /dev/null and b/docs/static/images/88x31/slimesnow.gif differ diff --git a/docs/static/images/88x31/someplace-else.png b/docs/static/images/88x31/someplace-else.png new file mode 100644 index 0000000..4608cd8 Binary files /dev/null and b/docs/static/images/88x31/someplace-else.png differ diff --git a/docs/static/images/88x31/someplace-else_2.png b/docs/static/images/88x31/someplace-else_2.png new file mode 100644 index 0000000..e59e082 Binary files /dev/null and b/docs/static/images/88x31/someplace-else_2.png differ diff --git a/docs/static/images/88x31/sonc.gif b/docs/static/images/88x31/sonc.gif new file mode 100644 index 0000000..007af69 Binary files /dev/null and b/docs/static/images/88x31/sonc.gif differ diff --git a/static/images/88x31/now.gif b/docs/static/images/88x31/sonic2000now.gif similarity index 100% rename from static/images/88x31/now.gif rename to docs/static/images/88x31/sonic2000now.gif diff --git a/docs/static/images/88x31/sonicstadium.gif b/docs/static/images/88x31/sonicstadium.gif new file mode 100644 index 0000000..e258b1a Binary files /dev/null and b/docs/static/images/88x31/sonicstadium.gif differ diff --git a/docs/static/images/88x31/sont.gif b/docs/static/images/88x31/sont.gif new file mode 100644 index 0000000..008798a Binary files /dev/null and b/docs/static/images/88x31/sont.gif differ diff --git a/docs/static/images/88x31/soulseek.gif b/docs/static/images/88x31/soulseek.gif new file mode 100644 index 0000000..c53d0fa Binary files /dev/null and b/docs/static/images/88x31/soulseek.gif differ diff --git a/docs/static/images/88x31/spdy-now.gif b/docs/static/images/88x31/spdy-now.gif new file mode 100644 index 0000000..628e7eb Binary files /dev/null and b/docs/static/images/88x31/spdy-now.gif differ diff --git a/docs/static/images/88x31/speedtrap.gif b/docs/static/images/88x31/speedtrap.gif new file mode 100644 index 0000000..26158d5 Binary files /dev/null and b/docs/static/images/88x31/speedtrap.gif differ diff --git a/docs/static/images/88x31/spicebutton.gif b/docs/static/images/88x31/spicebutton.gif new file mode 100644 index 0000000..83abcbe Binary files /dev/null and b/docs/static/images/88x31/spicebutton.gif differ diff --git a/docs/static/images/88x31/star-textless.gif b/docs/static/images/88x31/star-textless.gif new file mode 100644 index 0000000..d6a894a Binary files /dev/null and b/docs/static/images/88x31/star-textless.gif differ diff --git a/docs/static/images/88x31/startpage_button.gif b/docs/static/images/88x31/startpage_button.gif new file mode 100644 index 0000000..3eee660 Binary files /dev/null and b/docs/static/images/88x31/startpage_button.gif differ diff --git a/docs/static/images/88x31/stop.gif b/docs/static/images/88x31/stop.gif new file mode 100644 index 0000000..d382a27 Binary files /dev/null and b/docs/static/images/88x31/stop.gif differ diff --git a/docs/static/images/88x31/sun.gif b/docs/static/images/88x31/sun.gif new file mode 100644 index 0000000..674e32a Binary files /dev/null and b/docs/static/images/88x31/sun.gif differ diff --git a/docs/static/images/88x31/telnet.gif b/docs/static/images/88x31/telnet.gif new file mode 100644 index 0000000..bf4c320 Binary files /dev/null and b/docs/static/images/88x31/telnet.gif differ diff --git a/docs/static/images/88x31/tenkuma.gif b/docs/static/images/88x31/tenkuma.gif new file mode 100644 index 0000000..2cb4d0c Binary files /dev/null and b/docs/static/images/88x31/tenkuma.gif differ diff --git a/docs/static/images/88x31/terrorpuppe.gif b/docs/static/images/88x31/terrorpuppe.gif new file mode 100644 index 0000000..b59c27e Binary files /dev/null and b/docs/static/images/88x31/terrorpuppe.gif differ diff --git a/docs/static/images/88x31/tetban.gif b/docs/static/images/88x31/tetban.gif new file mode 100644 index 0000000..3273718 Binary files /dev/null and b/docs/static/images/88x31/tetban.gif differ diff --git a/docs/static/images/88x31/thatwhitehand.png b/docs/static/images/88x31/thatwhitehand.png new file mode 100644 index 0000000..6fa7355 Binary files /dev/null and b/docs/static/images/88x31/thatwhitehand.png differ diff --git a/docs/static/images/88x31/therealman.png b/docs/static/images/88x31/therealman.png new file mode 100644 index 0000000..771da5e Binary files /dev/null and b/docs/static/images/88x31/therealman.png differ diff --git a/docs/static/images/88x31/tohell.gif b/docs/static/images/88x31/tohell.gif new file mode 100644 index 0000000..bc68c6f Binary files /dev/null and b/docs/static/images/88x31/tohell.gif differ diff --git a/docs/static/images/88x31/tumblr_ou69gmb2xM1wvu485o9_100.gif b/docs/static/images/88x31/tumblr_ou69gmb2xM1wvu485o9_100.gif new file mode 100644 index 0000000..27c8f78 Binary files /dev/null and b/docs/static/images/88x31/tumblr_ou69gmb2xM1wvu485o9_100.gif differ diff --git a/docs/static/images/88x31/tumblr_ou69s0gvdZ1wvu485o9_100.gif b/docs/static/images/88x31/tumblr_ou69s0gvdZ1wvu485o9_100.gif new file mode 100644 index 0000000..dd832a0 Binary files /dev/null and b/docs/static/images/88x31/tumblr_ou69s0gvdZ1wvu485o9_100.gif differ diff --git a/docs/static/images/88x31/tumblr_pti7o0xpyg1xwjivko7_100.gif b/docs/static/images/88x31/tumblr_pti7o0xpyg1xwjivko7_100.gif new file mode 100644 index 0000000..d99b276 Binary files /dev/null and b/docs/static/images/88x31/tumblr_pti7o0xpyg1xwjivko7_100.gif differ diff --git a/docs/static/images/88x31/ublock-now.png b/docs/static/images/88x31/ublock-now.png new file mode 100644 index 0000000..c82555b Binary files /dev/null and b/docs/static/images/88x31/ublock-now.png differ diff --git a/docs/static/images/88x31/ubuntu-88x31.gif b/docs/static/images/88x31/ubuntu-88x31.gif new file mode 100644 index 0000000..f5faf5f Binary files /dev/null and b/docs/static/images/88x31/ubuntu-88x31.gif differ diff --git a/docs/static/images/88x31/undercon2.gif b/docs/static/images/88x31/undercon2.gif new file mode 100644 index 0000000..c4b8f37 Binary files /dev/null and b/docs/static/images/88x31/undercon2.gif differ diff --git a/docs/static/images/88x31/upallnight.gif b/docs/static/images/88x31/upallnight.gif new file mode 100644 index 0000000..8c9b5b8 Binary files /dev/null and b/docs/static/images/88x31/upallnight.gif differ diff --git a/docs/static/images/88x31/upyours2.gif b/docs/static/images/88x31/upyours2.gif new file mode 100644 index 0000000..b5327b5 Binary files /dev/null and b/docs/static/images/88x31/upyours2.gif differ diff --git a/docs/static/images/88x31/uranohead.gif b/docs/static/images/88x31/uranohead.gif new file mode 100644 index 0000000..5d5cf32 Binary files /dev/null and b/docs/static/images/88x31/uranohead.gif differ diff --git a/docs/static/images/88x31/verine.png b/docs/static/images/88x31/verine.png new file mode 100644 index 0000000..6cb72b5 Binary files /dev/null and b/docs/static/images/88x31/verine.png differ diff --git a/docs/static/images/88x31/vertpush (2).gif b/docs/static/images/88x31/vertpush (2).gif new file mode 100644 index 0000000..e22f7b3 Binary files /dev/null and b/docs/static/images/88x31/vertpush (2).gif differ diff --git a/docs/static/images/88x31/vertpushbutton2.gif b/docs/static/images/88x31/vertpushbutton2.gif new file mode 100644 index 0000000..6ec4d2c Binary files /dev/null and b/docs/static/images/88x31/vertpushbutton2.gif differ diff --git a/docs/static/images/88x31/vi_now.gif b/docs/static/images/88x31/vi_now.gif new file mode 100644 index 0000000..c46a662 Binary files /dev/null and b/docs/static/images/88x31/vi_now.gif differ diff --git a/docs/static/images/88x31/vim.vialle.love.anim.gif b/docs/static/images/88x31/vim.vialle.love.anim.gif new file mode 100644 index 0000000..7a00d7f Binary files /dev/null and b/docs/static/images/88x31/vim.vialle.love.anim.gif differ diff --git a/docs/static/images/88x31/vim_a.gif b/docs/static/images/88x31/vim_a.gif new file mode 100644 index 0000000..01f09f1 Binary files /dev/null and b/docs/static/images/88x31/vim_a.gif differ diff --git a/docs/static/images/88x31/violet1.gif b/docs/static/images/88x31/violet1.gif new file mode 100644 index 0000000..7ae03c1 Binary files /dev/null and b/docs/static/images/88x31/violet1.gif differ diff --git a/docs/static/images/88x31/vipper.gif b/docs/static/images/88x31/vipper.gif new file mode 100644 index 0000000..e2beb2c Binary files /dev/null and b/docs/static/images/88x31/vipper.gif differ diff --git a/docs/static/images/88x31/virus.gif b/docs/static/images/88x31/virus.gif new file mode 100644 index 0000000..40b2b05 Binary files /dev/null and b/docs/static/images/88x31/virus.gif differ diff --git a/docs/static/images/88x31/virusalert.gif b/docs/static/images/88x31/virusalert.gif new file mode 100644 index 0000000..fec89ba Binary files /dev/null and b/docs/static/images/88x31/virusalert.gif differ diff --git a/docs/static/images/88x31/visitmini.gif b/docs/static/images/88x31/visitmini.gif new file mode 100644 index 0000000..c4e533d Binary files /dev/null and b/docs/static/images/88x31/visitmini.gif differ diff --git a/docs/static/images/88x31/vivaldi.gif b/docs/static/images/88x31/vivaldi.gif new file mode 100644 index 0000000..ba52da7 Binary files /dev/null and b/docs/static/images/88x31/vivaldi.gif differ diff --git a/docs/static/images/88x31/vnow.gif b/docs/static/images/88x31/vnow.gif new file mode 100644 index 0000000..a8bdad3 Binary files /dev/null and b/docs/static/images/88x31/vnow.gif differ diff --git a/docs/static/images/88x31/vocaloid.gif b/docs/static/images/88x31/vocaloid.gif new file mode 100644 index 0000000..8c85708 Binary files /dev/null and b/docs/static/images/88x31/vocaloid.gif differ diff --git a/docs/static/images/88x31/vr.gif b/docs/static/images/88x31/vr.gif new file mode 100644 index 0000000..f789119 Binary files /dev/null and b/docs/static/images/88x31/vr.gif differ diff --git a/docs/static/images/88x31/vscbutton.gif b/docs/static/images/88x31/vscbutton.gif new file mode 100644 index 0000000..8a4cad2 Binary files /dev/null and b/docs/static/images/88x31/vscbutton.gif differ diff --git a/docs/static/images/88x31/vxhtml10.gif b/docs/static/images/88x31/vxhtml10.gif new file mode 100644 index 0000000..88f0a43 Binary files /dev/null and b/docs/static/images/88x31/vxhtml10.gif differ diff --git a/docs/static/images/88x31/w0rm-party.gif b/docs/static/images/88x31/w0rm-party.gif new file mode 100644 index 0000000..76c914a Binary files /dev/null and b/docs/static/images/88x31/w0rm-party.gif differ diff --git a/docs/static/images/88x31/w3c_ab.gif b/docs/static/images/88x31/w3c_ab.gif new file mode 100644 index 0000000..63c474b Binary files /dev/null and b/docs/static/images/88x31/w3c_ab.gif differ diff --git a/docs/static/images/88x31/w95link.gif b/docs/static/images/88x31/w95link.gif new file mode 100644 index 0000000..d538d79 Binary files /dev/null and b/docs/static/images/88x31/w95link.gif differ diff --git a/docs/static/images/88x31/w96_button.gif b/docs/static/images/88x31/w96_button.gif new file mode 100644 index 0000000..4484665 Binary files /dev/null and b/docs/static/images/88x31/w96_button.gif differ diff --git a/docs/static/images/88x31/walk-to-remember2.gif b/docs/static/images/88x31/walk-to-remember2.gif new file mode 100644 index 0000000..2384652 Binary files /dev/null and b/docs/static/images/88x31/walk-to-remember2.gif differ diff --git a/docs/static/images/88x31/warpnow.gif b/docs/static/images/88x31/warpnow.gif new file mode 100644 index 0000000..3393fd6 Binary files /dev/null and b/docs/static/images/88x31/warpnow.gif differ diff --git a/docs/static/images/88x31/waterfox.gif b/docs/static/images/88x31/waterfox.gif new file mode 100644 index 0000000..ec7bb59 Binary files /dev/null and b/docs/static/images/88x31/waterfox.gif differ diff --git a/docs/static/images/88x31/wavecave.png b/docs/static/images/88x31/wavecave.png new file mode 100644 index 0000000..5813cd5 Binary files /dev/null and b/docs/static/images/88x31/wavecave.png differ diff --git a/docs/static/images/88x31/web11badge.gif b/docs/static/images/88x31/web11badge.gif new file mode 100644 index 0000000..19124ef Binary files /dev/null and b/docs/static/images/88x31/web11badge.gif differ diff --git a/docs/static/images/88x31/webpassion.gif b/docs/static/images/88x31/webpassion.gif new file mode 100644 index 0000000..4444ae6 Binary files /dev/null and b/docs/static/images/88x31/webpassion.gif differ diff --git a/docs/static/images/88x31/wikipedia.gif b/docs/static/images/88x31/wikipedia.gif new file mode 100644 index 0000000..c27c2a6 Binary files /dev/null and b/docs/static/images/88x31/wikipedia.gif differ diff --git a/docs/static/images/88x31/wikipedia.png b/docs/static/images/88x31/wikipedia.png new file mode 100644 index 0000000..a604112 Binary files /dev/null and b/docs/static/images/88x31/wikipedia.png differ diff --git a/docs/static/images/88x31/winxp.gif b/docs/static/images/88x31/winxp.gif new file mode 100644 index 0000000..8a41a77 Binary files /dev/null and b/docs/static/images/88x31/winxp.gif differ diff --git a/docs/static/images/88x31/winxp2.gif b/docs/static/images/88x31/winxp2.gif new file mode 100644 index 0000000..47ee2d2 Binary files /dev/null and b/docs/static/images/88x31/winxp2.gif differ diff --git a/docs/static/images/88x31/wmp.gif b/docs/static/images/88x31/wmp.gif new file mode 100644 index 0000000..4097669 Binary files /dev/null and b/docs/static/images/88x31/wmp.gif differ diff --git a/docs/static/images/88x31/wmp10.gif b/docs/static/images/88x31/wmp10.gif new file mode 100644 index 0000000..696e60c Binary files /dev/null and b/docs/static/images/88x31/wmp10.gif differ diff --git a/docs/static/images/88x31/wmp11.gif b/docs/static/images/88x31/wmp11.gif new file mode 100644 index 0000000..335c5f3 Binary files /dev/null and b/docs/static/images/88x31/wmp11.gif differ diff --git a/docs/static/images/88x31/wmp9.gif b/docs/static/images/88x31/wmp9.gif new file mode 100644 index 0000000..80de22e Binary files /dev/null and b/docs/static/images/88x31/wmp9.gif differ diff --git a/docs/static/images/88x31/wmp_20050207.gif b/docs/static/images/88x31/wmp_20050207.gif new file mode 100644 index 0000000..14ef798 Binary files /dev/null and b/docs/static/images/88x31/wmp_20050207.gif differ diff --git a/docs/static/images/88x31/wmpfree.gif b/docs/static/images/88x31/wmpfree.gif new file mode 100644 index 0000000..2f664c2 Binary files /dev/null and b/docs/static/images/88x31/wmpfree.gif differ diff --git a/docs/static/images/88x31/wow_wow.gif b/docs/static/images/88x31/wow_wow.gif new file mode 100644 index 0000000..c5dd205 Binary files /dev/null and b/docs/static/images/88x31/wow_wow.gif differ diff --git a/docs/static/images/88x31/xfree.gif b/docs/static/images/88x31/xfree.gif new file mode 100644 index 0000000..7a15535 Binary files /dev/null and b/docs/static/images/88x31/xfree.gif differ diff --git a/docs/static/images/88x31/xfspowered.gif b/docs/static/images/88x31/xfspowered.gif new file mode 100644 index 0000000..322afc5 Binary files /dev/null and b/docs/static/images/88x31/xfspowered.gif differ diff --git a/docs/static/images/88x31/xyzzyzzyzx.png b/docs/static/images/88x31/xyzzyzzyzx.png new file mode 100644 index 0000000..a5d3c56 Binary files /dev/null and b/docs/static/images/88x31/xyzzyzzyzx.png differ diff --git a/docs/static/images/88x31/yahooboots.gif b/docs/static/images/88x31/yahooboots.gif new file mode 100644 index 0000000..4d9ea8a Binary files /dev/null and b/docs/static/images/88x31/yahooboots.gif differ diff --git a/docs/static/images/88x31/ymusic.gif b/docs/static/images/88x31/ymusic.gif new file mode 100644 index 0000000..c495003 Binary files /dev/null and b/docs/static/images/88x31/ymusic.gif differ diff --git a/docs/static/images/88x31/yobun.png b/docs/static/images/88x31/yobun.png new file mode 100644 index 0000000..71ad932 Binary files /dev/null and b/docs/static/images/88x31/yobun.png differ diff --git a/docs/static/images/88x31/ytbutton.gif b/docs/static/images/88x31/ytbutton.gif new file mode 100644 index 0000000..61680fd Binary files /dev/null and b/docs/static/images/88x31/ytbutton.gif differ diff --git a/docs/static/images/88x31/zd_internet_click_here.gif b/docs/static/images/88x31/zd_internet_click_here.gif new file mode 100644 index 0000000..1ff9a52 Binary files /dev/null and b/docs/static/images/88x31/zd_internet_click_here.gif differ diff --git a/docs/static/images/88x31/zipilebutton.gif b/docs/static/images/88x31/zipilebutton.gif new file mode 100644 index 0000000..9cbdf03 Binary files /dev/null and b/docs/static/images/88x31/zipilebutton.gif differ diff --git a/docs/static/images/88x31/ztnbutton.gif b/docs/static/images/88x31/ztnbutton.gif new file mode 100644 index 0000000..27434d4 Binary files /dev/null and b/docs/static/images/88x31/ztnbutton.gif differ diff --git a/docs/static/images/88x31/zune.png b/docs/static/images/88x31/zune.png new file mode 100644 index 0000000..c55fc69 Binary files /dev/null and b/docs/static/images/88x31/zune.png differ diff --git a/docs/static/images/88x31/zymicbest.gif b/docs/static/images/88x31/zymicbest.gif new file mode 100644 index 0000000..9ae99c5 Binary files /dev/null and b/docs/static/images/88x31/zymicbest.gif differ diff --git a/docs/static/images/8thNote.svg b/docs/static/images/8thNote.svg new file mode 100644 index 0000000..3d097cc --- /dev/null +++ b/docs/static/images/8thNote.svg @@ -0,0 +1,4 @@ + + + + diff --git a/docs/static/images/android-jellybean.jpg b/docs/static/images/android-jellybean.jpg new file mode 100644 index 0000000..8bf932a Binary files /dev/null and b/docs/static/images/android-jellybean.jpg differ diff --git a/docs/static/images/androidrecovery.jpg b/docs/static/images/androidrecovery.jpg new file mode 100644 index 0000000..6d7f4fd Binary files /dev/null and b/docs/static/images/androidrecovery.jpg differ diff --git a/docs/static/images/arrow-cursor.svg b/docs/static/images/arrow-cursor.svg new file mode 100644 index 0000000..b630ade --- /dev/null +++ b/docs/static/images/arrow-cursor.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/docs/static/images/bear-fade-old.jpg b/docs/static/images/bear-fade-old.jpg new file mode 100644 index 0000000..931bca0 Binary files /dev/null and b/docs/static/images/bear-fade-old.jpg differ diff --git a/docs/static/images/bear-fade.jpg b/docs/static/images/bear-fade.jpg new file mode 100644 index 0000000..6524e23 Binary files /dev/null and b/docs/static/images/bear-fade.jpg differ diff --git a/docs/static/images/bear.jpg b/docs/static/images/bear.jpg new file mode 100644 index 0000000..6cd61af Binary files /dev/null and b/docs/static/images/bear.jpg differ diff --git a/docs/static/images/cameraroll.svg b/docs/static/images/cameraroll.svg new file mode 100644 index 0000000..6583fe3 --- /dev/null +++ b/docs/static/images/cameraroll.svg @@ -0,0 +1,4 @@ + + + + diff --git a/docs/static/images/eye_of_nemesis.png b/docs/static/images/eye_of_nemesis.png new file mode 100644 index 0000000..5fc0ab9 Binary files /dev/null and b/docs/static/images/eye_of_nemesis.png differ diff --git a/docs/static/images/file-code.svg b/docs/static/images/file-code.svg new file mode 100644 index 0000000..7ef5eef --- /dev/null +++ b/docs/static/images/file-code.svg @@ -0,0 +1,7 @@ + + + + + Svg Vector Icons : http://www.onlinewebfonts.com/icon + + \ No newline at end of file diff --git a/docs/static/images/fl_screenshot_no_text.png b/docs/static/images/fl_screenshot_no_text.png new file mode 100644 index 0000000..919175a Binary files /dev/null and b/docs/static/images/fl_screenshot_no_text.png differ diff --git a/docs/static/images/gears.svg b/docs/static/images/gears.svg new file mode 100644 index 0000000..ed275ab --- /dev/null +++ b/docs/static/images/gears.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/docs/static/images/ifc.jpg b/docs/static/images/ifc.jpg new file mode 100644 index 0000000..14a03df Binary files /dev/null and b/docs/static/images/ifc.jpg differ diff --git a/docs/static/images/itemeconomy2-wide.png b/docs/static/images/itemeconomy2-wide.png new file mode 100644 index 0000000..eb5c46d Binary files /dev/null and b/docs/static/images/itemeconomy2-wide.png differ diff --git a/docs/static/images/jamfish-wide.png b/docs/static/images/jamfish-wide.png new file mode 100644 index 0000000..f1d6718 Binary files /dev/null and b/docs/static/images/jamfish-wide.png differ diff --git a/docs/static/images/me.png b/docs/static/images/me.png new file mode 100644 index 0000000..f821815 Binary files /dev/null and b/docs/static/images/me.png differ diff --git a/docs/static/images/pestowikifull.png b/docs/static/images/pestowikifull.png new file mode 100644 index 0000000..6be271b Binary files /dev/null and b/docs/static/images/pestowikifull.png differ diff --git a/docs/static/images/pestowikifullwhite.png b/docs/static/images/pestowikifullwhite.png new file mode 100644 index 0000000..c97a5a1 Binary files /dev/null and b/docs/static/images/pestowikifullwhite.png differ diff --git a/docs/static/images/redes.jpg b/docs/static/images/redes.jpg new file mode 100644 index 0000000..06ee81e Binary files /dev/null and b/docs/static/images/redes.jpg differ diff --git a/docs/static/images/sigaa-inicio.png b/docs/static/images/sigaa-inicio.png new file mode 100644 index 0000000..d9991cc Binary files /dev/null and b/docs/static/images/sigaa-inicio.png differ diff --git a/docs/static/images/sigaa-login.png b/docs/static/images/sigaa-login.png new file mode 100644 index 0000000..bf51e68 Binary files /dev/null and b/docs/static/images/sigaa-login.png differ diff --git a/docs/static/images/sigaa-materia.png b/docs/static/images/sigaa-materia.png new file mode 100644 index 0000000..ffc63c1 Binary files /dev/null and b/docs/static/images/sigaa-materia.png differ diff --git a/docs/static/images/songs/pg.jpg b/docs/static/images/songs/pg.jpg new file mode 100644 index 0000000..7a7b04c Binary files /dev/null and b/docs/static/images/songs/pg.jpg differ diff --git a/docs/static/images/songs/velkommen.jpg b/docs/static/images/songs/velkommen.jpg new file mode 100644 index 0000000..6d5232f Binary files /dev/null and b/docs/static/images/songs/velkommen.jpg differ diff --git a/docs/static/images/songs/winds.png b/docs/static/images/songs/winds.png new file mode 100644 index 0000000..fee764c Binary files /dev/null and b/docs/static/images/songs/winds.png differ diff --git a/docs/static/images/sound-off.png b/docs/static/images/sound-off.png new file mode 100644 index 0000000..f9bb0b3 Binary files /dev/null and b/docs/static/images/sound-off.png differ diff --git a/docs/static/images/sound-on.png b/docs/static/images/sound-on.png new file mode 100644 index 0000000..e2f6357 Binary files /dev/null and b/docs/static/images/sound-on.png differ diff --git a/docs/static/images/thumbnails/fl_studio_linux.png b/docs/static/images/thumbnails/fl_studio_linux.png new file mode 100644 index 0000000..4cff12c Binary files /dev/null and b/docs/static/images/thumbnails/fl_studio_linux.png differ diff --git a/docs/static/images/thumbnails/velkommen.jpg b/docs/static/images/thumbnails/velkommen.jpg new file mode 100644 index 0000000..ae21e1b Binary files /dev/null and b/docs/static/images/thumbnails/velkommen.jpg differ diff --git a/docs/static/images/towers.jpg b/docs/static/images/towers.jpg new file mode 100644 index 0000000..ec417ba Binary files /dev/null and b/docs/static/images/towers.jpg differ diff --git a/docs/static/images/video.svg b/docs/static/images/video.svg new file mode 100644 index 0000000..a70d9a9 --- /dev/null +++ b/docs/static/images/video.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/docs/static/images/youtube_video.jpg b/docs/static/images/youtube_video.jpg new file mode 100644 index 0000000..85ba74d Binary files /dev/null and b/docs/static/images/youtube_video.jpg differ diff --git a/docs/static/main.css b/docs/static/main.css new file mode 100644 index 0000000..5db40e4 --- /dev/null +++ b/docs/static/main.css @@ -0,0 +1,1008 @@ +/* Raw elements */ + +:root { + --theme-color: #4c6d6e; + --theme-color-lighter: #84b9bb; + --theme-color-variation: #22e6ed; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + background-color: black; + font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; + font-size: 1em; + color: white; +} + +a { + transition: 0.2s; + color: lightgray; + text-decoration: none; +} + +a:hover { + color: var(--theme-color-lighter); +} + +li { + list-style-type: none; +} + +dt::before { + content: "-> "; +} + +dd { + margin-inline-start: 2em; +} + +dl { + margin-bottom: 1em; +} + +select { + background-color: transparent; + color: white; + border: none; + font-size: 1em; +} + +header { + display: flex; + border-bottom: thick solid rgba(255, 255, 255, 0.1); + width: 100%; + box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); + background-color: rgba(0, 0, 0, 0.15); +} + +header div { + padding: 1rem; +} + +header ul { + transition: 0.2s; + font-size: larger; + margin: auto 0 auto 0; + padding: 0; + opacity: 0.6; + text-align: right; +} + +header ul a { + transition: 0.2s; + color: white; +} + +header ul a:hover { + color: var(--theme-color); +} + +header ul:hover { + opacity: 1; +} + +main { + margin-bottom: 2em; +} + +h1, +h2, +h3 { + text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); +} + +blockquote, +main p { + margin-bottom: 1em; +} + +main h1, +main h2 { + margin-bottom: 0.2em; +} + +main h2 { + margin-top: 1em; +} + +b { + color: var(--theme-color-lighter); + font-weight: 600; +} + +blockquote { + margin-left: 2.8em; +} + +hr { + border-bottom: thick solid rgba(255, 255, 255, 0.1); + box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); + /* margin: .5em 0; */ + margin-bottom: 1em; +} + +h2 { + font-weight: normal; + color: var(--theme-color-lighter); +} + +textarea, +input, +button { + border: medium solid var(--theme-color-lighter); + background-color: black; + color: white; + padding: 0.6em; +} + +hs { + border-bottom: thin solid white; +} + +input[type="checkbox"] { + border: thick solid white; +} + +input[type="range"] { + width: 100%; + border: none; + padding: 0; +} + +input[type="range"]::-webkit-slider-thumb, +input[type="range"]::-moz-range-thumb { + background-color: black; + transition: 0.2s; + border-radius: 0; + border: medium solid white; + height: 1.2em; +} + +input[type="range"]:hover::-webkit-slider-thumb, +input[type="range"]:hover::-moz-range-thumb { + height: 2em; + background-color: white; + border-width: thin; +} + +input[type="range"]::-webkit-slider-runnable-track, +input[type="range"]::-moz-range-track { + background-color: white; + height: 1em; +} + +aside.metromenu { + z-index: 2; + position: fixed; + top: 0; + right: 0; + width: 30vw; + background-color: black; + height: 100vh; + transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); + padding: 2em; +} + +aside.metromenu.closed { + transform: translateX(100%); +} + +aside.metromenu h2 { + font-size: xx-large; +} + +aside.metromenu p { + margin-bottom: 0.4em; +} + +aside.metromenu .optionsToggle { + margin-bottom: 1em; +} + +aside.metromenu #content { + display: flex; + flex-direction: column; + gap: 1em; +} + +/* Global classes and IDs */ + +.notificationBox { + transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1); + width: fit-content; + position: fixed; + bottom: 2em; + left: 0; + background-color: black; + transform: translateX(-100%); + padding: 1em; + outline: thin solid var(--theme-color); + margin-right: 8em; + max-width: 40em; +} + +.notificationBox.shown { + transform: none; +} + +.notificationBox h1 { + font-size: x-large; +} + +li.inlineList { + display: inline; +} + +.box { + border: thick solid rgba(255, 255, 255, 0.1); + padding: 1em; + background-color: rgba(0, 0, 0, 0.15); +} + +.box *:last-child { + margin-bottom: 0; +} + +.pageHeaderBox { + border-bottom: 0; +} + +.headerSquare, +#defaultSquare { + transition: 0.4s; + border: medium solid white; + height: 7vh; + overflow: hidden; + width: 10vh; + opacity: 0.4; + padding: 0.4em; + cursor: pointer; + user-select: none; +} + +.headerSquare img, +#defaultSquare img { + width: 100%; + height: auto; +} + +.headerSquare:hover, +#defaultSquare { + z-index: 1; +} + +.headerSquare.selected, +#defaultSquare.selected { + opacity: 1; + height: 10vh; + box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.4), 0px -4px 10px rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.3); +} + +.youtubeCardHolderHelper { + display: flex; + justify-content: center; +} + +div.hs { + display: none; +} + +div.hs.selected { + display: unset; +} + +.ytembed { + display: block; + margin: auto; +} + +.margarinaColor { + color: #ff85e1; +} + +.hsProjects { + gap: 0.6em; + display: flex; + flex-direction: column; +} + +.hsProject { + margin-bottom: 0.4em; + border: medium solid rgba(255, 255, 255, 0.6); + width: 100%; + height: fit-content; + transition: 0.2s; + display: flex; + flex-direction: column; + gap: 1em; + box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.4), 0px -4px 10px rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.2); +} + +.hsProjectHeader { + transition: 0.2s; + display: flex; + height: 7em; + border-bottom: medium solid rgba(255, 255, 255, 0.6); + padding: 1em; +} + +.hsProjectHeaderIcon { + transition: 0.2s; + fill: white; + stroke: white; + height: 50%; + width: auto; + margin: auto 0; + opacity: 0.6; +} + +.hsProjectHeaderIcon img { + height: 100%; +} + +.hsProject:hover { + border-color: white; +} + +.hsProject:hover .hsProjectHeader { + border-color: white; +} + +.hsProject:hover .hsProjectHeaderIcon { + opacity: 1; +} + +.hsProjectImage { + width: 100%; + max-height: 100%; +} + +.hsProjectImage img { + height: 100%; + width: auto; +} + +.hsProjectContent { + padding: 1em; +} + +.invertedc { + filter: invert(); +} + +.ellipsis-loader { + animation: 1.8s infinite ellipsis-loader; + display: inline-block; + height: 8px; + overflow: hidden; + position: relative; + width: 140px; + margin: auto; +} + +.ellipsis-loader__dot { + animation: 1.8s infinite ellipsis-loader__dot; + background: #fff; + border-radius: 50%; + float: left; + height: 8px; + position: absolute; + width: 8px; +} + +.ellipsis-loader__dot:nth-child(1) { + animation-delay: 0.15s; + left: -13px; +} + +.ellipsis-loader__dot:nth-child(2) { + animation-delay: 0.3s; + left: -26px; +} + +.ellipsis-loader__dot:nth-child(3) { + animation-delay: 0.45s; + left: -39px; +} + +.ellipsis-loader__dot:nth-child(4) { + animation-delay: 0.6s; + left: -52px; +} + +.checkbox { + display: flex; +} + +.checkbox p { + flex-grow: 1; +} + +.optionsToggle { + cursor: pointer; +} + +.fadeIn { + animation: fadeIn 0.5s ease-in 1 forwards; +} + +.fadeOut { + opacity: 1; + animation: fadeOut 0.5s ease-out 1 forwards; +} + +.oneLineClamp { + overflow: hidden; + width: 100%; + display: -webkit-box; + line-clamp: 1; + -webkit-line-clamp: 1; + -webkit-box-orient: vertical; +} + +.drawerSong { + position: relative; + overflow: hidden; +} + +.drawerSong img { + transition: 0.4s; + width: 5em; + height: 100%; + object-fit: cover; + object-position: left top; + opacity: 0.4; + filter: grayscale(1); +} + +.drawerSong p { + position: absolute; + top: 0; + left: 0; + display: inline; +} + +.drawerSong:hover img, +.drawerSong.selected img { + opacity: 1; + overflow: hidden; + width: 10em; +} + +.drawerSong.selected img { + filter: none; +} + +.drawerSong.selected { + width: 10em; +} + +.playlistTitle { + background-color: white; + color: black; +} + +.playingSong { + font-size: larger; +} + +.hidden { + display: none; +} + +.invisible { + opacity: 0; +} + +.bg.invisible { + opacity: 0 !important; +} + +.blogpostYoutubeVideo { + user-select: none; + box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); + position: relative; + display: inline-block; + background-color: black; + border: medium solid var(--theme-color-lighter); + transition: 0.2s; +} + +.blogpostYoutubeVideo .goLabel { + transition: 0.2s; + opacity: 0; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + margin: 0; + font-size: 4em; + background-color: var(--theme-color); + padding: 0.2em; + border-radius: 6px; + font-weight: bold; +} + +.blogpostYoutubeVideo:hover .goLabel { + opacity: 1; +} + +.blogpostYoutubeVideo:hover { + border-color: var(--theme-color); +} + +.blogpostYoutubeVideo img { + width: 100%; + display: block; + opacity: 0.8; + transition: 0.2s; +} + +.blogpostYoutubeVideo .videoHeader { + transition: 0.2s; + position: absolute; + bottom: 0; + left: 0; + padding: 0.4em 1em; + z-index: 1; + background-color: rgba(0, 0, 0, 0.6); + width: 100%; + padding: 1em; +} + +.blogpostYoutubeVideo * { + margin: 0; +} + +.blogpostYoutubeVideo:hover::after { + opacity: 0; +} + +.blogpostYoutubeVideo:hover .videoHeader { + opacity: 0; +} + +.blogpostYoutubeVideo .videoHeader .alsoAvailable { + font-weight: bold; +} + +.blogpostYoutubeVideo:hover img { + opacity: 1; +} + +.i88x31 { + transition: 0.2s; + image-rendering: pixelated; + width: 88px; + height: 31px; +} + +.i88x31.selected { + transform: scale(2); +} + +/* Section: Page-specific */ + +#music { + padding: 0; + display: flex; + gap: 0.4em; + inline-size: fit-content; + height: 1.4em; + margin-top: auto; + opacity: 0.6; +} + +#music:hover { + opacity: 1; +} + +#everythingHelper { + position: relative; +} + +#everythingHelper .bg { + position: absolute; + top: 0; + left: 0; + z-index: -1; + opacity: 0.5; + width: 100%; + height: auto; + -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%); + -webkit-mask-repeat: no-repeat; + -webkit-mask-size: 100% 100%; + mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%); + mask-repeat: no-repeat; + mask-size: 100% 100%; + user-select: none; + transition: 0.4s; + -webkit-user-drag: none; +} + +#mainHelper { + padding-top: 3rem; + max-width: 50vw; + margin: auto; + display: flex; +} + +#headerSubtitle { + color: white; + opacity: 0.6; +} + +#fixedHint { + position: fixed; + top: 0; + left: 0; + background-color: black; + z-index: 10; + padding: .2em; + outline: thin solid var(--theme-color); +} + +#sound { + filter: invert(); +} + +#sound:hover { + cursor: pointer; +} + +#linksHelper { + margin: auto 1em auto auto; + display: flex; + flex-direction: column; + gap: 0.2em; +} + +#linksHelper:hover { + opacity: 1; +} + +#headerLinks { + user-select: none; +} + +#headerLinks a { + color: white; +} + +#headerLinks a { + margin-right: 0.2em; + margin-left: 0.2em; +} + +#headerLinks:last-child { + margin-left: 0; +} + +#headerLinks a:first-child { + margin-left: 0; +} + +#headerLinks a:last-child { + margin-right: 0; +} + +header div:first-child { + margin-bottom: 0; +} + +#headerSquareMusic img, +#headerSquareVideo img, +#headerSquareCode img, +#defaultSquare img { + filter: invert(); +} + +#homeSquares { + display: flex; + flex-direction: column; + transition: 0.4s; + width: fit-content; + height: fit-content; + margin-right: 3vw; + margin-bottom: 3rem; + gap: 10px; +} + +.hsMusicCard .youtubeCardHolder { + width: 50%; +} + +#hsCode { + flex-direction: column; +} + +#hsCode.selected { + display: flex; +} + +#telnetSimulation { + display: flex; + width: 100%; + gap: 10px; +} + +#telnetSimulation div { + flex: 1; + display: flex; + flex-direction: column; + gap: 10px; + height: 100%; +} + +#telnetSimulation div textarea { + width: 100%; + resize: none; + height: 300px; +} + +#telnetSimulationInput { + display: flex; +} + +#telnetSimulationLoadingHolder { + text-align: center; + margin: 10px; + display: none; + flex-direction: column; +} + +#youtubeVideo p { + font-size: 2vh; +} + +#youtubeVideoImage { + width: 100%; + transition: 0.3s; + box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); +} + +#youtubeVideoImage:hover { + opacity: 0.8; +} + +#languageList { + font-size: 2vh; +} + +#languageList li { + margin-bottom: 0.5em; +} + +#languageList li a { + transition: 1s; +} + +.languagesHighlightedLink { + color: var(--theme-color-variation); +} + +#songDrawer { + display: flex; + height: 10em; + overflow-x: auto; + overflow-y: hidden; + gap: 0.2em; +} + +#playlist { + transition: 0.2s; + max-height: 10em; + overflow: auto; + border: medium solid white; +} + +#playlist p { + cursor: pointer; + padding: 0 0.4em; +} + +#playlist p:first-child { + padding-bottom: 0.2em; +} + +#linksHelper hs { + margin: 0.2em 0; + opacity: 0.6; +} + +#linkshelper:hover hs { + opacity: 1; +} + +#postHeader * { + margin-bottom: 0; +} + +#postHeader { + margin-bottom: 1em; +} + +/* Page: misc/favorites */ + +.favoritesTextBox { + border-top: none; +} + +.favoritesDivider { + margin-bottom: 0; +} + +.favoritesDefinitionListItem dt { + font-size: large; +} + +.favoritesDefinitionListItem dt::before { + content: ""; +} + +.favoritesDefinitionListItem { + margin-bottom: 2em; +} + +.favorites88x31Box { + width: fit-content; + height: fit-content; + border-right: none; + border-top: none; + border-bottom: none; + padding: 0; + padding-left: 1em; + margin-bottom: 1em; +} + +.favorites88x31Box img { + margin: 0; +} + +.favorite88x31Box { + margin-top: .2em; +} + +/* Animations */ + +@keyframes ellipsis-loader { + 0%, 25% { transform: translateX(0); } + 100% { transform: translate(20px); } +} + +@keyframes ellipsis-loader__dot { + 0% { + animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1); + transform: translateX(0); + } + 55% { + animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86); + opacity: 1; + transform: translateX(98px); + } + 75%, 100% { + transform: translateX(212px); + } + 90% { + opacity: 0.2; + } +} + +@keyframes fadeIn { + to { opacity: 1; } +} + +@keyframes fadeOut { + to { opacity: 0; } +} + +/* Media queries */ + +@media screen and (max-width: 1280px) { + body { font-size: 2vh; } + + header { + padding-top: 1.4rem; + text-align: center; + flex-direction: column; + } + + header ul { + margin: auto; + margin-bottom: 1.4rem; + } + + main { max-width: 90vw; } + + main h1 { font-size: 3vh; } + + #headerLinks { + text-align: center; + width: 100%; + } + + #homeTitle { font-size: 4vh; } + + #linksHelper { margin: 0 auto 0 auto; } + + #mainHelper { + flex-direction: column; + max-width: 90vw; + } + + #homeSquares { + flex-direction: row; + align-content: center; + justify-content: center; + width: 40vw; + margin-left: auto; + margin-right: auto; + } + + .headerSquare, + #defaultSquare { + aspect-ratio: 1/1; + height: 100%; + flex-grow: 1; + } + + .headerSquare.selected, + #defaultSqaure.selected { + height: unset !important; + } + + #languageList { font-size: 2.5vh; } + + .hsProjectHeader { + height: fit-content; + flex-direction: column; + gap: 1em; + } + + .hsProjectImage { + max-height: 5em; + margin: auto; + width: fit-content; + } + + .hsProjectImage img { + height: 100%; + max-height: inherit; + } + + .hsProjectHeaderIcon { + margin: auto; + } + + aside.metromenu { width: 50%; } + + .blogpostYoutubeVideo .videoHeader { font-size: small; } + + .homeBadgesBox { + display: flex; + justify-content: center; + gap: 4px; + flex-wrap: wrap; + } + + .misc88x31Page h2 { text-align: center; } +} + +@media screen and (max-width: 800px) { + #homeSquares { width: 60vw; } + + aside.metromenu { width: 100%; } + + .hsMusicCard .youtubeCardHolder { width: 100%; } +} + +@media screen and (max-width: 720px) { + #homeSquares { width: 80vw; } +} \ No newline at end of file diff --git a/docs/static/music/PG2.mp3 b/docs/static/music/PG2.mp3 new file mode 100644 index 0000000..d296b72 Binary files /dev/null and b/docs/static/music/PG2.mp3 differ diff --git a/docs/static/music/Velkommen.mp3 b/docs/static/music/Velkommen.mp3 new file mode 100644 index 0000000..cfbf3f4 Binary files /dev/null and b/docs/static/music/Velkommen.mp3 differ diff --git a/docs/static/music/dreamscape.mp3 b/docs/static/music/dreamscape.mp3 new file mode 100644 index 0000000..5d342e1 Binary files /dev/null and b/docs/static/music/dreamscape.mp3 differ diff --git a/docs/static/music/skychat.mp3 b/docs/static/music/skychat.mp3 new file mode 100644 index 0000000..997a98d Binary files /dev/null and b/docs/static/music/skychat.mp3 differ diff --git a/docs/static/scripts/88x31.js b/docs/static/scripts/88x31.js new file mode 100644 index 0000000..32e37d1 --- /dev/null +++ b/docs/static/scripts/88x31.js @@ -0,0 +1,13 @@ +const images = document.querySelectorAll(".i88x31"); + +images.forEach(image => { + image.addEventListener("click", () => { + const selected = document.querySelectorAll(".i88x31.selected"); + selected.forEach(s => { + if (s != image) { + s.classList.toggle("selected"); + } + }) + image.classList.toggle("selected"); + }) +}) \ No newline at end of file diff --git a/docs/static/scripts/ccd.js b/docs/static/scripts/ccd.js new file mode 100644 index 0000000..e1c694d --- /dev/null +++ b/docs/static/scripts/ccd.js @@ -0,0 +1,14 @@ +const konamiCode = ['ArrowUp', 'ArrowUp', 'ArrowDown', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'ArrowLeft', 'ArrowRight', 'KeyB', 'KeyA']; +let keyIndex = 0; + +document.addEventListener('keydown', function(event) { + if (event.code === konamiCode[keyIndex]) { + keyIndex++; + if (keyIndex === konamiCode.length) { + window.location.href = `${rootPrefix}static/toyourdreams.txt` + keyIndex = 0; + } + } else { + keyIndex = 0; + } +}); \ No newline at end of file diff --git a/docs/static/scripts/home.js b/docs/static/scripts/home.js new file mode 100644 index 0000000..f570539 --- /dev/null +++ b/docs/static/scripts/home.js @@ -0,0 +1,51 @@ +const _homeSquares = document.querySelector("#homeSquares"); +const main = document.querySelector("main"); + +let info = [ + ["Default", "defaultSquare", "arrow-cursor.svg", "Computer cursor arrow line drawing"], + ["Music", "headerSquareMusic", "8thNote.svg", "Music note line drawing"], + ["Video", "headerSquareVideo", "video.svg", "Video roll line drawing"], + ["Code", "headerSquareCode", "file-code.svg", "Computer code file line drawing"] +] + +info.forEach(square => { + let rawHTML = `
    ${square[3]}
    `; + _homeSquares.innerHTML += rawHTML; +}); + +const homeSquares = document.querySelectorAll(".headerSquare"); +let selectedSquare = "defaultSquare"; +let selectedSquareDiv; +updateSquare(); + +homeSquares.forEach(square => + square.addEventListener('click', () => { + toggleSquare(square); + }) +) + +function toggleSquare(square) { + if (selectedSquare && (selectedSquare == square.id)) { + return + } + else if (selectedSquare) { + oldSquare = document.getElementById(selectedSquare); + oldSquare.classList.toggle("selected"); + document.querySelector(`#${selectedSquareDiv}`).classList.toggle("selected"); + } + selectedSquare = square.id; + updateSquare() +} + +function getSquareDivByID(id) { + divID = `hs${info.find(item => item[1] === id)[0]}`; + return document.querySelector(`#${divID}`); +} + +function updateSquare() { + square = document.getElementById(selectedSquare); + square.classList.toggle("selected"); + div = getSquareDivByID(square.id); + selectedSquareDiv = div.id; + div.classList.toggle("selected"); +} \ No newline at end of file diff --git a/docs/static/scripts/language.js b/docs/static/scripts/language.js new file mode 100644 index 0000000..d9d5df2 --- /dev/null +++ b/docs/static/scripts/language.js @@ -0,0 +1,37 @@ +const el = document.getElementById("languageTitle"); +const texts = [["Pick a language", "English"], ["Escolha um idioma", "Português Brasileiro"]]; +let i = 0; +let fadeTime = 1000; +let holdTime = 2000; +const links = document.querySelectorAll("#languageList li a"); +let currentLang = 0; + +el.style.transition = `opacity ${fadeTime}ms`; +el.style.opacity = 1; + +function cycle() { + el.style.opacity = 0; + removeOldHighlightedLang(); + setTimeout(() => { + i = (i + 1) % texts.length; + currentLang = i; + el.textContent = texts[i][0]; + el.style.opacity = 1; + setNewHighlightedLang() + }, fadeTime); +} + +function removeOldHighlightedLang() { + document.querySelector(".languagesHighlightedLink").classList.remove("languagesHighlightedLink"); +} + +function setNewHighlightedLang() { + links.forEach(link => { + if (link.innerText == texts[currentLang][1]) { + link.classList.add('languagesHighlightedLink'); + } + }) +} + +setNewHighlightedLang() +setInterval(cycle, fadeTime * 2 + holdTime); \ No newline at end of file diff --git a/docs/static/scripts/music.js b/docs/static/scripts/music.js new file mode 100644 index 0000000..da8e108 --- /dev/null +++ b/docs/static/scripts/music.js @@ -0,0 +1,227 @@ +// This script handles the playback of music in the header's miniplayer ;) +import { showNotification } from './notification.js'; +const body = document.querySelector("body"); + +const musicdiv = document.getElementById("music"); +musicdiv.innerHTML = ` + + + +` +const linksHelper = document.getElementById("linksHelper"); +linksHelper.insertBefore(document.createElement("hs"), document.getElementById("headerLinks")); + +const songs = [ + { file: "Velkommen.mp3", name: 'Velkommen', artwork: "velkommen.jpg" }, + { file: "PG2.mp3", name: 'Frugal APE', artwork: "pg.jpg" }, + { file: "dreamscape.mp3", name: 'Dreamscape', artwork: "winds.png" }, + { file: "skychat.mp3", name: 'Skychat', artwork: "winds.png" } +]; + +// Options page +const optionsAside = document.createElement("aside"); +optionsAside.classList.add("closed"); +optionsAside.classList.add("metromenu"); +{ + const back = document.createElement("p"); + back.textContent = headeri18n.back; + back.classList.add("optionsToggle"); + + const title = document.createElement("h2"); + title.textContent = headeri18n.options; + optionsAside.appendChild(title); + optionsAside.appendChild(back); + + const content = document.createElement("div"); + content.innerHTML = ` +
    +
    +
    +

    +

    ${headeri18n.by} tenkuma

    +
    +
    +
    +

    Volume

    + +
    +
    +

    ${headeri18n.hideBackground}

    + +
    +
    + ` + optionsAside.appendChild(content); +} +body.appendChild(optionsAside); + +document.getElementById("volume").addEventListener("input", (e) => { + setVolume(e.target.value / 100); +}); // dirty workaround to replace inline function calling in the volume input + +const toggleIMG = document.querySelector('#sound'); +toggleIMG.addEventListener('click', () => { + toggleAudio(); +}) + +const hideBG = document.querySelector("input#background"); +if (localStorage.getItem("bgHidden") === "true") hideBG.checked = true, toggleBG(); +hideBG.addEventListener("click", () => { + toggleBG(); +}) + +function toggleBG() { + const bg = document.querySelector(".bg"); + bg.classList.toggle("invisible"); + localStorage.setItem("bgHidden", bg.classList.contains("invisible")) +} + +const songsDrawer = document.querySelector("#songDrawer"); +const drawerSongs = []; +const playlist = document.querySelector("#playlist"); +const expandButton = document.createElement('p'); +expandButton.textContent = "Playlist"; +expandButton.classList.add("playlistTitle"); +playlist.appendChild(expandButton); + +songs.forEach(song => { + const songElement = document.createElement("div"); + songElement.classList.add("drawerSong"); + songElement.dataset.song = song.file; + const songImage = document.createElement("img"); + songImage.src = `${rootPrefix}static/images/songs/${song.artwork}`; + songElement.appendChild(songImage); + songElement.addEventListener('click', () => { + changeSong(song.file); + }); + drawerSongs.push(songElement); + songsDrawer.appendChild(songElement); + + // Playlist + const playlistEntry = document.createElement("p"); + playlistEntry.textContent = song.name; + playlistEntry.addEventListener('click', () => { + changeSong(song.file); + }) + playlist.appendChild(playlistEntry); +}) + +const audioSelect = document.getElementById("songSelection"); +songs.forEach(song => { + const songOption = document.createElement("option"); + songOption.value = song.file; + songOption.textContent = song.name; + audioSelect.appendChild(songOption); +}); + +const playingSongLabel = document.querySelector(".playingSong"); + +function updatePlayingLabel(label) { + drawerSongs.forEach(sng => { + sng.classList.remove("selected"); + if (sng.dataset.song == label) { + sng.classList.add("selected"); + } + }); + + const songString = songs.find(item => item.file === label).name; + playingSongLabel.textContent = songString; +} + +const savedSong = localStorage.getItem("song"); + +if (savedSong) { + audioSelect.value = savedSong; + updatePlayingLabel(savedSong); +} else { + audioSelect.value = songs[0].file; + updatePlayingLabel(songs[0].file); +} + +const optionsButton = document.querySelectorAll(".optionsToggle"); +optionsButton.forEach(button => { + button.addEventListener('click', () => { + optionsAside.classList.toggle('closed'); + }); +}); + +// Create the audio object using the current select value +let audio = new Audio(`${rootPrefix}static/music/${audioSelect.value}`); + +const savedTime = localStorage.getItem("audioTime"); +const savedVolume = localStorage.getItem("volume"); + +if (savedVolume !== null) { + audio.volume = parseFloat(savedVolume); +} else { + audio.volume = 0.8; +} + +const wasPlaying = localStorage.getItem("audioPlaying") === 'true'; + +function play() { + audio.volume = localStorage.getItem("volume") ?? 0.8; + audio.play().catch(() => { + stop(); + showNotification(headeri18n.permissionIssue, headeri18n.permissionIssueNotificationContent, 5000); + });; + localStorage.setItem("audioPlaying", "true") + toggleIMG.src = `${rootPrefix}static/images/sound-on.png` + console.log(`[Music Player] playing ${audioSelect.value}`) +} + +function stop() { + audio.pause(); + localStorage.setItem("audioPlaying", "false") + toggleIMG.src = `${rootPrefix}static/images/sound-off.png` +} + +function setVolume(volume) { + audio.volume = volume; + localStorage.setItem("volume", volume); +} + +function toggleAudio() { + if (!audio.paused) { + stop(); + } else { + play(); + } +} + +window.addEventListener("beforeunload", () => { + localStorage.setItem("audioTime", audio.currentTime); + localStorage.setItem("audioPlaying", !audio.paused); +}); + +function changeSong(song) { + const wasPlaying = !audio.paused; + stop(); + localStorage.removeItem("audioTime"); + audio = new Audio(`${rootPrefix}static/music/${song}`); + if (savedVolume) setVolume(savedVolume); + console.log(`[Music Player] changing song to ${song}`) + localStorage.setItem("song", song); + updatePlayingLabel(song); + if (wasPlaying) play(); +} + +// hooking into the options menu 'change' event to update the song +audioSelect.addEventListener('change', () => { + changeSong(audioSelect.value); +}) + +// Set initial playback state and volume based on saved preferences +if (savedTime) audio.currentTime = parseFloat(savedTime); + +if (savedVolume) { + document.getElementById("volume").value = savedVolume * 100; +} else { + document.getElementById("volume").value = 100; +} + +if (wasPlaying) { + play(); +} else { + stop(); +} \ No newline at end of file diff --git a/docs/static/scripts/notification.js b/docs/static/scripts/notification.js new file mode 100644 index 0000000..a05b793 --- /dev/null +++ b/docs/static/scripts/notification.js @@ -0,0 +1,45 @@ +import { registerElementHint } from "./tips.js"; + +const notificationBox = document.createElement('div'); +notificationBox.classList.add('notificationBox'); + +export async function showNotification(title, subtitle, time, hint) { + if (!hint) { + hint = headeri18n.notificationDefaultHint; + } + const notificationBox = document.createElement('div'); + notificationBox.classList.add('notificationBox'); + notificationBox.dataset.tip = hint; + + const notificationTitle = document.createElement('h1'); + notificationTitle.innerHTML = title; + + const notificationSubtitle = document.createElement('p'); + notificationSubtitle.innerHTML = subtitle; + + notificationBox.appendChild(notificationTitle); + notificationBox.appendChild(notificationSubtitle); + document.querySelector('body').appendChild(notificationBox); + + registerElementHint(notificationBox); + + let clicked = false; + + notificationBox.addEventListener('click', () => { + hideNotification(notificationBox); + }) + + requestAnimationFrame(() => { + notificationBox.classList.add('shown'); + }); + await new Promise(r => setTimeout(r, time)); + if (!clicked) { + hideNotification(notificationBox); + } +} + +async function hideNotification(notificationBox) { + notificationBox.classList.remove('shown'); + await new Promise(r => setTimeout(r, 1000)); + notificationBox.remove(); +} \ No newline at end of file diff --git a/docs/static/scripts/telnetSimulator.js b/docs/static/scripts/telnetSimulator.js new file mode 100644 index 0000000..bfcefca --- /dev/null +++ b/docs/static/scripts/telnetSimulator.js @@ -0,0 +1,66 @@ +const screen = document.getElementById('telnetSimulationClientScreen'); +const input = document.getElementById('telnetSimulationInputBox'); +const btn = document.getElementById('telnetSimulationClientSend') +const sbtn = document.getElementById('telnetSimulationServerClean'); +const sscreen = document.getElementById('telnetSimulationServerScreen'); +const loading = document.getElementById("telnetSimulationLoadingHolder") +const loadingText = document.getElementById("telnetSimulationLoadingText") +let loadingms = 2500; + +btn.addEventListener('click', () => { + send_command(); +}) + +sbtn.addEventListener('click', () => { + screen.innerHTML = ''; + sscreen.innerHTML = ''; +}) + +async function send_command() { + if (!input.value) return; + const command = input.value; + input.value = ''; + screen.value += `telnet> ${command}\n`; + await wait(loadingms, "Camada OSI #7 - Aplicação: Usuário digitou o texto na aplicação."); + await wait(loadingms, "Camada OSI #6 - Apresentação: Tradução do comando para um pacote legível para o servidor."); + await wait(loadingms, "Camada OSI #5 - Sessão: Sistema do cliente abre uma conexão com o servidor."); + await wait(loadingms, "Camada OSI #4 - Transporte: Sistema do cliente troca informações com o servidor."); + await wait(loadingms, "Camada OSI #3 - Rede: O sistema do cliente resolve o endereço do servidor."); + await wait(loadingms, "Camada OSI #2 - Enlace de dados: Os frames são entregues ao dispositivo com o endereço MAC correto."); + await wait(loadingms, "Camada OSI #1 - Física: Os dados são transmitidos por cabo, ou via wireless, para o dispositivo de destino."); + process_command(command); +} + +async function process_command(command) { + sscreen.value += `Comando recebido: ${command}\n`; + args = command.split(" "); + command = args[0] + args.shift(); + await wait(loadingms, "O servidor empacota uma resposta, que também será passada por todas camadas até chegar no cliente."); + switch (command) { + case 'help': + screen.value += `Comandos disponíveis:\nhelp - mostra essa mensagem de ajuda\nping - responde 'pong'\necho [texto] - retorna o texto especificado no comando\ntimeout [milissegundos] - muda o tempo que as mensagens de carregamento da simulação duram` + break; + case 'echo': + screen.value += `Resposta do servidor: ${args.join(' ')}\n` + break; + case 'ping': + screen.value += `Pong!\n` + break; + case 'timeout': + loadingms = args[0] + screen.value += `O tempo das mensagens de carregamento foi mudado para ${args[0]}ms!` + break; + default: + screen.value += `Comando desconhecido! Envie help para ver a lista de comandos.\n` + break; + } +} + +async function wait(ms, txt = '') { + const delay = ms => new Promise(res => setTimeout(res, ms)); + loadingText.innerHTML = txt; + loading.style.display = "flex" + await delay(ms) + loading.style.display = "none" +} \ No newline at end of file diff --git a/docs/static/scripts/tips.js b/docs/static/scripts/tips.js new file mode 100644 index 0000000..7e72b43 --- /dev/null +++ b/docs/static/scripts/tips.js @@ -0,0 +1,57 @@ +const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); +const body = document.querySelector('body'); +const elements = document.querySelectorAll('[data-tip]'); +const hint = document.querySelector("#headerSubtitle"); +const hintPanelDefaultText = hint.innerHTML; +let fixedHint; +let currentObserver; + +elements.forEach(el => { + registerElementHint(el); +}) + +function cleanup() { + hint.innerHTML = hintPanelDefaultText; + hint.classList.remove('fixed'); + if (fixedHint) { + fixedHint.remove(); + } + if (currentObserver) { + currentObserver.disconnect(); + currentObserver = null; + } +} + +export function registerElementHint(el) { + if (isMobile) { + return; + } + el.addEventListener('mouseenter', function() { + cleanup(); + + if (currentObserver) { + currentObserver.disconnect(); + } + + currentObserver = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (!entry.isIntersecting) { + fixedHint = document.createElement('p'); + fixedHint.id = "fixedHint"; + fixedHint.innerHTML = el.dataset.tip; + fixedHint.setAttribute('aria-hidden', 'true'); + body.appendChild(fixedHint); + } else { + hint.innerHTML = el.dataset.tip; + } + }) + }); + + hint.innerHTML = el.dataset.tip; + currentObserver.observe(hint); + }); + + el.addEventListener('mouseleave', function() { + cleanup(); + }); +} \ No newline at end of file diff --git a/site/site.webmanifest.njk b/docs/static/site.webmanifest similarity index 60% rename from site/site.webmanifest.njk rename to docs/static/site.webmanifest index 42ed39d..ef11935 100644 --- a/site/site.webmanifest.njk +++ b/docs/static/site.webmanifest @@ -1,18 +1,15 @@ ---- -permalink: /static/site.webmanifest ---- { "name": "", "short_name": "", "icons": [ { - "src": "{{ '/static/android-chrome-192x192.png' | url }}", + "src": "/pages/tenkuma/web/static/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "{{ '/static/android-chrome-512x512.png' | url }}", + "src": "/pages/tenkuma/web/static/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } diff --git a/docs/static/toyourdreams.txt b/docs/static/toyourdreams.txt new file mode 100644 index 0000000..e38d468 --- /dev/null +++ b/docs/static/toyourdreams.txt @@ -0,0 +1,34 @@ + To My Dream + S3RL & Sara + 31/07/2013 + +Take me to my dreams (my dreams) +Show me what this life + +I taste the rainbow in the sky +I see the sounds as they pass me by +I'm falling through time as it flies away + +Take me to my dreams (my dreams) +Show me what this lifetime means +I see inside and open my mind +Take me to my dreams, show me what's real +Show me what's real +Show me what's real +Show me what's real +Enimatpyrtlyhtemid + +Take me to my dreams (my dreams) +Show me what this lifetime means +I see inside and open my mind +Take me to my dreams + +I hold emotions in my hand +And hear the echoes of future's past +I feel like I can understand it all +Enimatpyrtlyhtemid + +Take me to my dreams (my dreams) +Show me what this lifetime means +I see inside and open my mind +Take me to my dreams, show me what's real \ No newline at end of file diff --git a/docs/static/visual/github.svg b/docs/static/visual/github.svg new file mode 100644 index 0000000..f0db0db --- /dev/null +++ b/docs/static/visual/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/en/blog/index.html b/en/blog/index.html new file mode 100644 index 0000000..50692e1 --- /dev/null +++ b/en/blog/index.html @@ -0,0 +1,115 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    Listing Blog Posts:

    + +
    +
    +
    + + \ No newline at end of file diff --git a/en/index.html b/en/index.html new file mode 100644 index 0000000..8f74ddf --- /dev/null +++ b/en/index.html @@ -0,0 +1,355 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + + +
    +
    + +
    + + + + +
    +
    +

    Welcome

    +

    It seems that you have found my website! Hi, I am Adrian Victor (or tenkuma), a Brazilian guy who likes to mess around with computers, computer programs and enimatpyrtlyhtemids.

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + +

    About Me

    +

    + My name is Adrian Victor, but I go by tenkuma on-line. I'm in high school's last year, also studying computing. My hobbies are music and music production, programming, selfhosting, Linux, and a lot more. +

    +

    Tenkuma, or 天くま in japanese, means celestial bear and was given by a friend of mine that I lost contact a long time ago. Sakata is gone, but the name stayed and turned into an integral part of my digital self.

    + +

    Socials and Contact

    +

    + I'm publicly available at Mastodon (@tenkuma@mstdn.social), + GitHub (adrianvic), + Disroot Git (adrianvictor), + Discord (@adrianvic), + YouTube (@adrianvictor8), + BitView (tenkuma), + Modrinth (tenkumabear) + and XMPP (adrianvictor@disroot.org). +

    +

    You can message me on my E-mail (adrianvictor@disroot.org) or feel free to get in touch through any of the other places mentioned above. For project-specific subjects, check for the project's contact field or if there's no such field add +projectname to my E-mail address (example: adrianvictor+coolproject@disroot.org).

    +

    Please, avoid reaching me through ways not mentioned above :)

    +
    + +
    +
    +

    My Music

    +

    I've always loved music, and lately I've been finding music production very interesting. I publish my songs as tenkuma, and have founded an amateur label called Margarina Records with my friends.

    +

    You can find my latest on songs Genius.

    + +
    + + + + + + +
    +
    + +
    + + +
    + +
    +
    +

    My Videos

    +

    I make videos for my YouTube channel. Videos do not come regularly, there's no schedule—just a guy wanting to show something.

    +
    + +
    + + + + +
    + +
    +
    +

    My Software

    +

    I am studying computing at IFC (SC, Brazil) but in my free time I have some projects like computer applications, Minecraft plugins, Minecraft servers, etc... Anything that is public should be in my GitHub profile.

    +
    + +
    + +
    + +
    +
    +
    + Jamfish +
    + + + +
    +
    +

    Native music player for Android devices that connects to Jellyfin media servers. The code is based on Gelli's archived repository, which is based on an old version of Phonograph.

    +
    +
    + + + +
    +
    +
    + ItemEconomy +
    + + + +
    +
    +

    This PaperMC plugin integrates with VaultUnlocked to provide a unique, item-based economy system for your Minecraft server. Instead of relying solely on virtual balances, players use in-game items as physical currency, adding a layer of immersion and realism to your economy.

    +
    +
    + + + +
    +
    +
    + Eye of Nemesis +
    + + + +
    +
    +

    Eye of Nemesis is a plugin that allows server admins to write policies that will deny or allow (black/whitelist) players to do specific things based on the value of nodes.

    +
    +
    + + + +
    +
    +
    + PestoWiki +
    + + + +
    +
    +

    Multi-platform customizable client for wikis written in Python using PySide6 (QT).

    +
    +
    + +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/en/misc/88x31/index.html b/en/misc/88x31/index.html new file mode 100644 index 0000000..aa1e20e --- /dev/null +++ b/en/misc/88x31/index.html @@ -0,0 +1,3093 @@ + + + + + + + Adrian Victor - 88x31 + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + +
    +
    +

    88x31

    +

    This is the collection of 88x31 GIFs and images I've downloaded across the web.

    +
    +
    +

    Made by me

    +
    + + + +
    +

    Others

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + \ No newline at end of file diff --git a/en/misc/bookmarks/index.html b/en/misc/bookmarks/index.html new file mode 100644 index 0000000..1fc3cbd --- /dev/null +++ b/en/misc/bookmarks/index.html @@ -0,0 +1,454 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + +
    +
    +

    Bookmarks

    +

    A list of useful or cool websites/pages curated by me. Divided in sections for an easier navigation.

    + + + +
    +
    + +
    +

    Downloads

    + +
    + + + + + + + + + +
    + +
    + +
    +
    MalwareWatch
    +
    +
    + Enderman's website. Provides download to various useful softwares, operating system images and malware. +
    + +
    +
    +
    + +
    +
    Free Images
    +
    +
    + Search through millions of free stock photos, art and vector images. Every image is Public Domain or CC0. Free to Download and Free to Use. +
    + +
    +
    +
    + +
    +
    88x31
    +
    +
    + This website is a collection with over 6500 GIF's and PNG's in 88x31 format. In the late 1990 and begin of the 2000's it was very common to use these pictures on your personal website. +
    + + + + + + + + + + + +
    +
    +
    + +
    + +
    +

    Profiles

    + +
    + +
    +
    Mr. Nando
    +
    +
    + My friend Fernando, he makes music and YouTube videos of Minecraft and speedrun. +
    + +
    +
    +
    + +
    +
    Endermanch
    +
    +
    + Andrew is a software engineer, a malware enthusiast and most importantly, a weird tall creature. I've grown up with his videos and he's a great inspiration for me. +
    + +
    +
    +
    + +
    + +
    +

    Tools

    + +
    + +
    +
    Excalidraw
    +
    +
    + Whiteboard with no bloat. +
    + +
    +
    +
    + +
    +
    Postimages
    +
    +
    + Get permanent links of your images for forums, blogs, and social media. +
    + +
    +
    +
    + +
    +
    uBlock Origin
    +
    +
    + An efficient blocker for Chromium and Firefox. Fast and lean. +
    + + + + + + + +
    +
    +
    + +
    + +
    +

    Games

    + +
    + + + + + + + + + +
    + +
    + +
    +
    SteamGridDB
    +
    +
    + Download and share custom video game assets and personalize your gaming library. +
    + +
    +
    +
    + +
    + +
    +

    Music

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    CVGM Radio
    +
    +
    + Your home for video game, demo scene and computer related music. +
    + +
    +
    +
    + +
    + +
    +

    Piracy

    + +
    + + + + + +
    + +
    + +
    +
    Nyaa
    +
    +
    + A tracker of animes, mangas and related stuff. +
    + + + + + + + +
    +
    +
    + +
    +
    Lucida
    +
    +
    + With Lucida, you can download music directly from Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, and Yandex Music in high quality for free. No catches, no mandatory ads, no BS. How does it work? +
    + +
    +
    +
    + +
    +
    DoubleDouble
    +
    +
    + Download music directly from Amazon Music, Soundcloud, Qobuz, Deezer and Tidal for free. +
    + +
    +
    +
    + +
    + +
    +
    +
    + + \ No newline at end of file diff --git a/en/misc/index.html b/en/misc/index.html new file mode 100644 index 0000000..b8cb8d9 --- /dev/null +++ b/en/misc/index.html @@ -0,0 +1,124 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Misc

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    Miscellaneous

    + +
      +
      + + + +
      + + 88x31 + +
      + +
      + + + My collection of 88x31 GIFs and images. +
      + + + +
      + + Bookmarks + +
      + +
      + + + My collection of interesting websites/pages. +
      + +
      +
    +
    +
    +
    + + \ No newline at end of file diff --git a/global/blog/index.html b/global/blog/index.html new file mode 100644 index 0000000..5d1b59c --- /dev/null +++ b/global/blog/index.html @@ -0,0 +1,101 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    +
      + + + + + + + + + +
    +
    +
    +
    + + \ No newline at end of file diff --git a/global/index.html b/global/index.html new file mode 100644 index 0000000..49af188 --- /dev/null +++ b/global/index.html @@ -0,0 +1,343 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + + +
    +
    + +
    + + + + +
    +
    +

    +

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + +

    +

    +

    + +

    +

    +

    +
    + +
    +
    +

    +

    +

    + +
    + + + + + + +
    +
    + +
    + + +
    + +
    +
    +

    +

    +
    + +
    + + + + +
    + +
    +
    +

    +

    +
    + +
    + +
    + +
    +
    +
    + Jamfish +
    + + + +
    +
    +

    +
    +
    + + + +
    +
    +
    + ItemEconomy +
    + + + +
    +
    +

    +
    +
    + + + +
    +
    +
    + Eye of Nemesis +
    + + + +
    +
    +

    +
    +
    + + + +
    +
    +
    + PestoWiki +
    + + + +
    +
    +

    +
    +
    + +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/global/misc/index.html b/global/misc/index.html new file mode 100644 index 0000000..439ba1e --- /dev/null +++ b/global/misc/index.html @@ -0,0 +1,124 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Misc

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    + + +
    +
    +
    + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..13b0ed3 --- /dev/null +++ b/index.html @@ -0,0 +1,99 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + +
    +

    Pick a language

    + +
    +
    +
    + + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index ce1b23f..0000000 --- a/package-lock.json +++ /dev/null @@ -1,2730 +0,0 @@ -{ - "name": "adrianvictor-new", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "adrianvictor-new", - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2", - "@inframanufaktur/eleventy-plugin-clean-urls": "^1.0.2", - "@sardine/eleventy-plugin-external-links": "^1.4.0", - "eleventy-plugin-git-commit-date": "^1.0.2", - "eleventy-plugin-github-repos": "^0.1.8", - "eleventy-plugin-inline-link-favicon": "^1.1.0", - "eleventy-plugin-mastoarchive": "^0.2.0", - "eleventy-plugin-poison": "^1.0.1", - "eleventy-plugin-purgecss": "^0.6.0", - "eleventy-plugin-reading-time": "^0.0.1", - "eleventy-plugin-recent-changes": "^1.0.1", - "eleventy-plugin-webmentions": "^2.1.0" - } - }, - "node_modules/@11ty/dependency-tree": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@11ty/dependency-tree/-/dependency-tree-4.0.2.tgz", - "integrity": "sha512-RTF6VTZHatYf7fSZBUN3RKwiUeJh5dhWV61gDPrHhQF2/gzruAkYz8yXuvGLx3w3ZBKreGrR+MfYpSVkdbdbLA==", - "license": "MIT", - "dependencies": { - "@11ty/eleventy-utils": "^2.0.1" - } - }, - "node_modules/@11ty/dependency-tree-esm": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@11ty/dependency-tree-esm/-/dependency-tree-esm-2.0.4.tgz", - "integrity": "sha512-MYKC0Ac77ILr1HnRJalzKDlb9Z8To3kXQCltx299pUXXUFtJ1RIONtULlknknqW8cLe19DLVgmxVCtjEFm7h0A==", - "license": "MIT", - "dependencies": { - "@11ty/eleventy-utils": "^2.0.7", - "acorn": "^8.15.0", - "dependency-graph": "^1.0.0", - "normalize-path": "^3.0.0" - } - }, - "node_modules/@11ty/eleventy": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.1.6.tgz", - "integrity": "sha512-ZlSiR1PLdS2lv7TelBgWAhcvMiLNZkPBlLEb+lh7kGYZ+Mk0bo9qcYgVsewvw9W7Em0RH3wd01h5fAstNDh0zA==", - "license": "MIT", - "dependencies": { - "@11ty/dependency-tree": "^4.0.2", - "@11ty/dependency-tree-esm": "^2.0.4", - "@11ty/eleventy-dev-server": "^2.0.8", - "@11ty/eleventy-plugin-bundle": "^3.0.7", - "@11ty/eleventy-utils": "^2.0.7", - "@11ty/lodash-custom": "^4.17.21", - "@11ty/posthtml-urls": "^1.0.3", - "@11ty/recursive-copy": "^4.0.4", - "@sindresorhus/slugify": "^2.2.1", - "bcp-47-normalize": "^2.3.0", - "chokidar": "^3.6.0", - "debug": "^4.4.3", - "dependency-graph": "^1.0.0", - "entities": "^6.0.1", - "filesize": "^10.1.6", - "gray-matter": "^4.0.3", - "iso-639-1": "^3.1.5", - "js-yaml": "^4.1.1", - "kleur": "^4.1.5", - "liquidjs": "^10.27.0", - "luxon": "^3.7.2", - "markdown-it": "^14.2.0", - "minimist": "^1.2.8", - "moo": "0.5.2", - "node-retrieve-globals": "^6.0.1", - "nunjucks": "^3.2.4", - "picomatch": "^4.0.4", - "please-upgrade-node": "^3.2.0", - "posthtml": "^0.16.7", - "posthtml-match-helper": "^2.0.3", - "semver": "^7.8.1", - "slugify": "^1.6.9", - "tinyglobby": "^0.2.16" - }, - "bin": { - "eleventy": "cmd.cjs" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/11ty" - } - }, - "node_modules/@11ty/eleventy-dev-server": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@11ty/eleventy-dev-server/-/eleventy-dev-server-2.0.8.tgz", - "integrity": "sha512-15oC5M1DQlCaOMUq4limKRYmWiGecDaGwryr7fTE/oM9Ix8siqMvWi+I8VjsfrGr+iViDvWcH/TVI6D12d93mA==", - "license": "MIT", - "dependencies": { - "@11ty/eleventy-utils": "^2.0.1", - "chokidar": "^3.6.0", - "debug": "^4.4.0", - "finalhandler": "^1.3.1", - "mime": "^3.0.0", - "minimist": "^1.2.8", - "morphdom": "^2.7.4", - "please-upgrade-node": "^3.2.0", - "send": "^1.1.0", - "ssri": "^11.0.0", - "urlpattern-polyfill": "^10.0.0", - "ws": "^8.18.1" - }, - "bin": { - "eleventy-dev-server": "cmd.js" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/11ty" - } - }, - "node_modules/@11ty/eleventy-fetch": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/@11ty/eleventy-fetch/-/eleventy-fetch-5.1.3.tgz", - "integrity": "sha512-4HS6QB/mVWTVlE6kjCKPkjkC1Z0YOqizJaHR05zK+E7a2b4EUC3T+wLktIy7wEl76ZoarkY45EKLmTw1XuR8fQ==", - "license": "MIT", - "dependencies": { - "@11ty/eleventy-utils": "^2.0.7", - "@rgrove/parse-xml": "^4.2.1", - "debug": "^4.4.3", - "flatted": "^3.4.2", - "p-queue": "6.6.2" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/11ty" - } - }, - "node_modules/@11ty/eleventy-plugin-bundle": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@11ty/eleventy-plugin-bundle/-/eleventy-plugin-bundle-3.0.7.tgz", - "integrity": "sha512-QK1tRFBhQdZASnYU8GMzpTdsMMFLVAkuU0gVVILqNyp09xJJZb81kAS3AFrNrwBCsgLxTdWHJ8N64+OTTsoKkA==", - "license": "MIT", - "dependencies": { - "@11ty/eleventy-utils": "^2.0.2", - "debug": "^4.4.0", - "posthtml-match-helper": "^2.0.3" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/11ty" - } - }, - "node_modules/@11ty/eleventy-plugin-syntaxhighlight": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@11ty/eleventy-plugin-syntaxhighlight/-/eleventy-plugin-syntaxhighlight-5.0.2.tgz", - "integrity": "sha512-T6xVVRDJuHlrFMHbUiZkHjj5o1IlLzZW+1IL9eUsyXFU7rY2ztcYhZew/64vmceFFpQwzuSfxQOXxTJYmKkQ+A==", - "license": "MIT", - "dependencies": { - "prismjs": "^1.30.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/11ty" - } - }, - "node_modules/@11ty/eleventy-utils": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@11ty/eleventy-utils/-/eleventy-utils-2.0.7.tgz", - "integrity": "sha512-6QE+duqSQ0GY9rENXYb4iPR4AYGdrFpqnmi59tFp9VrleOl0QSh8VlBr2yd6dlhkdtj7904poZW5PvGr9cMiJQ==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/11ty" - } - }, - "node_modules/@11ty/eleventy/node_modules/entities": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/@11ty/eleventy/node_modules/picomatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz", - "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/@11ty/lodash-custom": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/@11ty/lodash-custom/-/lodash-custom-4.17.21.tgz", - "integrity": "sha512-Mqt6im1xpb1Ykn3nbcCovWXK3ggywRJa+IXIdoz4wIIK+cvozADH63lexcuPpGS/gJ6/m2JxyyXDyupkMr5DHw==", - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/11ty" - } - }, - "node_modules/@11ty/posthtml-urls": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@11ty/posthtml-urls/-/posthtml-urls-1.0.3.tgz", - "integrity": "sha512-1YvhnkaNlFnnJic1rBMWmTC2adbuy+JQiBfl1Hecr1Wjjik1pQZmGyk/eC9zKX/FQv52s2Nht1Gi/UwhYqrBeg==", - "license": "MIT", - "dependencies": { - "evaluate-value": "^2.0.0", - "http-equiv-refresh": "^2.0.1", - "list-to-array": "^1.1.0", - "parse-srcset": "^1.0.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@11ty/recursive-copy": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@11ty/recursive-copy/-/recursive-copy-4.0.4.tgz", - "integrity": "sha512-oI7m8pa7/IAU/3lqRU9vjBbs20iKFo7x+1K9kT3aVira6scc1X9MjBdgLCHzLJeJ7iB6wydioA+kr9/qPnvmlQ==", - "license": "ISC", - "dependencies": { - "errno": "^1.0.0", - "junk": "^3.1.0", - "minimatch": "^3.1.5", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@inframanufaktur/clean-urls": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@inframanufaktur/clean-urls/-/clean-urls-1.0.1.tgz", - "integrity": "sha512-WCYk+lp0Cu+jts6C3myAuzEwZov7ZjYMNkXjk3RhIU3I5wXrrZQNAn7Si7376MEpTGWEBsVU4rlwW4UU6SKTWA==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@inframanufaktur/eleventy-plugin-clean-urls/-/eleventy-plugin-clean-urls-1.0.2.tgz", - "integrity": "sha512-pdSXyzShC7x0rO0ujjqA7Zeq9n6lLXVYFCAf+Wm9lpAJ0gY0eDMbYqkrqs8GaWwkNAhhpXu/yJUFxiTWdET3Xg==", - "license": "MIT", - "dependencies": { - "@inframanufaktur/clean-urls": "^1.0.1", - "linkedom": "^0.14.4" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/css-select": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", - "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/domutils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/linkedom": { - "version": "0.14.26", - "resolved": "https://registry.npmjs.org/linkedom/-/linkedom-0.14.26.tgz", - "integrity": "sha512-mK6TrydfFA7phrnp+1j57ycBwFI5bGSW6YXlw9acHoqF+mP/y+FooEYYyniOt5Ot57FSKB3iwmnuQ1UUyNLm5A==", - "license": "ISC", - "dependencies": { - "css-select": "^5.1.0", - "cssom": "^0.5.0", - "html-escaper": "^3.0.3", - "htmlparser2": "^8.0.1", - "uhyphen": "^0.2.0" - } - }, - "node_modules/@inframanufaktur/eleventy-plugin-clean-urls/node_modules/uhyphen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/uhyphen/-/uhyphen-0.2.0.tgz", - "integrity": "sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==", - "license": "ISC" - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@rgrove/parse-xml": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rgrove/parse-xml/-/parse-xml-4.2.1.tgz", - "integrity": "sha512-ZOkOIicFSf5qXbC+8ps5hA+nEhCxsUDpm2U1xp1BACoUZyMkGXEQjsWLD30K77r1fzOTaqEZS85++fmzwCIOJQ==", - "license": "ISC", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@sardine/eleventy-plugin-external-links": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@sardine/eleventy-plugin-external-links/-/eleventy-plugin-external-links-1.4.0.tgz", - "integrity": "sha512-K9WDFQwLMSBo6bjqNmH3kZSdXKTAb0MYHK3Tmm8IChsprF1XHl574U4pxgouTwJNjzlxqPKI/JYbY2okg0tiaQ==", - "license": "MIT", - "dependencies": { - "linkedom": "^0.13.0" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/@sindresorhus/slugify": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-2.2.1.tgz", - "integrity": "sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==", - "license": "MIT", - "dependencies": { - "@sindresorhus/transliterate": "^1.0.0", - "escape-string-regexp": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@sindresorhus/slugify/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@sindresorhus/transliterate": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-1.6.0.tgz", - "integrity": "sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==", - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@sindresorhus/transliterate/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@tweetback/canonical": { - "version": "2.0.48", - "resolved": "https://registry.npmjs.org/@tweetback/canonical/-/canonical-2.0.48.tgz", - "integrity": "sha512-wOg/a/zl6rXqJyUpGyOjtWEmZQPOwU88HDeoovE8UebCAvFRMzQaEyEGnY0jq9jEoYcFsAj3teoUy8pOR0HJ7A==", - "license": "MIT" - }, - "node_modules/a-sync-waterfall": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz", - "integrity": "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==", - "license": "MIT" - }, - "node_modules/acorn": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz", - "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.3.5", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", - "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", - "license": "MIT", - "dependencies": { - "acorn": "^8.11.0" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "license": "Python-2.0" - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", - "license": "MIT" - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "license": "MIT" - }, - "node_modules/bcp-47": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-2.1.1.tgz", - "integrity": "sha512-KLw+H/gd2p4zly1X7Yh/qziuyae5/w/QFnvTng9eZL5fvszL7Whl3MBoWF8yxL7ksUjBfOD+OxkytiqbBpG+Fw==", - "license": "MIT", - "dependencies": { - "is-alphabetical": "^2.0.0", - "is-alphanumerical": "^2.0.0", - "is-decimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/bcp-47-match": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz", - "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/bcp-47-normalize": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/bcp-47-normalize/-/bcp-47-normalize-2.3.0.tgz", - "integrity": "sha512-8I/wfzqQvttUFz7HVJgIZ7+dj3vUaIyIxYXaTRP1YWoSDfzt6TUmxaKZeuXR62qBmYr+nvuWINFRl6pZ5DlN4Q==", - "license": "MIT", - "dependencies": { - "bcp-47": "^2.0.0", - "bcp-47-match": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "license": "ISC" - }, - "node_modules/brace-expansion": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz", - "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cheerio": { - "version": "1.0.0-rc.12", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", - "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", - "license": "MIT", - "dependencies": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "htmlparser2": "^8.0.1", - "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0" - }, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" - } - }, - "node_modules/cheerio-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", - "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-select": "^5.1.0", - "css-what": "^6.1.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cheerio-select/node_modules/css-select": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", - "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cheerio-select/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/cheerio-select/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/cheerio-select/node_modules/domutils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/cheerio-select/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/domutils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/cheerio/node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "license": "MIT", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/circular": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/circular/-/circular-1.0.5.tgz", - "integrity": "sha512-n4Sspha+wxUl5zeA3JYp1zFCjsLz2VfXIe2gRKNQBrIX+7iPdGcCGZOF8W8IULtllZ/aejXtySfdFFt1wy/3JQ==" - }, - "node_modules/cli-logger": { - "version": "0.5.40", - "resolved": "https://registry.npmjs.org/cli-logger/-/cli-logger-0.5.40.tgz", - "integrity": "sha512-piXVCa0TLm/+A7xdVEhw7t4OSrsmJaZIekWcoGrVMY1bHtLJTXgiNzgHlKT0EVHQ14sCKWorQJazU7UWgZhXOQ==", - "dependencies": { - "circular": "^1.0.5", - "cli-util": "~1.1.27" - } - }, - "node_modules/cli-regexp": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/cli-regexp/-/cli-regexp-0.1.2.tgz", - "integrity": "sha512-L++cAQ5g0Nu6aV56B3uaR+c7jEGSAa4WApY1ZN7XiD8niJ5jRfXE/qvMwgz3uZBG0rft4hJS75Vpz2F3mSm4Mg==" - }, - "node_modules/cli-util": { - "version": "1.1.27", - "resolved": "https://registry.npmjs.org/cli-util/-/cli-util-1.1.27.tgz", - "integrity": "sha512-Z6+zI0kIrqf9Oi+PmUm8J9AELp8bTf2vCLYseudYtdOPNJvzpNiExO95aHIm477IbPdu/8SE9Wvc/M1kJl4Anw==", - "dependencies": { - "cli-regexp": "~0.1.0" - } - }, - "node_modules/commander": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", - "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", - "license": "MIT", - "engines": { - "node": ">=18" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "license": "MIT" - }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-what": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", - "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", - "license": "MIT" - }, - "node_modules/dayjs": { - "version": "1.11.21", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz", - "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==", - "license": "MIT" - }, - "node_modules/debug": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/dependency-graph": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-1.0.0.tgz", - "integrity": "sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "license": "MIT" - }, - "node_modules/eleventy-plugin-git-commit-date": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/eleventy-plugin-git-commit-date/-/eleventy-plugin-git-commit-date-1.0.2.tgz", - "integrity": "sha512-//pN28Y64D6AKBRKsOdG2hYG8WSIrOzf5JBmTO3RjHj0F1n/neFfJ0Jc1YorRIGX38iDfi2Bu6SHQRidWJRcxQ==", - "license": "MIT" - }, - "node_modules/eleventy-plugin-github-repos": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/eleventy-plugin-github-repos/-/eleventy-plugin-github-repos-0.1.8.tgz", - "integrity": "sha512-Bhhqj8NLRTWDxD6Ydy9wu5PCz96Ulyqd7SYqdKXPbYhjzwKhX0895Xdz+I+LaQ+bCTpVnxgF2ngT6O5iFvCVsQ==", - "license": "MIT", - "dependencies": { - "@11ty/eleventy": "^3.1.2", - "@11ty/eleventy-fetch": "^5.1.1", - "cli-logger": "^0.5.40" - } - }, - "node_modules/eleventy-plugin-inline-link-favicon": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/eleventy-plugin-inline-link-favicon/-/eleventy-plugin-inline-link-favicon-1.1.0.tgz", - "integrity": "sha512-ZhzQ9WYwhrHBGHv1fBwK1y2QYYJt8jX4oUL3jB82AWCv03WpiMBK77OIJcGBo7XQdo4gIm6oPQZ8tG/150ApeA==", - "license": "MIT" - }, - "node_modules/eleventy-plugin-mastoarchive": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eleventy-plugin-mastoarchive/-/eleventy-plugin-mastoarchive-0.2.0.tgz", - "integrity": "sha512-NYSx9yQxTcaA2mn1GVA3tfArqJoAI5YhOKU/GFCAEhRZv26GPmRGtlD7jAqPVIS68wEpUDlgh9WacHOPEWDY7w==", - "license": "ISC", - "dependencies": { - "lodash": "^4.17.21", - "node-fetch": "^2.6.9" - } - }, - "node_modules/eleventy-plugin-poison": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/eleventy-plugin-poison/-/eleventy-plugin-poison-1.0.1.tgz", - "integrity": "sha512-mjfed3IZvPRJCGtjWUnjOsNREKptikeIeXNwXlIv20l/YqSq01MtFZKMcFvmwFs1d/3CVQAjrLuXg/eJQeXRvg==", - "license": "MIT" - }, - "node_modules/eleventy-plugin-purgecss": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/eleventy-plugin-purgecss/-/eleventy-plugin-purgecss-0.6.0.tgz", - "integrity": "sha512-PZLqSTn8hAwa1YA8qy1ybNvtbbwZfz3SDQlRS2IghD56PFRC+QuetbqOeHmhA7IIFAFYYUDKYpGh0iEt9Ent1A==", - "license": "MIT", - "dependencies": { - "purgecss": "^8.0.0" - } - }, - "node_modules/eleventy-plugin-reading-time": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/eleventy-plugin-reading-time/-/eleventy-plugin-reading-time-0.0.1.tgz", - "integrity": "sha512-6MRHwrWMYm/u9lJK4/mnyS+6SyQxJSQcTfa1DqQS9fpQRPsZ9mdO9rZ/6DAhZpX2/cXxrbc6qxgcv6Qj90im1g==", - "license": "MIT" - }, - "node_modules/eleventy-plugin-recent-changes": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/eleventy-plugin-recent-changes/-/eleventy-plugin-recent-changes-1.0.1.tgz", - "integrity": "sha512-lFP9Zyyy/o+HglF2aI9neLfskjKLaD/MAD6RQHNfdi7D0HAZcUo5GIRO932G7R9VTDKpJeJIAUx2PMDJQqbzIQ==", - "license": "ISC", - "dependencies": { - "gitlog": "^4.0.4" - } - }, - "node_modules/eleventy-plugin-webmentions": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eleventy-plugin-webmentions/-/eleventy-plugin-webmentions-2.1.0.tgz", - "integrity": "sha512-zoLTF/xw1KkU6xU3eMH+DFF+RaCtF7VImyJS3MQ1vRHQ7siBSb/bF7gv7ldSwk0eMxtj5ABVhalUf6dt+2wiVg==", - "license": "MIT", - "dependencies": { - "@tweetback/canonical": "^2.0.27", - "html-entities": "^2.3.3", - "node-fetch": "^2.6.6", - "sanitize-html": "^2.7.0", - "truncate-html": "^1.0.4" - } - }, - "node_modules/encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/errno": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/errno/-/errno-1.0.0.tgz", - "integrity": "sha512-3zV5mFS1E8/1bPxt/B0xxzI1snsg3uSCIh6Zo1qKg6iMw93hzPANk9oBFzSFBFrwuVoQuE3rLoouAUfwOAj1wQ==", - "license": "MIT", - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "license": "MIT" - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/esm-import-transformer": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/esm-import-transformer/-/esm-import-transformer-3.0.5.tgz", - "integrity": "sha512-1GKLvfuMnnpI75l8c6sHoz0L3Z872xL5akGuBudgqTDPv4Vy6f2Ec7jEMKTxlqWl/3kSvNbHELeimJtnqgYniw==", - "license": "MIT", - "dependencies": { - "acorn": "^8.15.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/evaluate-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/evaluate-value/-/evaluate-value-2.0.0.tgz", - "integrity": "sha512-VonfiuDJc0z4sOO7W0Pd130VLsXN6vmBWZlrog1mCb/o7o/Nl5Lr25+Kj/nkCCAhG+zqeeGjxhkK9oHpkgTHhQ==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "license": "MIT" - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fastq": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", - "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/filesize": { - "version": "10.1.6", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-10.1.6.tgz", - "integrity": "sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 10.4.0" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz", - "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "~2.4.1", - "parseurl": "~1.3.3", - "statuses": "~2.0.2", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/flatted": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", - "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", - "license": "ISC" - }, - "node_modules/fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", - "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/gitlog": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/gitlog/-/gitlog-4.0.8.tgz", - "integrity": "sha512-FcTLP7Rc0H1vWXD+J/aj5JS1uiCEBblcYXlcacRAT73N26OMYFFzrBXYmDozmWlV2K7zwK5PrH16/nuRNhqSlQ==", - "license": "BSD-3-Clause", - "dependencies": { - "debug": "^4.1.1", - "tslib": "^2.5.0" - }, - "engines": { - "node": ">= 10.x" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/gray-matter": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", - "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", - "license": "MIT", - "dependencies": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.15.0.tgz", - "integrity": "sha512-ttBQIIQPDeLjpPOohtUdXuXUVoA2uIB6fEH9HyJ7234s5mBJ5wTx20njxplLZQgLaOfpmPQA7X2t5AX6tIPbog==", - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/html-entities": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", - "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ], - "license": "MIT" - }, - "node_modules/html-escaper": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-3.0.3.tgz", - "integrity": "sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==", - "license": "MIT" - }, - "node_modules/htmlparser2": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", - "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.2", - "domutils": "^2.8.0", - "entities": "^3.0.1" - } - }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/http-equiv-refresh": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/http-equiv-refresh/-/http-equiv-refresh-2.0.1.tgz", - "integrity": "sha512-XJpDL/MLkV3dKwLzHwr2dY05dYNfBNlyPu4STQ8WvKCFdc6vC5tPXuq28of663+gHVg03C+16pHHs/+FmmDjcw==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/http-errors": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", - "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", - "license": "MIT", - "dependencies": { - "depd": "~2.0.0", - "inherits": "~2.0.4", - "setprototypeof": "~1.2.0", - "statuses": "~2.0.2", - "toidentifier": "~1.0.1" - }, - "engines": { - "node": ">= 0.8" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/express" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "license": "ISC" - }, - "node_modules/is-alphabetical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", - "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-alphanumerical": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", - "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", - "license": "MIT", - "dependencies": { - "is-alphabetical": "^2.0.0", - "is-decimal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-decimal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", - "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-json": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-json/-/is-json-2.0.1.tgz", - "integrity": "sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==", - "license": "ISC" - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/iso-639-1": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/iso-639-1/-/iso-639-1-3.1.6.tgz", - "integrity": "sha512-ZFar/L4ngX7wZh2QX+Fiftmuf0igWJsrJtfizrovWifF1gAWkfmRa5Z1m0LQZbm0hKCHRDYhLRSLFrSqNe4EJA==", - "license": "MIT", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/js-yaml": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz", - "integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/puzrin" - }, - { - "type": "github", - "url": "https://github.com/sponsors/nodeca" - } - ], - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/junk": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", - "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/launder": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/launder/-/launder-1.7.1.tgz", - "integrity": "sha512-mU6WRz5EusL9ZZuiZ5SO4Y6C0P9PAUR9iwdb6bzj4KDihm28DiHFw+/yk9DBH4f+Pv1wuzQ4e2jV3oQ7mkIqvw==", - "license": "MIT", - "dependencies": { - "dayjs": "^1.11.7" - } - }, - "node_modules/linkedom": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/linkedom/-/linkedom-0.13.7.tgz", - "integrity": "sha512-We9cyPHV/exsrC43KXtItjqSTxwrK9pLpOnG6TLzqXrmqwe/wqd3Gi6eAAU4YCqfTgy79R8g75hY2fS7723XUg==", - "license": "ISC", - "dependencies": { - "css-select": "^4.2.1", - "cssom": "^0.5.0", - "html-escaper": "^3.0.3", - "htmlparser2": "^7.2.0", - "uhyphen": "^0.1.0" - } - }, - "node_modules/linkify-it": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.2.tgz", - "integrity": "sha512-ONTm2jCMAVZjgQa/Fy1kScXsuOoF5NPTsoFBdE1KVIZ2vAh/r9+Bqo+0jINCBYnavTPQZz38QzFTme79ENoN3Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/puzrin" - }, - { - "type": "github", - "url": "https://github.com/sponsors/markdown-it" - } - ], - "license": "MIT", - "dependencies": { - "uc.micro": "^2.0.0" - } - }, - "node_modules/liquidjs": { - "version": "10.27.1", - "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-10.27.1.tgz", - "integrity": "sha512-ylE+1q2kSef1UxAyxqbyuWM3FRWS1v48JK1Y3CoW3bD6TSNXZh0+GsVnihujEpKyR+Jejx2aRAFfC3AHm9rElg==", - "license": "MIT", - "dependencies": { - "commander": "^10.0.0" - }, - "bin": { - "liquid": "bin/liquid.js", - "liquidjs": "bin/liquid.js" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/liquidjs" - } - }, - "node_modules/liquidjs/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "license": "MIT", - "engines": { - "node": ">=14" - } - }, - "node_modules/list-to-array": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/list-to-array/-/list-to-array-1.1.0.tgz", - "integrity": "sha512-+dAZZ2mM+/m+vY9ezfoueVvrgnHIGi5FvgSymbIgJOFwiznWyA59mav95L+Mc6xPtL3s9gm5eNTlNtxJLbNM1g==", - "license": "MIT" - }, - "node_modules/lodash": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", - "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", - "license": "MIT" - }, - "node_modules/luxon": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.7.2.tgz", - "integrity": "sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==", - "license": "MIT", - "engines": { - "node": ">=12" - } - }, - "node_modules/markdown-it": { - "version": "14.3.0", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.3.0.tgz", - "integrity": "sha512-RCEsPjR+sr0x+AuYp601tKTkgFG4YEPLCzHST3cQ/fhlJkqAkz1L2/Qbp1j9qw5SBwQHFBoW8+hoN5xssOF0Tw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/puzrin" - }, - { - "type": "github", - "url": "https://github.com/sponsors/markdown-it" - } - ], - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1", - "entities": "^4.5.0", - "linkify-it": "^5.0.2", - "mdurl": "^2.0.0", - "punycode.js": "^2.3.1", - "uc.micro": "^2.1.0" - }, - "bin": { - "markdown-it": "bin/markdown-it.mjs" - } - }, - "node_modules/markdown-it/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/mdurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", - "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/mime-db": { - "version": "1.54.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", - "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", - "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", - "license": "MIT", - "dependencies": { - "mime-db": "^1.54.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/express" - } - }, - "node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", - "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/moo": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", - "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", - "license": "BSD-3-Clause" - }, - "node_modules/morphdom": { - "version": "2.7.8", - "resolved": "https://registry.npmjs.org/morphdom/-/morphdom-2.7.8.tgz", - "integrity": "sha512-D/fR4xgGUyVRbdMGU6Nejea1RFzYxYtyurG4Fbv2Fi/daKlWKuXGLOdXtl+3eIwL110cI2hz1ZojGICjjFLgTg==", - "license": "MIT" - }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.15", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.15.tgz", - "integrity": "sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "license": "MIT", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-retrieve-globals": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/node-retrieve-globals/-/node-retrieve-globals-6.0.1.tgz", - "integrity": "sha512-j0DeFuZ/Wg3VlklfbxUgZF/mdHMTEiEipBb3q0SpMMbHaV3AVfoUQF8UGxh1s/yjqO0TgRZd4Pi/x2yRqoQ4Eg==", - "license": "MIT", - "dependencies": { - "acorn": "^8.14.1", - "acorn-walk": "^8.3.4", - "esm-import-transformer": "^3.0.3" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/nunjucks": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.4.tgz", - "integrity": "sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ==", - "license": "BSD-2-Clause", - "dependencies": { - "a-sync-waterfall": "^1.0.0", - "asap": "^2.0.3", - "commander": "^5.1.0" - }, - "bin": { - "nunjucks-precompile": "bin/precompile" - }, - "engines": { - "node": ">= 6.9.0" - }, - "peerDependencies": { - "chokidar": "^3.3.0" - }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } - } - }, - "node_modules/nunjucks/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "license": "MIT", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-queue": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", - "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", - "license": "MIT", - "dependencies": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-timeout": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", - "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "license": "MIT", - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/parse-srcset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz", - "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==", - "license": "MIT" - }, - "node_modules/parse5": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", - "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", - "license": "MIT", - "dependencies": { - "entities": "^6.0.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz", - "integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==", - "license": "MIT", - "dependencies": { - "domhandler": "^5.0.3", - "parse5": "^7.0.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5-htmlparser2-tree-adapter/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/parse5/node_modules/entities": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", - "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/please-upgrade-node": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", - "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", - "license": "MIT", - "dependencies": { - "semver-compare": "^1.0.0" - } - }, - "node_modules/postcss": { - "version": "8.5.16", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.16.tgz", - "integrity": "sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.12", - "picocolors": "^1.1.1", - "source-map-js": "^1.2.1" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz", - "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==", - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/posthtml": { - "version": "0.16.7", - "resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.16.7.tgz", - "integrity": "sha512-7Hc+IvlQ7hlaIfQFZnxlRl0jnpWq2qwibORBhQYIb0QbNtuicc5ZxvKkVT71HJ4Py1wSZ/3VR1r8LfkCtoCzhw==", - "license": "MIT", - "dependencies": { - "posthtml-parser": "^0.11.0", - "posthtml-render": "^3.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/posthtml-match-helper": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/posthtml-match-helper/-/posthtml-match-helper-2.0.3.tgz", - "integrity": "sha512-p9oJgTdMF2dyd7WE54QI1LvpBIkNkbSiiECKezNnDVYhGhD1AaOnAkw0Uh0y5TW+OHO8iBdSqnd8Wkpb6iUqmw==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "posthtml": "^0.16.6" - } - }, - "node_modules/posthtml-parser": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.11.0.tgz", - "integrity": "sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==", - "license": "MIT", - "dependencies": { - "htmlparser2": "^7.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/posthtml-render": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-3.0.0.tgz", - "integrity": "sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==", - "license": "MIT", - "dependencies": { - "is-json": "^2.0.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/prismjs": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", - "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "license": "MIT" - }, - "node_modules/punycode.js": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", - "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/purgecss": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-8.0.0.tgz", - "integrity": "sha512-QFJyps9y5oHeXnNA3Ql1EaAqWBivNwQn19Pw1lt9RxfB+4e+bIyqCyuombk79D6Fxe+lPXggVfI1WtRGEBwgbQ==", - "license": "MIT", - "dependencies": { - "commander": "^12.1.0", - "fast-glob": "^3.3.2", - "postcss": "^8.4.47", - "postcss-selector-parser": "^7.0.0" - }, - "bin": { - "purgecss": "bin/purgecss.js" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/range-parser": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz", - "integrity": "sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/express" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/reusify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/sanitize-html": { - "version": "2.17.5", - "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.17.5.tgz", - "integrity": "sha512-ZmU1joGRrvoyctKIiuwUxqR6moLoU2Wk+2bMccN6f7UwhAmwYDvWziqPxRDDN2Qip62NqnIrVrT9akbL6Wretg==", - "license": "MIT", - "dependencies": { - "deepmerge": "^4.2.2", - "escape-string-regexp": "^4.0.0", - "htmlparser2": "^10.1.0", - "is-plain-object": "^5.0.0", - "launder": "^1.7.1", - "parse-srcset": "^1.0.2", - "postcss": "^8.3.11" - } - }, - "node_modules/sanitize-html/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/sanitize-html/node_modules/dom-serializer/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/sanitize-html/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/sanitize-html/node_modules/domutils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/sanitize-html/node_modules/entities": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", - "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/sanitize-html/node_modules/htmlparser2": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz", - "integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.2.2", - "entities": "^7.0.1" - } - }, - "node_modules/section-matter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", - "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/semver": { - "version": "7.8.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz", - "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", - "license": "MIT" - }, - "node_modules/send": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz", - "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==", - "license": "MIT", - "dependencies": { - "debug": "^4.4.3", - "encodeurl": "^2.0.0", - "escape-html": "^1.0.3", - "etag": "^1.8.1", - "fresh": "^2.0.0", - "http-errors": "^2.0.1", - "mime-types": "^3.0.2", - "ms": "^2.1.3", - "on-finished": "^2.4.1", - "range-parser": "^1.2.1", - "statuses": "^2.0.2" - }, - "engines": { - "node": ">= 18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/express" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "license": "ISC" - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/slugify": { - "version": "1.6.9", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.9.tgz", - "integrity": "sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg==", - "license": "MIT", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/source-map-js": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "license": "BSD-3-Clause" - }, - "node_modules/ssri": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-11.0.0.tgz", - "integrity": "sha512-aZpUoMN/Jj2MqA4vMCeiKGnc/8SuSyHbGSBdgFbZxP8OJGF/lFkIuElzPxsN0q8TQQ+prw3P4EDfB3TBHHgfXw==", - "license": "ISC", - "dependencies": { - "minipass": "^7.0.3" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/statuses": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", - "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/strip-bom-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", - "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/tinyglobby": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", - "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", - "license": "MIT", - "dependencies": { - "fdir": "^6.5.0", - "picomatch": "^4.0.4" - }, - "engines": { - "node": ">=12.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/SuperchupuDev" - } - }, - "node_modules/tinyglobby/node_modules/fdir": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", - "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", - "license": "MIT", - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "picomatch": "^3 || ^4" - }, - "peerDependenciesMeta": { - "picomatch": { - "optional": true - } - } - }, - "node_modules/tinyglobby/node_modules/picomatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz", - "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "license": "MIT", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "license": "MIT" - }, - "node_modules/truncate-html": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/truncate-html/-/truncate-html-1.2.2.tgz", - "integrity": "sha512-0pogasqkxhCj8PWqxLPTYqtC66ruVXzOS6uNcOCI7yxS1Bf2HMqeXUty5mlbv0UjjlCuExBpPN4vEAFV6imsug==", - "license": "MIT", - "dependencies": { - "cheerio": "1.0.0-rc.12" - } - }, - "node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "license": "0BSD" - }, - "node_modules/uc.micro": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", - "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", - "license": "MIT" - }, - "node_modules/uhyphen": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/uhyphen/-/uhyphen-0.1.0.tgz", - "integrity": "sha512-o0QVGuFg24FK765Qdd5kk0zU/U4dEsCtN/GSiwNI9i8xsSVtjIAOdTaVhLwZ1nrbWxFVMxNDDl+9fednsOMsBw==", - "license": "ISC" - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/urlpattern-polyfill": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.1.0.tgz", - "integrity": "sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==", - "license": "MIT" - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "license": "MIT" - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "license": "BSD-2-Clause" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "license": "MIT", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/ws": { - "version": "8.21.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz", - "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==", - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index 5d966b9..0000000 --- a/package.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "name": "adrianvictor-new", - "version": "1.0.0", - "description": "", - "main": "index.js", - "scripts": { - "build": "npx @11ty/eleventy", - "serve": "npx @11ty/eleventy --serve", - "production": "IS_PRODUCTION=true npx @11ty/eleventy --serve", - "test": "echo \"Error: no test specified\" && exit 1" - }, - "keywords": [], - "author": "", - "license": "ISC", - "type": "module", - "dependencies": { - "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2", - "@inframanufaktur/eleventy-plugin-clean-urls": "^1.0.2", - "@sardine/eleventy-plugin-external-links": "^1.4.0", - "eleventy-plugin-git-commit-date": "^1.0.2", - "eleventy-plugin-github-repos": "^0.1.8", - "eleventy-plugin-inline-link-favicon": "^1.1.0", - "eleventy-plugin-mastoarchive": "^0.2.0", - "eleventy-plugin-poison": "^1.0.1", - "eleventy-plugin-purgecss": "^0.6.0", - "eleventy-plugin-reading-time": "^0.0.1", - "eleventy-plugin-recent-changes": "^1.0.1", - "eleventy-plugin-webmentions": "^2.1.0" - } -} diff --git a/posts/android-developer-verification/index.html b/posts/android-developer-verification/index.html new file mode 100644 index 0000000..b2d9d9b --- /dev/null +++ b/posts/android-developer-verification/index.html @@ -0,0 +1,151 @@ + + + + + + + Adrian Victor - On the Recent Changes to App Distribution Requirements in the Android System by Google. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    On the Recent Changes to App Distribution Requirements in the Android System by Google.

    +

    Adrian Victor - 8/29/2025 (last edited in 5/15/2026)

    + + Also available in other languages: + +
  • + + português + +
  • + + +
    + + +

    Recap

    + +

    Android is that open-source operating system that works well for users and is loved by developers. Always known for breaking barriers and being open, expandable, versatile, and even friendly to power users–something not every system dares to be (iOS, Windows Phone). For a long time, Android was seen this way compared to its competitors: a breath of fresh air against the abusive practices of companies like Apple. But it seems the Android we've nurtured for two decades no longer fits in the pockets of Google executives; it is too free, creating ethical and technical barriers to the profitable exploitation path adopted by its developer.

    + +

    What happened with Android?

    + +

    At the end of this month (August 2025), Google announced that starting September 2026, all apps installed on certified devices (those with Google Android and locked bootloader) will need to undergo a developer verification process. This process involves collecting personal data from the individual distributing the app, so they can be identified and held accountable for potential malicious activities related to their software. The same applies to companies, which must also pay a $25 USD fee. This process is mandatory even if the app is distributed outside Google's official stores, raising obvious concerns about user privacy and freedom.

    + +

    Implications, Justifications, and Motivations of the New Policy

    + +

    It is important to examine Google's justification and try to understand its true motivation behind this distribution policy. Let's start by analyzing Google's statement:

    + +
    "By making Android safer, we're protecting the open environment that allows developers and users to confidently create and connect. Android's new developer verification is an extra layer of security that deters bad actors and makes it harder for them to spread harm."
    + +

    They argue that the new rules are intended to improve user security, preventing malicious software from being installed on certified Android devices. Again, we see "security" used to justify controversial practices that limit the end user's control over their device. This was also the justification given for the proven abusive sideloading restrictions that led Google to lose a lawsuit against Epic Games—a more sophisticated version of the same issue is happening here.

    + +

    It is easy to sympathize with the company when the words are well-phrased, but as a user who loves alternative software outside the big tech ecosystem, I have seen enough examples of authority abuse to conclude that Google's recent actions are simply an attempt to regain part, if not all, of the control it had over Android devices before the previously mentioned case.

    + +

    One example is the kio-gdrive software, widely used to integrate Google Drive with the KDE file manager on Linux systems. The software was blocked from asking users if they authorized access to their Google Drive account. Instead of the permission popup, Google displayed a warning implying that the legitimate software could be malicious. Developers reported:

    + +
    "Google blocked us from using this back in June because we weren't able +justify our API usage to their satisfaction. As such, the permission is now blocked [...] mamaking 25% of the KAccounts KCM non-functional. Remove the gdrive permissions [...] for now so at least other Google things can work (at least in theory)."
    + +
    "It's beyond stupid (IMHO) if individual users can't indicate that they're fine with a particular piece of software accessing their supposedly sensitive data!"
    + +

    Although I couldn't find the exact internal conversations between developers—and I'm giving Google the benefit of the doubt—it is at least suspicious that Google did not agree that software performing its primary functions within Google Drive should have a valid reason to access it. This was not an isolated case; Google operates behind the scenes to control what happens on Android. For example, apps compiled for older system versions would show alarming security warnings because recent changes introduced more permission barriers, even though old apps didn't support them. A reasonable warning would emphasize that permissions must be granted to support optional features, but the actual messages were vague, conveniently scaring users attempting sideloading and helping maintain the Play Store monopoly.

    + +

    Speaking of alarming warnings, let's discuss Play Protect, software embedded in the Google Play Store that scans installed sideloaded apps and reports the results back to Google. At first glance, this is a good idea, assuming the user opts in. The problem arises when the difference between malware detection messages and warnings triggered by outdated software is unclear, causing two serious effects: it renders Google's protection service almost useless while maintaining the Play Store monopoly.

    + +

    Imagine sideloading for the first time: you try to install an old version of a favored software. You receive exaggerated warnings about the supposed dangers, abandon the installation, and install the latest version from the Play Store. Google thus indirectly forces more users to use its store, ensuring the lucrative 30% transaction fee.

    + +

    Now consider a second scenario: you're an advanced Android user who understands sideloading and loves installing open-source apps outside the Play Store. You click a suspicious link and download a malicious APK. Play Protect warns you during installation, but the warnings are so frequent and exaggerated (even when no malware is detected) that you ignore them out of habit. The result: malware on your device, and Play Protect was ineffective.

    + +

    Sometimes, downloading software outside the Play Store is the only option, because developers may not want to publish apps there—either for privacy reasons (developers must disclose personal data when publishing) or because of publishing fees, which may discourage donation—supported developers. Users must have the freedom to choose what runs on their devices.

    + +

    According to current information, developers don't have to make their data public if they avoid distributing apps via the Play Store. This is the least Google could do to make the new distribution policies fairer. Google also claims the verification isn't meant to inspect app content or purpose; it is supposedly only to block malware distribution. Whether this holds up remains to be seen, given it could also serve as a convenient tool for abuse of power.

    + +

    Next Steps

    + +

    We must watch how these policies are applied and how they affect the Android ecosystem. An inevitable consequence is that countless abandoned apps, perfectly functional without the new requirements, will disappear overnight. Not all old software connects to the internet, and not all represents a constant threat. Google is taking away the option for experienced users to take responsibility and say: "I know what I'm doing!", treating us as if they know what's best for everyone.

    + +

    The commercial Android on phones is based on the AOSP, meaning Android's core remains open, and Google hasn't taken that from users yet. I plan to write another post explaining how to regain control of your device through system modifications, from the simplest, safest, most stable methods to advanced approaches, if you feel confident.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/posts/instalando-fl-studio-no-linux/index.html b/posts/instalando-fl-studio-no-linux/index.html new file mode 100644 index 0000000..72006e8 --- /dev/null +++ b/posts/instalando-fl-studio-no-linux/index.html @@ -0,0 +1,179 @@ + + + + + + + Adrian Victor - Instalando FL Studio no Linux. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Instalando FL Studio no Linux.

    +

    Adrian Victor - 4/19/2026 (editado por último em 5/15/2026)

    + + Também disponível em outros idiomas: + +
  • + + english + +
  • + + +
    + + + + + + +

    Prólogo

    +

    Desde que mudei permanentemente para o Linux em 2024, venho me impressionando com a capacidade inabalável da comunidade open-source de trazer a vida no Linux softwares complexos feitos originalmente para Windows. Entretanto, um dos programas amaldiçoados com os mais ímpetos e abstratos erros na velha guarda do Wine é o FL Studio, caracteristica essa que fez com que eu, por muito tempo, achasse que a DAW da Image-Line não iria rodar de jeito nenhum no sistema do penguim.

    +

    Acontece que o FL roda no Linux, e roda muito bem, considerando a sua complexidade. Descartando uns problemas visuais, algumas VSTs que simplesmente não rodam e uma gambiarra para rodar plugins 32-bits, a experiência de usar o FL Studio no Linux é bem sólida. Parece que a Valve, Wine e comunidade open-source não estão para brincadeira mesmo.

    +

    Antes de ir às formalidades, gostaria de definir o escopo desse tutorial. Faço ele com tudo o que cabe na minha memória recente trabalhando com o FL no Linux. Mas também não é uma postagem estática; se estiver faltando alguma coisa me mande um e-mail e eu atualizo.

    + +

    Preparativos

    +

    O tutorial vai ser feito usando o Arch Linux em um computador com o conjunto de Intel i5-1235U + 16gb de RAM. Porém, vale ressaltar que, pela natureza do flatpak, o tutorial se aplica a qualquer máquina com o gerenciador de pacotes instalado.

    +

    O primeiro passo é instalar o software Bottles, que está disponível com o nome de com.usebottles.bottles no Flathub. O comando mais simples para instalar o app em um sistema com acesso ao Flathub (habilitado por padrão na maioria das distros, como na minha) é flatpak install bottles. Se você não é muito fã de rodar comandos, a maioria das lojas de apps no Linux baixam flatpaks e já vem com o Flathub habilitado—e saiba que essa é a última vez que vamos rodar comandos.

    +

    Se você não é fã do Flatpak, há um pacote do bottles no AUR. Pelo que eu entendi tem até uns desenvolvedores do Bottles envolvidos na manutenção desse pacote.

    +

    Depois disso, crie uma nova garrafa no Bottles. Eu recomendo criar uma no preset de jogos, já que o FL é meio visualmente complexo.

    +

    Por fim, antes da instalação, vamos instalar as dependências, que ficam acessíveis por um botão de mesmo nome nas opções da garrafa. O FL Studio possui apenas duas dependências opcionais:

    +
    +
    allfonts
    +
    Fontes da Microsoft e Adobe, ajuda com alguns problemas relacionados a exibição de texto no FL. Eu geralmente não preciso instalar, mas já experienciei as teclas do piano roll sem legenda pela falta dessa dependência.
    +
    webview2
    +
    Necessário para o funcionamento do FL Cloud, Gopher (IA), Help Manual e talvez mais alguma outra função do FL que puxa um webview. Recomendo não instalar essa dependência se você não usa nenhuma dessas funções, porque sem ela reparei em um ganho de performance.
    +
    +

    Estamos prontos para partir para a instalação da DAW.

    + +

    Instalando o FL Studio

    +

    O Bottles já oferece um pacote de instalação do FL na página da garrafa, basta clicar em Instalar Programas e pesquisar por FL Studio. Porém, esse método de instalação não funcionou para mim, o instalador travou nas dependências. Creio que, se você tiver sucesso na sua instalação, o resultado vai ser o mesmo que fazendo o que eu vou descrever abaixo.

    +

    Primeiro, obtenha um instalador do FL Studio, caso já não tenha. A Image-Line oferece um instalador em seu website.

    +

    Com o instalador em mãos, basta usar o botão "Iniciar executável..." na página da garrafa e selecionar o seu instalador. Em alguns instantes você deve estar na instalação do FL Studio.

    +

    Se tudo ocorrer direito, a DAW recém instalada deve aparecer na lista de aplicativos com o nome "FL64". Você já pode iniciar ela.

    + +

    Configuração Inicial

    +

    Ao abrir o FL Studio pela primeira vez, você provavelmente vai se deparar com uma tela de erro dizendo "The MIDI input device is already allocated. It may be in use by another application.", ignore os erros, e no menu de baixo escrito "Input", desabilite as entradas que tem a etiqueta FAIL.

    +

    Por mais que eu adoraria dizer que o FL Studio funciona perfeitamente no Linux, estamos trabalhando em um ambiente não suportado pela Image-Line e certamente mais instável do que seus sistemas nativos. Portanto, recomendo que habilite a opção de salvamento automático no modo mais agressivo.

    + +

    Trabalhando com VSTs

    +

    Os plug-ins de produção musical são a maior fonte de incompatibilidades no nosso ambiente, mas isso não significa que a maioria não funciona fora da caixa.

    +

    Além dos que não funcionam, e, potencialmente, travam o seu FL Studio, há os plugins que não se comportam direito, como é o exemplo do Antares Auto-Tune Pro que funciona perfeitamente—dada a excessão de que a interface e animações ficam estranhas e travadas. Acho que isso se dá e repete em tantos plugins porque os frameworks usados para fazer suas interfaces funcionam de alguma forma bizarra que o Soda não é otimizado para rodar.

    +

    De qualquer forma, quanto a esses plugins teimosos, as únicas recomendações que eu tenho para mitigar o problema são evitar ao máximo deixá-los abertos enquanto faz outras coisas, e—se possível—usar alternativas que tem mais bom senso no quesito interface.

    +

    VSTs 32bits

    +

    Agora que o FL Studio está funcionando, você pode tentar abrir alguma VST de 32bits, e, fazendo isso, ver que ela provavelmente vai congelar a DAW.

    +

    Se você por acaso congelar sem o devido backup em um projeto importante, ao invés de fechar o FL Studio, você pode usar seu gerenciador de tarefas para matar o processo ILBridge.exe. Esse é o processo que trava a DAW quando você tenta carregar um plugin de 32bits, é a ponte que faz ele funcionar no FL Studio de 64bits—quando interrompido, a DAW exibe um erro sobre não conseguir carregar o plugin e volta ao normal.

    +

    Mas existe sim uma forma de rodar plugins 32bits. Adicione um Fruity Wrapper no lugar do plugin que você quer adicionar, mude para a aba de opções do mesmo e deixe ele assim. Agora clique com o botão direito no gerador/efeito que você acabou de adicionar e substitua-o pelo plugin desejado. A página de opções deve carregar. Clique no botão escrito "Processing" e marque "External window".

    +

    Pronto, o plugin deve aparecer em uma janela separada do FL Studio e estar funcionando como esperado.

    + +

    Menções Honrosas

    +

    Abaixo estão alguns ressaltes que vale a pena saber:

    +

    Discos Virtuais

    +

    O Bottles usa uma versão própria do Wine chamada Soda, mas no fundo, no fundo mesmo, ainda é o Wine. Portanto, você pode se beneficiar das configurações de discos virtuais do Wine. Nas opções da garrafa, ao expandir o submenu "Ferramentas Legado do Wine", você encontra a opção "Configuração". Ao clicar nessa, um menu de aparência pré-histórica vai aparecer, no topo você pode ver uma aba nomeada "Unidades". Aí você pode mapear diferentes unidades do Windows para locais do seu sistema Linux, e eles vão aparecer no explorador de arquivos do Wine e estarão acessíveis para os aplicativos.

    +

    Aceleração de Hardware

    +

    Se o seu FL Studio estiver rodando terrivelmente mal, recomendo que dê uma olhada na opção "Use placa gráfica dedicada" da sua garrafa, com ela desativada a minha DAW trava incessantemente.

    + +

    Conclusões

    +

    Não sou a pessoa mais apta para dizer até onde a usabilidade da DAW se extende no Linux; não sou nem de longe um usuário avançado do FL. Mas, a título de informação, consegui produzir a faixa Velkommen inteiramente no sistema do penguim e não tenho a intenção de voltar para o Windows.

    +

    É mesmo inconveniente quando um plugin ou outro não funciona, quando eu tenho que criar um Fruity Wrapper antes de usar um plugin 32bits, ou quando eu penso que talvez a DAW possa performar um pouco melhor nativamente no Windows. Porém, para mim, é um preço muito justo a se pagar para misturar nas minhas músicas um pouco desse suco de ideologia que é me desafiar a não usar o sistema da Microsoft.

    +

    Espero que você também encontre esse conforto—não na conveniência, mas em desafiar o molde com intenção. Excentricidade digna de um artista.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/posts/installing-fl-studio-on-linux/index.html b/posts/installing-fl-studio-on-linux/index.html new file mode 100644 index 0000000..8491c89 --- /dev/null +++ b/posts/installing-fl-studio-on-linux/index.html @@ -0,0 +1,162 @@ + + + + + + + Adrian Victor - Installing FL Studio on linux. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Installing FL Studio on linux.

    +

    Adrian Victor - 4/19/2026 (last edited in 5/15/2026)

    + + Also available in other languages: + +
  • + + português + +
  • + + +
    + + +

    Prologue

    +

    Since I permanently moved to Linux in 2024, I have been impressed by the unwavering ability of the open-source community to bring to life in Linux complex software originally made for Windows. However, one of the programs cursed with the most stubborn and abstract errors in the old guard of Wine is FL Studio, a characteristic that made me, for a long time, think that Image-Line's DAW would not run at all on the penguin's system.

    +

    It turns out that FL runs on Linux, and runs very well, considering its complexity. Disregarding some visual problems, some VSTs that simply don't run, and a workaround to run 32-bit plugins, the experience of using FL Studio on Linux is quite solid. It seems that Valve, Wine, and the open-source community are not messing around.

    +

    Before getting into the formalities, I would like to define the scope of this tutorial. I'm making it with everything that fits in my recent memory working with FL on Linux. But it's also not a static post; if something is missing, send me an email and I'll update it.

    + +

    Preparations

    +

    The tutorial will be done using Arch Linux on a computer with an Intel i5-1235U + 16GB of RAM setup. However, it's worth noting that, due to the nature of flatpak, the tutorial applies to any machine with the package manager installed.

    +

    The first step is to install the Bottles software, which is available under the name com.usebottles.bottles on Flathub. The simplest command to install the app on a system with access to Flathub (enabled by default on most distros, like mine) is flatpak install bottles. If you're not a fan of running commands, most app stores on Linux download flatpaks and come with Flathub already enabled—and know that this is the last time we'll run any command.

    +

    If you're not a fan of Flatpak, there's a Bottles package in the AUR. From what I understand, there are even some Bottles developers involved in maintaining that package.

    +

    After that, create a new bottle in Bottles. I recommend creating one in the games preset, since FL is somewhat visually complex.

    +

    Finally, before installation, let's install the dependencies, which are accessible through a button of the same name in the bottle's options. FL Studio has only two optional dependencies:

    +
    +
    allfonts
    +
    Microsoft and Adobe fonts, helps with some text display issues in FL. I generally don't need to install it, but I have experienced unlabeled piano roll keys due to the lack of this dependency.
    +
    webview2
    +
    Necessary for FL Cloud, Gopher (AI), Help Manual, and possibly some other FL functions that pull a webview. I recommend not installing this dependency if you don't use any of these functions, because without it I noticed a performance gain.
    +
    +

    We're ready to proceed with installing the DAW.

    + +

    Installing FL Studio

    +

    Bottles already offers an FL installation package on the bottle's page, just click on Install Programs and search for FL Studio. However, this installation method didn't work for me; the installer froze on the dependencies. I believe that if you're successful with your installation, the result will be the same as what I'm about to describe below.

    +

    First, get an FL Studio installer, if you don't already have one. Image-Line offers an installer on its website.

    +

    With the installer in hand, just use the "Run executable..." button on the bottle's page and select your installer. In a few moments you should be in the FL Studio installation.

    +

    If everything goes right, the newly installed DAW should appear in the applications list with the name "FL64". You can already start it.

    + +

    Initial Configuration

    +

    When you open FL Studio for the first time, you'll probably come across an error screen saying "The MIDI input device is already allocated. It may be in use by another application.", ignore the errors, and in the menu at the bottom labeled "Input", disable the inputs that have the FAIL label.

    +

    Much as I would love to say that FL Studio works perfectly on Linux, we're working in an environment not supported by Image-Line and certainly more unstable than its native systems. Therefore, I recommend that you enable the autosave option in the most aggressive mode.

    + +

    Working with VSTs

    +

    Music production plugins are the biggest source of incompatibilities in our environment, but that doesn't mean that the majority don't work out of the box.

    +

    Beyond those that don't work, and potentially crash your FL Studio, there are plugins that don't behave right, like the example of Antares Auto-Tune Pro which works perfectly—given the exception that the interface and animations work strange and sluggish. I think this happens and repeats in so many plugins because the frameworks used to make their interfaces work somehow bizarrely that Soda is not optimized to run.

    +

    In any case, as for these stubborn plugins, the only recommendations I have to mitigate the problem are to avoid leaving them open as much as possible while doing other things, and—if possible—use alternatives that have more sense when it comes to interface.

    + +

    32-bit VSTs

    +

    Now that FL Studio is working, you can try to open a 32-bit VST, and, doing so, see that it will probably freeze the DAW.

    +

    If you happen to freeze without proper backup on an important project, instead of closing FL Studio, you can use your task manager to kill the ILBridge.exe process. This is the process that freezes the DAW when you try to load a 32-bit plugin; it's the bridge that makes it work in 64-bit FL Studio—when interrupted, the DAW displays an error about not being able to load the plugin and returns to normal.

    +

    But there is indeed a way to run 32-bit plugins. Add a Fruity Wrapper in place of the plugin you want to add, switch to its options tab and leave it like that. Now right-click on the generator/effect you just added and replace it with the desired plugin. The options page should load. Click on the button labeled "Processing" and check "External window".

    +

    Done, the plugin should appear in a separate window from FL Studio and be working as expected.

    + +

    Honorable Mentions

    +

    Below are some highlights worth knowing:

    + +

    Virtual Drives

    +

    Bottles uses its own version of Wine called Soda, but deep down, it's still Wine. Therefore, you can benefit from Wine's virtual drive settings. In the bottle's options, when expanding the "Legacy Wine Tools" submenu, you'll find the "Configuration" option. When you click on it, a prehistoric-looking menu will appear; at the top you can see a tab named "Drives". There you can map different Windows drives to locations on your Linux system, and they will appear in the Wine file explorer and be accessible to applications.

    + +

    Hardware Acceleration

    +

    If your FL Studio is running terribly, I recommend that you take a look at the "Use dedicated graphics card" option of your bottle, with it disabled my DAW freezes incessantly.

    + +

    Conclusions

    +

    I'm not the most apt person to say how far the DAW's usability extends on Linux; I'm far from an advanced FL user. But, for your information, I was able to produce the track Velkommen entirely on the penguin's system and have no intention of going back to Windows.

    +

    It's really inconvenient when one plugin or another doesn't work, when I have to create a Fruity Wrapper before using a 32-bit plugin, or when I think that maybe the DAW could perform a little better natively on Windows. However, for me, it's a very fair price to pay to mix into my music a little bit of that ideology juice that is challenging myself not to use Microsoft's system.

    +

    I hope you also find that comfort—not in convenience, but in challenging the mold with intention. Eccentricity worthy of an artist.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/posts/verificacao-de-desenvolvedor-no-android/index.html b/posts/verificacao-de-desenvolvedor-no-android/index.html new file mode 100644 index 0000000..7ec775a --- /dev/null +++ b/posts/verificacao-de-desenvolvedor-no-android/index.html @@ -0,0 +1,150 @@ + + + + + + + Adrian Victor - Sobre as recentes mudanças nos requisitos de distribuição de apps no sistema Android feitas pela Google. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Sobre as recentes mudanças nos requisitos de distribuição de apps no sistema Android feitas pela Google.

    +

    Adrian Victor - 8/29/2025 (editado por último em 5/15/2026)

    + + Também disponível em outros idiomas: + +
  • + + english + +
  • + + +
    + + +

    Recapitulando

    + +

    Android é aquele sistema operacional open-source que funciona bem para os usuários, e que os desenvolvedores amam. Sempre conhecido por quebrar barreiras e por ser aberto, expansível, versátil e até amigável com os mais nerds, coisa que nem todo sistema tem a cara e coragem de ser (iOS, Windows Phone). É assim que, por muito tempo, o Android foi visto em relação aos seus concorrentes: Um suspiro de ar puro em relação às práticas abusivas de empresas como a Apple. Mas parece que o Android que cultivamos por duas décadas não cabe mais no bolso dos executivos da Google, é livre demais, e isso criou barreiras éticas e técnicas no lucrativo caminho de exploração adotado pela sua desenvolvedora.

    + +

    O que aconteceu com o Android?

    + +

    A Google anunciou no final deste mês (Agosto de 2025) que a partir de Setembro de 2026 todos os apps instalados em dispositivos certificados (aqueles com o Android da Google e de bootloader bloqueado) precisarão passar pelo processo de verificação de desenvolvedor, processo cujo consiste da coleta de dados pessoais do indivíduo que vai distribuir a aplicação para que o mesmo possa ser identificado e atribuído a possíveis atividades maliciosas relacionadas ao seu software, o mesmo vale para empresas, que além disso precisam pagar uma taxa de 25 USD. O processo é forçado e necessário mesmo com a distribuição do app sendo feita fora das lojas oficiais da Google, o que trouxe óbvias preocupações sobre privacidade e liberdade dos usuários do sistema.

    + +

    As implicações, justificativas e motivações da nova política

    + +

    É importante analisar a justificativa e tentar entender a real motivação que a Google teve ao criar tal política de distribuição. Portanto começamos analisando a fala da Google:

    + +
    "Para tornar o Android mais seguro, estamos protegendo o ambiente aberto que permite que desenvolvedores e usuários criem e se conectem com confiança. A nova verificação de desenvolvedor do Android é uma camada que detém atores maliciosos e faz com que seja mais difícil para que eles espalhem o mau."
    + +

    Ela argumenta que as novas regras do sistema foram feitas com a intenção de aprimorar a segurança do usuário, evitando que software malicioso seja instalado em dispositivos Android certificados. Outra vez vemos segurança sendo usada como forma de justificar práticas controversas que limitam o poder do usuário final no seu próprio dispositivo. Essa também era a justificativa dada para a prática comprovadamente abusiva de bloqueio de sideloading de apps que levou a Google a perder seu caso no tribunal contra a empresa Epic Games, aqui vemos uma versão mais sofisticada da mesma.

    + +

    É fácil simpatizar com a empresa quando as palavras são bem colocadas, mas como usuário ávido de softwares alternativos aos das big-techs, eu já vi exemplos de abuso de autoridade suficientes para concluir que as recentes ações da Google não passam de uma forma de recuperar parte, se não todo o controle que ela tinha sobre os dispositivos Android antes do caso mencionado anteriormente.

    + +

    Um exemplo desses abusos é o caso do software kio-gdrive, que era amplamente utilizado para integrar o Google Drive ao explorador de arquivos do KDE, um ambiente para sistemas Linux. O software foi bloqueado de perguntar para os usuários se eles autorizavam o acesso a sua conta do Google Drive, no lugar do popup de permissão, a Google colocou um aviso informando os usuários que o software legítimo poderia ser malicioso, seguem os relatos dos desenvolvedores:

    + +
    "Google bloqueou o nosso acesso a essa função em junho porque não conseguimos explicar o nosso uso da API de forma que eles julgam satisfatória. Por causa disso o sistema de permissões agora está bloqueado [...] tornando 25% das KAccounts KCM não funcionais. Remova as permissões [...] para que pelo menos o restante das integrações funcione (pelo menos em teoria)."
    + +
    "É mais que estúpido (na minha humilde opinião) usuários individuais não poderem indicar que eles concordam com um software específico acessando seus dados supostamente sensíveis!"
    + +

    Por mais que durante minhas pesquisas eu não tenha achado exatamente quais conversas foram trocadas pelo time de desenvolvedores—e com isso estou dando um grande benefício da dúvida para a Google—, é no mínimo suspeito que a Google não tenha concordado que um software que exerce suas funções primárias dentro do ambiente do Google Drive tem um motivo válido para usufruir do mesmo. Esse não foi um caso único, a Google age nas entrelinhas para controlar o que acontece ou não no Android, como quando apps compilados para versões mais antigas do sistema mostravam um aviso assustador sobre segurança pois mudanças recentes haviam colocado mais barreiras no sistema de permissões, porém os apps antigos não tinham suporte a elas. Um aviso sobre as permissões que seriam dadas ao aplicativo instalado, enfatizando que elas teriam que ser dadas ao aplicativo por ele não suportar as permissões opcionais é razoável, entretanto a mensagem exibida foi bem mais vaga do que deveria ser, o que convenientemente serviu para assustar os usuários que experimentavam sideloading e ajudou a manter o monopólio da Google Play Store.

    + +

    Falando em avisos assustadores, chegou a hora de falar do Play Protect, um software embutido na Google Play Store que escaneia os apps instalados no seu dispositivo via sideloading e retorna o resultado para a base de dados da Google, uma ideia boa a primeira vista, levando em conta que a empresa respeita a escolha do usuário com o modelo opt-in, questionando o mesmo se ele gostaria de enviar seus apps instalados para a análise. O grande problema aparece quando a diferença entre as mensagens de detecção de malware e as que são acionadas pelo simples fato do software estar desatualizado é tão turva que causa dois efeitos graves, que juntos tornam o serviço de proteção da Google praticamente inútil para o usuário, enquanto mantém o monopólio da Google.

    + +

    Suponhamos que você está experimentando sideloading pela primeira vez: você tenta instalar uma versão antiga de um software que você gosta. Você recebe a mensagem exacerbada sobre os supostos perigos de instalar o software desatualizado, desiste da instalação e instala a versão atual pela Google Play Store. Assim a Google força, mesmo que indiretamente, mais um usuário a usar sua loja, garantindo os lucrativos 30% de taxa nas transações dos apps.

    + +

    Agora apresento um segundo cenário hipotético: você é um usuário mais avançado do sistema Android que tem total noção do que se trata o sideloading e adora instalar seus aplicativos de código aberto por fora da Play Store. Porém você clica em um link duvidoso e baixa um arquivo APK malicioso. Na hora de instalar você recebe o aviso do Play Protect, mas ele é tão frequente e exagerado (até mesmo quando nenhum malware foi detectado) que você acaba dispensando-o por já estar acostumado a ter que fazer isso (isso quando o usuário já não desativou ele nas configurações da Play Store). Agora o usuário tem um malware em seu dispositivo, o Play Protect foi inútil.

    + +

    Em certas situações baixar um software por fora da loja da Google é a única opção, pois existem casos onde o desenvolvedor não quer publicar seu app na Play Store, tanto por questões de privacidade—já que os desenvolvedores são forçados a revelar certos dados pessoais para o público quando publicam seus apps—, quanto pela taxa imposta na publicação e vendas internas do aplicativo, que pode afastar desenvolvedores sustentados puramente por doações dos usuários. Pouco importa o motivo, os usuários devem ser livres para escolher o que roda em seus dispositivos.

    + +

    De acordo com as informações disponibilizadas até agora, os desenvolvedores não precisarão tornar seus dados públicos caso optem por não distribuir sua aplicação na Play Store, e isso é o mínimo que a Google poderia fazer para tornar as novas políticas de distribuição mais justas para os desenvolvedores. A empresa também afirma que essa verificação não tem o objetivo de verificar o que há dentro da aplicação ou sua finalidade, portanto estaria sendo imposta puramente para barrar a distribuição contínua de malwares, resta ver se a afirmação se sustenta, tendo em vista que isso também pode ser uma ferramenta de abuso de poder conveniente para a Google, como outras serviram nos exemplos citados acima.

    + +

    Próximos passos

    + +

    Devemos ficar atentos a como essas novas políticas vão ser aplicadas, e como as mesmas afetarão o ecossistema do Android. Uma consequência inevitável das mudanças é que um número inestimável de aplicações abandonadas pelos desenvolvedores, que, se não fosse pelos novos requisitos, seriam perfeitamente funcionais serão perdidas de um dia para o outro. Nem todo software antigo se conecta à internet, nem todo software antigo representa um perigo constante ao usuário. A Google está tirando do usuário experiente a opção de assumir a responsabilidade e dizer: "Eu sei o que estou fazendo!", nos segurando como crianças, como se soubessem o que é melhor para todos.

    + +

    O Android comercializado nos celulares é baseado no AOSP, o que significa que a força vital do Android é aberta, e isso a Google ainda não tirou dos usuários. Portanto pretendo fazer um outro post explicando como você pode recuperar o controle do seu dispositivo por meio de modificações no sistema, da forma mais simples, segura e estável possível, até as formas mais avançadas, caso você se sinta confiante.

    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/pt/blog/index.html b/pt/blog/index.html new file mode 100644 index 0000000..3be56fa --- /dev/null +++ b/pt/blog/index.html @@ -0,0 +1,115 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Blog

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    Listando Postagens do Blog:

    + +
    +
    +
    + + \ No newline at end of file diff --git a/pt/index.html b/pt/index.html new file mode 100644 index 0000000..6dffb0d --- /dev/null +++ b/pt/index.html @@ -0,0 +1,354 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + + +
    +
    + +
    + + + + +
    +
    +

    Bem-vindo

    +

    Parece que você encontrou meu website! Olá, sou Adrian Victor (ou tenkuma), um cara brasileiro que gosta de mexer com computadores, programas de computadores e enimatpirtlitemídios.

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    + +

    Sobre Mim

    +

    + Meu nome é Adrian Victor, mas on-line eu uso o nickname tenkuma. Estou no último ano do ensino médio e estudo informática. Meus hobbies são escutar e produzir música, programação, selfhosting, Linux, e muito mais. +

    +

    Tenkuma, ou 天くま em japonês, significa urso celestial e foi um nome dado a mim por um amigo que eu já perdi contato há muito tempo. Sakata se foi, mas o nome ficou e se tornou parte integral da personalidade do meu eu digital até hoje.

    + +

    Redes Sociais e Contato

    +

    + Estou publicamente disponível no Mastodon (@tenkuma@mstdn.social), + GitHub (adrianvic), + Disroot Git (adrianvictor), + Discord (@adrianvic), + YouTube (@adrianvictor8), + BitView (tenkuma), + Modrinth (tenkumabear) + e XMPP (adrianvictor@disroot.org). +

    +

    Você pode enviar um correio eletrônico para (adrianvictor@disroot.org) ou me contactar por qualquer outro meio citado acima. Para assuntos relativos a projetos específicos, verifique o campo de contato do projeto, caso não haja um adicione +nomedoprojeto ao meu endereço de E-mail (exemplo: adrianvictor+projetolegal@disroot.org).

    +
    + +
    +
    +

    Música

    +

    Sempre amei música, e tenho achado produção musical algo muito interessante ultimamente. Publico minhas músicas como tenkuma, junto com meus amigos formei a Margarina Records—uma label amadora.

    +

    Você pode conferir minhas músicas mais recentes no meu perfil do Genius.

    + +
    + + + + + + +
    +
    + +
    + + +
    + +
    +
    +

    Vídeos

    +

    Eu faço vídeos para o meu canal do YouTube. Não posto regularmente; não tem calendário—apenas eu mostrando alguma coisa em vídeo.

    +
    + +
    + + + + +
    + +
    +
    +

    Software

    +

    Estou estudando informática no IFC (SC, Brazil) mas no meu tempo livre tenho projetos como programas de computador, plugins para Minecraft, servidores Minecraft, etc... Todos meus projetos públicos estão disponíveis no meu perfil do GitHub.

    +
    + +
    + +
    + +
    +
    +
    + Jamfish +
    + + + +
    +
    +

    Reprodutor de música nativo para dispositivos Android que se conecta a servidores de mídia Jellyfin. O código é baseado no repositório arquivado do Gelli, que por sua vez se baseia em uma versão antiga do Phonograph.

    +
    +
    + + + +
    +
    +
    + ItemEconomy +
    + + + +
    +
    +

    Este plugin PaperMC integra-se ao VaultUnlocked para fornecer um sistema de economia único baseado em itens para o seu servidor Minecraft. Em vez de depender apenas de saldos virtuais, os jogadores usam itens do jogo como moeda física, adicionando uma camada de imersão e realismo à sua economia.

    +
    +
    + + + +
    +
    +
    + Eye of Nemesis +
    + + + +
    +
    +

    Eye of Nemesis é um plugin que permite aos administradores de servidores escrever políticas que negarão ou permitirão (lista negra/branca) que os jogadores façam coisas específicas com base no valor dos nós.

    +
    +
    + + + +
    +
    +
    + PestoWiki +
    + + + +
    +
    +

    Cliente personalizável multiplataforma para wikis escrito em Python usando PySide6 (QT).

    +
    +
    + +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/pt/misc/88x31/index.html b/pt/misc/88x31/index.html new file mode 100644 index 0000000..0ac32c7 --- /dev/null +++ b/pt/misc/88x31/index.html @@ -0,0 +1,3093 @@ + + + + + + + Adrian Victor - 88x31 + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + +
    +
    +

    88x31

    +

    Essa é uma coleção de GIFs e imagens 88x31 que eu baixei pela internet.

    +
    +
    +

    Feitos por mim

    +
    + + + +
    +

    Outros

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + \ No newline at end of file diff --git a/pt/misc/bookmarks/index.html b/pt/misc/bookmarks/index.html new file mode 100644 index 0000000..b7ff761 --- /dev/null +++ b/pt/misc/bookmarks/index.html @@ -0,0 +1,454 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + +
    +
    +

    Favoritos

    +

    Essa é a lista de links favoritos curada por mim, dividida em seções para facilitar a navegação ;-)

    + + + +
    +
    + +
    +

    Downloads

    + +
    + + + + + + + + + +
    + +
    + +
    +
    MalwareWatch
    +
    +
    + Website do Enderman. Tem download de vários softwares úteis, imagens de sistemas operacionais e malware. +
    + +
    +
    +
    + +
    +
    Free Images
    +
    +
    + Pesquise por milhões de imagens, artes e vetores. Todas as imagens são de domínio público ou sobre CC0. Livre para baixar e livre para usar. +
    + +
    +
    +
    + +
    +
    88x31
    +
    +
    + Essa é uma coleção de mais de 6500 GIFs e PNGs no formato 88x31. No final dos anos 1990 e começo dos 2000 era muito comum usar essas imagens no seu site pessoal. +
    + + + + + + + + + + + +
    +
    +
    + +
    + +
    +

    Perfis

    + +
    + +
    +
    Mr. Nando
    +
    +
    + Meu amigo Fernando, ele faz músicas e vídeos de Minecraft e speedrun. +
    + +
    +
    +
    + +
    +
    Endermanch
    +
    +
    + Andrew é um engenheiro de software, entusiasta de malware e, mais importante, uma estranha e alta criatura. Cresci com os seus videos e ele é uma grande inspiração para mim. +
    + +
    +
    +
    + +
    + +
    +

    Ferramentas

    + +
    + +
    +
    Excalidraw
    +
    +
    + Quadro branco sem distrações. +
    + +
    +
    +
    + +
    +
    Postimages
    +
    +
    + Gere links permantes de suas imagens para forums, blogs e redes sociais. +
    + +
    +
    +
    + +
    +
    uBlock Origin
    +
    +
    + Um bloqueador eficiente para Chromium e Firefox. Rápido e pequeno. +
    + + + + + + + +
    +
    +
    + +
    + +
    +

    Jogos

    + +
    + + + + + + + + + +
    + +
    + +
    +
    SteamGridDB
    +
    +
    + Baixe e compartilhe recursos visuais de jogos e personalize sua biblioteca de jogos. +
    + +
    +
    +
    + +
    + +
    +

    Música

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    CVGM Radio
    +
    +
    + Seu lar para música relacionada a video games, demo scene e computadores. +
    + +
    +
    +
    + +
    + +
    +

    Pirataria

    + +
    + + + + + +
    + +
    + +
    +
    Nyaa
    +
    +
    + Um tracker de animes, mangás e coisas relacionadas. +
    + + + + + + + +
    +
    +
    + +
    +
    Lucida
    +
    +
    + Com Lucida, você pode baixar musica diretamente de Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, e Yandex Music em alta qualidade de graça. Sem pegadinhas, sem anúncios obrigatórios, sem enrolação. Como que funciona? +
    + +
    +
    +
    + +
    +
    DoubleDouble
    +
    +
    + Baixe musica diretamente de Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, e Yandex Music em alta qualidade de graça. +
    + +
    +
    +
    + +
    + +
    +
    +
    + + \ No newline at end of file diff --git a/pt/misc/index.html b/pt/misc/index.html new file mode 100644 index 0000000..8884646 --- /dev/null +++ b/pt/misc/index.html @@ -0,0 +1,124 @@ + + + + + + + Adrian Victor + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Misc

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    Miscelâneo

    + +
      +
      + + + +
      + + 88x31 + +
      + +
      + + + Minha coleção de GIFs e imagens 88x31. +
      + + + +
      + + Favoritos + +
      + +
      + + + Minha coleção de sites e páginas interessantes. +
      + +
      +
    +
    +
    +
    + + \ No newline at end of file diff --git a/purgecss.config.cjs b/purgecss.config.cjs deleted file mode 100644 index 93b780c..0000000 --- a/purgecss.config.cjs +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - // Content files referencing CSS classes - content: ["./docs/**/*.html"], - - // CSS files to be purged in-place - css: ["./docs/**/*.css"], -}; \ No newline at end of file diff --git a/school/api-rodrigoribeiro/index.html b/school/api-rodrigoribeiro/index.html new file mode 100644 index 0000000..6ab6141 --- /dev/null +++ b/school/api-rodrigoribeiro/index.html @@ -0,0 +1,214 @@ + + + + + + + Adrian Victor - Demonstração da API do Prof. Rodrigo Ribeiro + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Trabalhos

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + +
    +

    Demonstração da API do Prof. Rodrigo Ribeiro

    +

    A API do Prof. Rodrigo Ribeiro permite que o client envie uma imagem, assim retornando o resultado de uma leitura óptica realizada sobre a mesma com inteligência artificial. Esse client lê o resultado e o mostra de forma simples para o usuário.

    +

    Mais informações sobre a API podem ser encontradas no seu website.

    +
    Token: Ausente
    +
    + + +
    + + +
    +
    +
    +
    + +
    + + +
    +
    +
    +

    Resultados da leitura óptica:

    +
    +
    +
    + +
    +
    + + \ No newline at end of file diff --git a/school/guia-ifc-novatos/index.html b/school/guia-ifc-novatos/index.html new file mode 100644 index 0000000..560ad85 --- /dev/null +++ b/school/guia-ifc-novatos/index.html @@ -0,0 +1,179 @@ + + + + + + + Adrian Victor - Guia para novatos no IFC. + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Escola

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Guia para novatos no IFC.

    +

    Adrian Victor - 1/12/2026 (editado por último em )

    + +
    + + + +

    Antes de tudo, quero dar boas vindas a qualquer novato que esteja lendo esse documento, o IF é uma grande oportunidade que felizmente você não deixou passar! Não vou me extender muito nesse tópico pois tenho certeza que vocês vão ouvir depoimentos de ex-alunos bem-sucedidos ao longo do período letivo.

    +

    Estou organizando esse documento para evitar que os veteranos tenham que explicar tudo para cada novato que apresentar a mesma dúvida, centralizando o conteúdo para facilitar quando você dá aquela esquecida sobre como algo funciona. Ao mesmo tempo, não quero que ele substitua o contato que você poderia ter com um veterano, não deixe de conversar e fazer novas amizades!

    +

    Para correções ou dúvidas que não sanei aqui, você pode me mandar um e-mail (adrianvictor@disroot.org) ou me contactar por qualquer outro lugar que você conseguir, vou corrigir/adicionar o mais rápido possível. Caso algum veterano se interesse em escrever algo para complementar essa postagem, fico feliz em adicionar seu texto ou link aqui.

    + +

    O SIGAA

    +

    SIGAA (Sistema Integrado Para Ferrar com os Alunos) vai ser o lugar onde você vê as suas notas, frequências, aplica para auxílios e entrega trabalhos – caso você encontre um professor que ainda tem sanidade pra usar essa coisa além do que se faz obrigatório.

    +

    Ofensas à parte, vamos dar uma olhada nas partes importantes do sistema.

    +

    Login e cadastro

    +
    + +

    1 - Tela de login do SIGAA.

    +
    +

    Após acessar o site do SIGAA, você deve ver a tela de login mostrada na imagem. Antes de tudo, verifique se você está no SIGAA dos alunos.(1.1)

    +

    Caso você tenha um login, o acesso é bem simples, apenas preencha os campos de usuário e senha(1.2) e confirme. O login expira em 1 minuto de inatividade.

    + +

    No caso de você não possuir um cadastro, use o link abaixo da tela de login(1.3) para abrir o formulário de cadastro.

    + +

    Tela Principal

    +
    + +

    2 - Tela inicial do SIGAA

    +
    + +

    A tela principal do SIGAA é uma bagunça, mas você não vai usar nem metade do que tem nela, por isso vamos dar uma olhada somente nas funcionalidades principais dela.

    + +

    No cabeçalho(2.1) você tem acesso a coisas como boletim, atestado de frequência, etc... Também é o lugar que você gerencia seus auxílios.

    + +

    É possível gerenciar seu perfil público e dados na barra lateral(2.2), assim como acessar alguns links úteis (como o da biblioteca digital). O seu perfil fica visível em postagens e respostas enviadas no forum do SIGAA.(2.6) Por algum motivo, minha foto de perfil some toda hora, já não me dou mais o trabalho de colocar de volta.

    + +

    Não cadastre um e-mail que você usa com frequência no SIGAA, pois ele vai entupir sua caixa de entrada com SPAM. E os e-mails que seriam úteis chegam tão tarde que perdem a utilidade (já recebemos e-mail sobre cancelamento de aulas com um mês de atraso). Se você quiser manter seu e-mail pessoal no SIGAA, já que eles realmente mandam alguma coisa importante uma vez ou outra por ano, configure um filtro para o endereço do IF (ifc.edu.br) que joga todos os e-mails do SIGAA para uma caixa diferente no seu e-mail.

    + +

    Continuando, chegamos na lista de matérias do seu ano letivo(2.5), você vai usar ela para acessar a página da matéria.

    + +

    E por fim, temos o forum(2.6), que eu incluí por dó, pois ninguém nunca usa ele. Em teoria ele serve para alunos tirarem suas dúvidas e/ou buscarem ajuda sobre algum tópico relevante do curso, mas acabou que ele virou uma bagunça empoierada que quase não tem atividade nenhuma.

    + +

    Página da Matéria

    +
    + +

    3 - Página da matéria no SIGAA

    +
    + +

    Essa é, provavelmente, a página que você mais vai usar do SIGAA, ela mostra todas as atividades do ano na lista principal(3.2). Essa lista vai ficando mais bagunçada ao decorrer do ano, ela mostra as atividades das mais antigas para as mais novas, portanto quando o ano passar e o(a) professor(a) adicionar muitas atividades, você vai ter que rolar até o final para achar a mais recente. Se o seu professor adicionar atividades futuras na lista, você também terá que procurar a desse dia.

    + +

    O Menu da Turma Virtual(3.1) também é importantíssimo, e dessa vez não tenho muito o que dizer, ele funciona como um menu. Os itens que você mais vai usar são Alunos > Frequência para ver sua frequência nessa matéria e Alunos > Ver notas, que mostra suas notas individuais dessa matéria, até mesmo as que não aparecem no boletim ainda.

    + +

    Na barra lateral da direita(3.3) você encontra o andamento das aulas, que é a quantidade de aulas ministradas em relação ao total. O número de aulas ministradas pode exceder o número de aulas totais, porém as excedentes não vão afetar a sua média de faltas. Também tem algumas outras caixas de notícias, enquetes, atividades, avaliações e forum, mas nenhuma é usada com frequência.

    + +

    Vale ressaltar que no celular é difícil rolar a página quando você dá zoom, para resolver isso você precisa rolar (arrastar) no Menu da Turma Virtual, porque na lista principal vai rolar apenas a lista de atividades.

    + +

    Frequência

    +

    As frequências são contabilizadas pela chamada que os professores fazem no começo da aula. Eventos como a FICE e OLINCAC também contam presença e geralmente um professor fica encarregado de fazer a chamada da manhã, enquanto outro fica na tarde (é bem fácil pegar a chamada da manhã/tarde e ir embora).

    +

    O aluno não pode exceder em faltas 25% do total de aulas e o limite por matéria do SIGAA não conta no boletim, portanto se você exceder ele sem ultrapassar o limite total, você ainda passa. As matérias optativas são uma excessão, com essas você precisa tomar cuidado para não atingir o limite de faltas.

    +

    Por mais que o limite esteja entorno de 300 faltas, não recomendo que se acostume a faltar, pois temos 9 aulas por dia, ou seja, 9 faltas. Até as faltas em aulas específicas somam rápido.

    + +

    Referências

    + +
    +
    +
    +
    + + \ No newline at end of file diff --git a/school/telnet-en/index.html b/school/telnet-en/index.html new file mode 100644 index 0000000..78eec32 --- /dev/null +++ b/school/telnet-en/index.html @@ -0,0 +1,153 @@ + + + + + + + Adrian Victor - Telnet + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Trabalhos

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Telnet

    +

    Adrian Victor & Arthur Borges - 8/26/2025 (last edited in )

    + +
    + + + +

    What the protocol is, its function and history

    +

    Telnet (from TELecommunication NETwork) is a TCP/IP stack network protocol that allows remote text-mode communication between computers. Its main function is to provide an interactive session where a user can access and control another device as if they were on a local terminal.

    +

    Created in 1969, Telnet was one of the first protocols developed for ARPANET (the network that gave rise to the Internet) and became fundamental for system and device administration in the 1970s, 1980s, and 1990s. Over time, it fell out of use due to lack of security, being replaced by more modern alternatives such as SSH (Secure Shell).

    +

    Implementation

    +

    Default port: 23/TCP.
    +Works at the application layer of the OSI model.
    +Format: Based on ASCII character exchange, without encryption.
    +RFC: Defined by RFC 854 (1983).
    +Architecture: Follows the client-server model

    +

    How it works

    +

    In practice, Telnet works relatively simply. The process starts when the client establishes a TCP connection to the server via port 23. Then a remote terminal session is initiated and the user must provide credentials such as username and password. After authentication, commands typed on the client are transmitted in plain text to the server, which processes them and returns the corresponding output. The session remains active as long as the user wants, normally ending with commands like exit or logout

    +

    Use cases

    +

    For many years, Telnet was widely used for remote access to Unix, Linux, and Windows servers, especially older versions of these systems. It also became common in network device administration, such as routers and switches, until SSH became the standard. Additionally, mainframes and some legacy devices still use Telnet today. Another practical application is in educational environments and network diagnostics, where it is used to test open ports and check service connectivity, such as running “telnet server.com 80” to see if a web server port is operational.

    +

    Encryption: the inherent problem

    +

    Telnet has no native encryption, which makes it extremely vulnerable. To solve this problem, more secure alternatives were developed. The main one is SSH (Secure Shell), created in the 1990s as a direct Telnet replacement. SSH offers the same functionality while ensuring data protection through strong authentication and full traffic encryption. Another, less common approach is using SSL/TLS to tunnel Telnet sessions, but in practice this is rarely used.

    +

    Advantages and disadvantages

    +

    Telnet’s advantages include simplicity, low resource usage, and compatibility with various older systems, which facilitated its adoption over the years. However, these benefits are outweighed by its disadvantages. The main one is the lack of encryption, exposing all transmitted data—including passwords—in plain text. This makes it vulnerable to attacks such as sniffing, which captures network packets, and hijacking, which takes over active sessions. For this reason, Telnet is considered obsolete and unsafe for use on open networks like the Internet.

    +

    Relation to other protocols

    +

    Telnet is part of the TCP/IP protocol family and uses TCP to ensure reliable communication. Like other protocols in this stack, such as HTTP, FTP, and SMTP, it relies on stable connections to perform its functions, but its distinguishing feature has always been terminal-mode interactivity. Due to security flaws, it was replaced by its natural successor, SSH, which retained Telnet’s conceptual base but added robust protection layers.

    +

    Functional example

    +

    Below is a Telnet connection simulator written in JavaScript.

    +
    +

    Loading...

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Server

    + + +
    +
    +

    Client

    + +
    + + +
    +
    +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/school/telnet-pt/index.html b/school/telnet-pt/index.html new file mode 100644 index 0000000..7de9b70 --- /dev/null +++ b/school/telnet-pt/index.html @@ -0,0 +1,195 @@ + + + + + + + Adrian Victor - Telnet + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +

    Adrian Victor:Trabalhos

    + Fanasy is not a crime, find your castle in the sky. + +
    +
    +
    + + +
    +
    +
    + + + +
    +
    +
    +

    Telnet

    +

    Adrian Victor & Arthur Borges - 8/26/2025 (editado por último em )

    + +
    + + + +

    O que é o protocolo, sua função e histórico

    +

    O Telnet (do inglês TELecommunication NETwork) é um protocolo de rede da pilha +TCP/IP que permite a comunicação remota entre computadores em modo texto. Sua +função principal é proporcionar uma sessão interativa, em que um usuário pode +acessar e controlar outro dispositivo como se estivesse em um terminal local.

    +

    Criado em 1969, o Telnet foi um dos primeiros protocolos desenvolvidos para a +ARPANET (a rede que deu origem à Internet) e tornou-se fundamental para a +administração de sistemas e dispositivos nas décadas de 1970, 1980 e 1990. Com o +tempo, caiu em desuso devido à falta de segurança, sendo substituído por +alternativas mais modernas, como o SSH (Secure Shell).

    +

    Implementação

    +

    Porta padrão: 23/TCP.
    +Funciona na camada de aplicação do modelo OSI.
    +Formato: Baseado em troca de caracteres ASCII, sem criptografia.
    +RFC: Definido pela RFC 854 (1983).
    +Arquitetura: Segue o modelo cliente-servidor

    +

    Funcionamento

    +

    Na prática, o Telnet funciona de maneira relativamente simples. O processo começa +quando o cliente estabelece uma conexão TCP com o servidor por meio da porta 23. +Em seguida, uma sessão de terminal remoto é iniciada e o usuário deve fornecer +suas credenciais, como nome de usuário e senha. Após a autenticação, os +comandos digitados no cliente são transmitidos em texto puro ao servidor, que os +processa e retorna a saída correspondente. A sessão permanece ativa enquanto o +usuário desejar, sendo encerrada normalmente com comandos como exit ou logout

    +

    Cenários de uso

    +

    Durante muitos anos, o Telnet foi amplamente utilizado para acesso remoto a +servidores Unix, Linux e Windows, especialmente em versões mais antigas desses +sistemas. Também se tornou bastante comum na administração de dispositivos de +rede, como roteadores e switches, até que o SSH passou a ser adotado como +padrão. Além disso, grandes computadores centrais, conhecidos como mainframes, +e alguns dispositivos legados ainda utilizam Telnet até hoje. Outra aplicação prática +do protocolo está em ambientes educacionais e no diagnóstico de redes, onde é +usado para testar portas abertas e verificar conectividade de serviços, como ao +executar “telnet servidor.com 80” para checar se a porta de um servidor web está em +funcionamento.

    +

    Criptografia: o problema inerente

    +

    O Telnet não possui criptografia nativa, o que o torna extremamente vulnerável. Para +solucionar esse problema, surgiram alternativas mais seguras. A principal delas é o +SSH (Secure Shell), desenvolvido nos anos 1990 como um substituto direto do +Telnet. O SSH oferece as mesmas funcionalidades, mas garante a proteção dos +dados por meio de autenticação forte e criptografia de todo o tráfego. Outra +possibilidade, embora menos comum, é o uso de SSL/TLS para tunelar sessões +Telnet, mas na prática essa abordagem raramente é utilizada.

    +

    Vantagens e desvantagens

    +

    Entre as vantagens do Telnet, destacam-se sua simplicidade, baixo consumo de +recursos e compatibilidade com diferentes sistemas antigos, o que facilitou sua +adoção ao longo dos anos. Contudo, essas qualidades são superadas por suas +desvantagens. A principal é a ausência de criptografia, que expõe todos os dados +transmitidos, incluindo senhas, em texto puro. Isso o torna vulnerável a ataques +como o sniffing, que captura pacotes de rede, e o hijacking, que sequestra sessões +ativas. Por esse motivo, o Telnet é considerado obsoleto e inseguro para uso em +redes abertas, como a própria Internet.

    +

    Relação com outros protocolos

    +

    O Telnet faz parte da família de protocolos da pilha TCP/IP e utiliza o TCP para +garantir a confiabilidade na comunicação. Assim como outros protocolos dessa pilha, +como HTTP, FTP e SMTP, ele se baseia em conexões estáveis para realizar suas +funções, mas seu diferencial sempre foi a interatividade em modo terminal. No +entanto, devido às falhas de segurança, acabou sendo substituído por seu sucessor +natural, o SSH, que manteve a mesma base conceitual do Telnet, mas adicionou +camadas robustas de proteção.

    +

    Exemplo funcional

    +

    Abaixo há um simulador de conexão Telnet feito em JavaScript.

    +
    +

    Loading...

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Servidor

    + + +
    +
    +

    Cliente

    + +
    + + +
    +
    +
    + +
    +
    +
    +
    + + \ No newline at end of file diff --git a/site/_data/i18n.cjs b/site/_data/i18n.cjs deleted file mode 100644 index 3757673..0000000 --- a/site/_data/i18n.cjs +++ /dev/null @@ -1,211 +0,0 @@ -const globalValues = { - mastodon: { url: "https://mstdn.social/@tenkuma", username: "@tenkuma@mstdn.social" }, - github: { url: "https://github.com/adrianvic", username: "adrianvic" }, - disrootGit: { url: "https://git.disroot.org/adrianvictor", username: "adrianvictor" }, - discord: { url: "https://discord.com/users/681643259764015116", username: "@adrianvic" }, - youtube: { url: "https://www.youtube.com/@adrianvictor8", username: "@adrianvictor8" }, - bitview: { url: "https://www.bitview.net/user/tenkuma", username: "tenkuma" }, - modrinth: { url: "https://modrinth.com/user/tenkumabear", username: "tenkumabear" }, - xmpp: { url: "xmpp:adrianvictor@disroot.org", username: "adrianvictor@disroot.org" }, - email: "adrianvictor@disroot.org", - margarinaRecordsWebsite: "https://margarina-records.rf.gd", - genius: { url: "https://genius.com/tenkuma", username: "tenkuma" }, - homeVideoLink: "https://www.youtube.com/watch?v=6bnNAnSY9Uo", - homeVideoImage: "/thumbnails/fl_studio_linux.png", - homeVideoWebsite: "YouTube", - homeVideoDuration: "5:53", - homeSongTitle: "Velkommen", - homeSongLink: "https://margarina.bandcamp.com/album/velkommen", - homeSongImage: "/songs/velkommen.jpg", - homeSongWebsite: "Bandcamp", - homeSongDuration: "5:39", - homeSongAccent: "#482948", - -}; - -module.exports = { - global: globalValues, - en: { - language: "english", - availableInOtherLanguages: "Also available in other languages", - pt: "portuguese", - en: "english", - home: "home", - welcome: "welcome", - homeWelcomeParagraph: "It seems that you have found my website! Hi, I am Adrian Victor (or tenkuma), a Brazilian guy who likes to mess around with computers, computer programs and enimatpyrtlyhtemids.", - socialsAndContact: "socials and contact", - aboutMe: "about me", - myMusic: "my music", - myVideos: "my videos", - mySoftware: "my software", - homeAboutMeParagraph: ` - I'm tenkuma, the coolest bear to ever exist in this world (not really). I mean, seriously (I already said it's not true). I don't even make jokes, all I said is true (DUDE STOP DIMMING MY TEXT UR NOT COOL). I'm in high school's last year, also studying computing. Sometimes I'm no one, sometimes I'm a programmer, musician (marked as: stretch) or am selfhosting my own stuff. But I'm always against the big-tech oligarchy! - `, - homeAboutMeParagraphTwo: `The name tenkuma, or 天くま in japanese, means celestial bear and was given by a friend of mine that I lost contact a long time ago. Sakata is gone, but the name stayed and turned into an integral part of my digital self.`, - homeSocialsAndContactParagraph: ` - I'm publicly available at Mastodon (${globalValues.mastodon.username}), - GitHub (${globalValues.github.username}), - Disroot Git (${globalValues.disrootGit.username}), - Discord (${globalValues.discord.username}), - YouTube (${globalValues.youtube.username}), - BitView (${globalValues.bitview.username}), - Modrinth (${globalValues.modrinth.username}) - and XMPP (${globalValues.xmpp.username}). - `, - homeSocialsAndContactParagraphTwo: `You can message me on my E-mail (${globalValues.email}), or feel free to get in touch through any of the other places mentioned above. For project-specific subjects, check for the project's contact field or if there's no such field add +projectname to my E-mail address (example: adrianvictor+coolproject@disroot.org).

    -

    Please, avoid reaching me through ways not mentioned above :)`, - homeMyMusicParagraph: `I looooove music. Like really. You can find a lot of playlists I made here. My songs can be found in any major streaming service.`, - homeMyMusicParagraphTwo: `Did you know, that instead of using your subscription money to pay artists, Spotify is massively underpaying artists and instead funding artificial inteligence for war?`, - homeMyVideoParagraph: "Sometimes I make videos for my YouTube channel. Videos do not come regularly, there's no schedule, just for fun.", - homeMyVideoRandomVideoParagraph: "Here's a random video I'm proud of:", - homeVideoTitle: "Installing FL Studio on linux.", - homeMySoftwareParagraph: `Anything that is public should be in my GitHub profile.`, - pestoWikiLogoAlt: "A digital drawing of the top of a fork with a black outline, in the right a text in white says 'Pesto Wiki'", - homeMySoftwareNotableProjects: "These are my most notable projects:", - blogTitle: "Listing blog posts:", - eyeofnemesisProjectDesctiption: "Eye of Nemesis is a plugin that allows server admins to write policies that will deny or allow (black/whitelist) players to do specific things based on the value of nodes.", - jamfishProjectDesctiption: "Native music player for Android devices that connects to Jellyfin media servers. The code is based on Gelli's archived repository, which is based on an old version of Phonograph.", - pestoProjectDesctiption: "Multi-platform customizable client for wikis written in Python using PySide6 (QT).", - itemeconomyProjectDesctiption: "This PaperMC plugin integrates with VaultUnlocked to provide a unique, item-based economy system for your Minecraft server. Instead of relying solely on virtual balances, players use in-game items as physical currency, adding a layer of immersion and realism to your economy.", - by: "by", - back: "back", - hideBackground: "Hide background", - disableSoundEffects: "Disable sound effects", - options: "Options", - alsoAvailableAsVideo: "Also available as video", - websiteDescription: "Personal website/blog of Adrian Victor.", - miscellaneous: "Miscellaneous", - i88x31hover: "Click to expand", - lastEditedIn: "last edited in", - permissionIssue: "Permission issue", - permissionIssueNotificationContent: "Unable to continue playing background music, please enable audio autoplay for this website.", - notificationDefaultHint: "Click to dismiss", - kaoMain: "You're about to lose sovereignty over your phone because of Google's monopoly. Fight back before is too late!", - kaoLink: "Learn what you can do at Keep Android Open", - webringDescription: "What are webrings?", - breakcoreWebring: "This site is a member of the breakcore webring.", - wrongosWebring: "This site is a member of the Wrongos webring.", - previousSite: "previous site", - nextSite: "next site", - random: "random", - showMore: "Show more", - showLess: "Show less", - previous: "previous", - next: "next", - about: "about", - thisWebsiteDoesNotTrackYou: "This website does not track you.", - mrnandoChannel: "Mr. Nando's channel", - liked: "liked", - changes: "changes", - readingTime: "Reading time", - mastodonPageDescription: "This is an archive of all my Mastodon posts.", - addMe: "Add me", - socialContentNotRated: "Social content is not rated and may mention topics not appropriate for all ages.", - clickHereToContinue: "Click here to continue", - windsArtAlt: "First Winds album artwork", - velkommenArtAlt: "Velkommen song artwork", - pgArtAlt: "Frugal APE song artwork", - bearAlt: "Background image. White bear swimming in water that reverberates around it.", - gearsAlt: "Gears", - soundOffAlt: "Audio disabled", - soundOnAlt: "Audio enabled", - volumeSliderAlt: "Volume", - backgroundCheckAlt: "Background image", - sfxCheckboxAlt: "Sound effects", - videoArtworkAlt: "Video artwork", - songSelectAlt: "Song selector", - guestbookWarning: "Load guestbook widget? You're subject to Chattable's terms of service.", - dontAskAgain: "Don't ask again" - }, - pt: { - language: "português", - availableInOtherLanguages: "Também disponível em outros idiomas", - pt: "português", - en: "inglês", - home: "início", - welcome: "bem-vindo", - homeWelcomeParagraph: "Parece que você encontrou meu website! Olá, sou Adrian Victor (ou tenkuma), um cara brasileiro que gosta de mexer com computadores, programas de computadores e enimatpirtlitemídios.", - socialsAndContact: "redes sociais e contato", - aboutMe: "sobre mim", - myMusic: "música", - myVideos: "vídeos", - mySoftware: "software", - homeAboutMeParagraph: ` - Eu sou tenkuma, o urso mais legal que existiu nesse mundo (não mesmo). Tipo, sério (não é não!). Eu nem gosto de fazer piadas, tudo o que eu disse é verdade (CARA PARA DE APAGAR MEU TEXTO VC NÃO É LEGAL). Estou no último ano do ensino médio, também estudando informática. Às vezes eu não sou ninguém; às vezes eu sou programador, músico (marcado como: forçando a barra) ou estou fazendo selfhosting. Mas sempre estou contra a oligarquía das big-techs. - `, - homeAboutMeParagraphTwo: `Tenkuma, ou 天くま em japonês, significa urso celestial e foi um nome dado a mim por um amigo que eu já perdi contato há muito tempo. Sakata se foi, mas o nome ficou e se tornou parte integral da personalidade do meu eu digital até hoje.`, - homeSocialsAndContactParagraph: ` - Estou publicamente disponível no Mastodon (${globalValues.mastodon.username}), - GitHub (${globalValues.github.username}), - Disroot Git (${globalValues.disrootGit.username}), - Discord (${globalValues.discord.username}), - YouTube (${globalValues.youtube.username}), - BitView (${globalValues.bitview.username}), - Modrinth (${globalValues.modrinth.username}) - e XMPP (${globalValues.xmpp.username}). - `, - homeSocialsAndContactParagraphTwo: `Você pode enviar um correio eletrônico para (${globalValues.email}) ou me contactar por qualquer outro meio citado acima. Para assuntos relativos a projetos específicos, verifique o campo de contato do projeto, caso não haja um adicione +nomedoprojeto ao meu endereço de E-mail (exemplo: adrianvictor+projetolegal@disroot.org).`, - homeMyMusicParagraph: `Eu aaaaaamo música. De verdade. Você pode encontrar um monte das minhas playlists aqui, junto com o que eu mais escuto recentemente. Minhas músicas podem ser encontradas em qualquer dos streamings mais conhecidos.`, - homeMyMusicParagraphTwo: `Você sabia que, ao invés de usar o dinheiro da sua assinatura pra pagar artistas, o Spotify está pagando pouco para os artistas e investindo em inteligência artificial para a guerra?`, - homeMyVideoParagraph: "De vez enquando eu faço vídeos para o YouTube. Não tenho nenhum compromisso com constância, os vídeos são feitos por diversão.", - homeMyVideoRandomVideoParagraph: "Aqui está um vídeo aleatório que eu me orgulho de ter postado:", - homeVideoTitle: "Como instalar o FL Studio no Linux?", - homeMySoftwareParagraph: `Todos meus projetos públicos estão disponíveis no meu perfil do GitHub.`, - pestoWikiLogoAlt: "Um desenho digital do topo de um garfo com uma borda preta, à direita um texto branco diz 'Pesto Wiki'", - homeMySoftwareNotableProjects: "Esses são meus projetos mais notáveis:", - blogTitle: "Listando postagens do blog:", - eyeofnemesisProjectDesctiption: "Eye of Nemesis é um plugin que permite aos administradores de servidores escrever políticas que negarão ou permitirão (lista negra/branca) que os jogadores façam coisas específicas com base no valor dos nós.", - jamfishProjectDesctiption: "Reprodutor de música nativo para dispositivos Android que se conecta a servidores de mídia Jellyfin. O código é baseado no repositório arquivado do Gelli, que por sua vez se baseia em uma versão antiga do Phonograph.", - pestoProjectDesctiption: "Cliente personalizável multiplataforma para wikis escrito em Python usando PySide6 (QT).", - itemeconomyProjectDesctiption: "Este plugin PaperMC integra-se ao VaultUnlocked para fornecer um sistema de economia único baseado em itens para o seu servidor Minecraft. Em vez de depender apenas de saldos virtuais, os jogadores usam itens do jogo como moeda física, adicionando uma camada de imersão e realismo à sua economia.", - by: "por", - back: "voltar", - hideBackground: "Esconder imagem de fundo", - disableSoundEffects: "Desabilitar efeitos sonoros", - options: "Opções", - alsoAvailableAsVideo: "Também disponível em vídeo", - websiteDescription: "Website/blog pessoal de Adrian Victor.", - miscellaneous: "Miscelâneo", - i88x31hover: "Clique para expandir", - lastEditedIn: "editado por último em", - permissionIssue: "Problema de permissão", - permissionIssueNotificationContent: "Não foi possivel continuar tocando a música de fundo, por favor habilite reprodução automática de áudio para esse website.", - notificationDefaultHint: "Clique para ignorar", - kaoMain: "Você está prestes a perder controle do seu celular em favor do monopólio da Google. Lute contra antes que seja tarde!", - kaoLink: "Veja o que você pode fazer em Keep Android Open", - webringDescription: "O que são webrings?", - breakcoreWebring: "Esse website faz parte do webring breakcore.", - wrongosWebring: "Esse website faz parte do webring Wrongos.", - previousSite: "site anterior", - nextSite: "próximo site", - random: "aleatório", - showMore: "Ver mais", - showLess: "Ver menos", - previous: "anterior", - next: "próximo", - about: "sobre", - thisWebsiteDoesNotTrackYou: "Esse website não rastreia você.", - mrnandoChannel: "Canal do Mr. Nando", - liked: "curtiu", - changes: "mudanças", - readingTime: "Tempo de leitura", - mastodonPageDescription: "Essa página lista todas as minhas postagens do Mastodon.", - addMe: "Me adicionar", - socialContentNotRated: "Conteúdo das redes sociais não é monitorado e pode conter tópicos não apropriados para todas as idades.", - clickHereToContinue: "Clique aqui para continuar", - windsArtAlt: "Capa do album First Winds", - velkommenArtAlt: "Capa da música Velkommen", - pgArtAlt: "Capa da música Frugal APE", - bearAlt: "Imagem de fundo. Urso branco nadando na água que reverbera ao seu redor.", - gearsAlt: "Engrenagens", - soundOffAlt: "Áudio desligado", - soundOnAlt: "Áudio ligado", - volumeSliderAlt: "Volume", - backgroundCheckAlt: "Imagem de fundo", - sfxCheckboxAlt: "Efeitos sonoros", - videoArtworkAlt: "Capa do vídeo", - songSelectAlt: "Seletor de música", - guestbookWarning: "Carregar o guestbook? Você estará sujeito aos termos de uso do Chattable.", - dontAskAgain: "Não pergunte novamente" - } -}; \ No newline at end of file diff --git a/site/_data/languages.cjs b/site/_data/languages.cjs deleted file mode 100644 index 322d425..0000000 --- a/site/_data/languages.cjs +++ /dev/null @@ -1 +0,0 @@ -module.exports = ["en", "pt"]; \ No newline at end of file diff --git a/site/_includes/base.njk b/site/_includes/base.njk deleted file mode 100644 index 27cee06..0000000 --- a/site/_includes/base.njk +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - Adrian Victor{% if pageTitle or postTitle %} - {{ pageTitle or postTitle }}{% endif %} - - - - - - - - - - - - - - - - - - - - {% poison %} - - - - - - -

    - {{ i18n[langKey].bearAlt }} - - {% include "header.njk" %} - -
    - {{ content | safe }} -
    -
    - - \ No newline at end of file diff --git a/site/_includes/header.njk b/site/_includes/header.njk deleted file mode 100644 index a99e89c..0000000 --- a/site/_includes/header.njk +++ /dev/null @@ -1,53 +0,0 @@ -
    - - -
    -
    -

    {{ title or "Adrian Victor" }}

    -

    {{ subtitle or "Fanasy is not a crime, find your castle in the sky." }}

    -
    -
    -
    - - -
    -
    - {# test #} -
    - \ No newline at end of file diff --git a/site/_includes/iframe.njk b/site/_includes/iframe.njk deleted file mode 100644 index 9bf32a4..0000000 --- a/site/_includes/iframe.njk +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - Adrian Victor{% if pageTitle or postTitle %} - {{ pageTitle or postTitle }}{% endif %} - - - - - - - - - - - - - - - - - {{ content | safe }} - - \ No newline at end of file diff --git a/site/_includes/macros.njk b/site/_includes/macros.njk deleted file mode 100644 index 72dee07..0000000 --- a/site/_includes/macros.njk +++ /dev/null @@ -1,62 +0,0 @@ -{% macro i88x31(link, alt=link, interactive=true) %} - = -{% endmacro %} - -{% macro videoCard(videoLink, videoTitle, videoImage, videoWebsite, videoDuration, videoAccent, imageAlt = i18n[langKey].videoArtworkAlt) %} -
    - -
    -{% endmacro %} - -{% macro projectCard(projectName, projectDescription, projectLink, projectImage, projectImageAlt) %} -
    -
    -
    - {{ projectImageAlt or projectName }} -
    - - - -
    -
    -

    {{ projectDescription | safe }}

    -
    -
    -{% endmacro %} - -{% macro webring(opts) %} -
    -

    {{ opts.text }}

    -
    - {% for link in opts.links %} - {{ link | safe }} - {% endfor %} -
    -
    -{% endmacro %} \ No newline at end of file diff --git a/site/_includes/post.njk b/site/_includes/post.njk deleted file mode 100644 index 217cd1c..0000000 --- a/site/_includes/post.njk +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: base.njk -title: Adrian Victor:Blog -headerLink: blog ---- -{% set altLanguages = collections.post | alternateLanguages(postId, langKey) %} -{% from "macros.njk" import videoCard with context %} - -
    -
    -
    -

    {{ postTitle }}

    -

    {{ i18n[langKey].readingTime }}: {{ content | readingTime }}

    -

    {{ authors or "Adrian Victor" }} - {{ date | postDate }}{% if lastModified | postDate !== date | postDate %} ({{ i18n[langKey].lastEditedIn }} {{ lastModified | postDate }}){% endif %}

    - {% if altLanguages.length > 0 %} - {{ i18n[langKey].availableInOtherLanguages }}: - {% for alt in altLanguages %} -
  • - - {{ i18n[alt.lang].language }} - -
  • - {% endfor %} - {% endif %} -
    - {% if postVideoLink and postVideoImage and postVideoTitle and postVideoWebsite %} - {{ videoCard(postVideoLink, postVideoTitle, postVideoImage, postVideoWebsite, postVideoDuration) }} - {% endif %} - - {{ content | safe }} -
    -
    \ No newline at end of file diff --git a/site/_includes/text.njk b/site/_includes/text.njk deleted file mode 100644 index 212390e..0000000 --- a/site/_includes/text.njk +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: base.njk ---- -
    - {{ content | safe }} -
    \ No newline at end of file diff --git a/site/_includes/widgets/chattable.html b/site/_includes/widgets/chattable.html deleted file mode 100644 index c778445..0000000 --- a/site/_includes/widgets/chattable.html +++ /dev/null @@ -1,7 +0,0 @@ - - - \ No newline at end of file diff --git a/site/_includes/widgets/droidring.html b/site/_includes/widgets/droidring.html deleted file mode 100644 index b97f080..0000000 --- a/site/_includes/widgets/droidring.html +++ /dev/null @@ -1,44 +0,0 @@ -
    -
    - Droidring
    - -
    - - - -
    - -
    -
    \ No newline at end of file diff --git a/site/_includes/widgets/internetometer-aside.html b/site/_includes/widgets/internetometer-aside.html deleted file mode 100644 index a11c75e..0000000 --- a/site/_includes/widgets/internetometer-aside.html +++ /dev/null @@ -1,7 +0,0 @@ -
    -
    -

    {{ i18n[langKey].liked | smartTitle }}?

    -
    -
    - Internetometer -
    \ No newline at end of file diff --git a/site/blog.njk b/site/blog.njk deleted file mode 100644 index 678d0ea..0000000 --- a/site/blog.njk +++ /dev/null @@ -1,24 +0,0 @@ ---- -pagination: - data: i18n - size: 1 - alias: langKey -permalink: "/{{ langKey }}/blog/index.html" -layout: base.njk -title: Adrian Victor:Blog -headerLink: blog ---- - -
    -

    {{ i18n[langKey].blogTitle | smartTitle }}

    - -
    \ No newline at end of file diff --git a/site/iframe/guestbook.njk b/site/iframe/guestbook.njk deleted file mode 100644 index bc79278..0000000 --- a/site/iframe/guestbook.njk +++ /dev/null @@ -1,28 +0,0 @@ ---- -pagination: - data: i18n - size: 1 - alias: langKey -permalink: "/{{ langKey }}/iframe/guestbook/index.html" -layout: iframe.njk -title: Adrian Victor:Guestbook -headerLink: social ---- - -
    -

    {{ i18n[langKey].guestbookWarning | safe }}

    - -
    -
    \ No newline at end of file diff --git a/site/index.njk b/site/index.njk deleted file mode 100644 index b6748fb..0000000 --- a/site/index.njk +++ /dev/null @@ -1,309 +0,0 @@ ---- -pagination: - data: i18n - size: 1 - alias: langKey -permalink: "/{{ langKey }}/index.html" -layout: base.njk -headerLink: home ---- -{% from "macros.njk" import i88x31 with context %} -{% from "macros.njk" import videoCard with context %} -{% from "macros.njk" import projectCard %} -{% from "macros.njk" import webring %} - - -
    - - -
    - - - -
    - -
    -

    {{ i18n[langKey].kaoMain | safe }}

    -

    {{ i18n[langKey].kaoLink | safe }} →

    -
    - -
    -

    {{ i18n[langKey].welcome | smartTitle }}

    -

    {{ i18n[langKey].homeWelcomeParagraph | safe }}

    - -
    - {{ i88x31("tenkuma.gif") }} - {{ i88x31("anybrowser6.gif") }} - {{ i88x31("ai.gif") }} - {{ i88x31("WEBP.gif") }} - {{ i88x31("rainbowrain.gif") }} - {{ i88x31("blasphemy.gif") }} - {{ i88x31("wrongos.gif") }} - {{ i88x31("best_viewed_with_open_eyes.gif") }} - {{ i88x31("gnu-linux.gif") }} -
    -
    - -
    - -

    {{ i18n[langKey].aboutMe | smartTitle }}

    -

    {{ i18n[langKey].homeAboutMeParagraph | safe }}

    -

    {{ i18n[langKey].homeAboutMeParagraphTwo | safe }}

    - -

    {{ i18n[langKey].socialsAndContact | smartTitle }}

    -

    {{ i18n[langKey].homeSocialsAndContactParagraph | safe }}

    -

    {{ i18n[langKey].homeSocialsAndContactParagraphTwo | safe }}

    -
    - - -
    -
    -

    {{ i18n[langKey].myMusic | smartTitle }}

    -

    {{ i18n[langKey].homeMyMusicParagraph | safe }}

    -

    {{ i18n[langKey].homeMyMusicParagraphTwo | safe }}

    - -
    - {{ i88x31("rave.gif") }} - {{ i88x31("happymix.gif") }} -
    -
    - -
    - -
    - {{ - videoCard( - i18n["global"].homeSongLink, - i18n["global"].homeSongTitle, - i18n["global"].homeSongImage, - i18n["global"].homeSongWebsite, - i18n["global"].homeSongDuration, - i18n["global"].homeSongAccent, - i18n[langKey].velkommenArtAlt - ) - }} -
    -
    - - -
    -
    -

    {{ i18n[langKey].myVideos | smartTitle }}

    -

    {{ i18n[langKey].homeMyVideoParagraph | safe }}

    -
    - -
    - - {{ - videoCard( - i18n["global"].homeVideoLink, - i18n[langKey].homeVideoTitle, - i18n["global"].homeVideoImage, - i18n["global"].homeVideoWebsite, - i18n["global"].homeVideoDuration - ) - }} -
    - - -
    -
    -

    {{ i18n[langKey].mySoftware | smartTitle }}

    -

    {{ i18n[langKey].homeMySoftwareParagraph | safe }}

    -
    - -
    - -
    - {{ - projectCard( - "Jamfish", - i18n[langKey].jamfishProjectDesctiption, - "https://github.com/adrianvic/jamfish", - '/static/images/jamfish-wide.png', - "Jamfish" - ) - }} - - {{ - projectCard( - "ItemEconomy", - i18n[langKey].itemeconomyProjectDesctiption, - "https://github.com/adrianvic/ItemEconomy", - '/static/images/itemeconomy2-wide.png', - "ItemEconomy" - ) - }} - - {{ - projectCard( - "Eye of Nemesis", - i18n[langKey].eyeofnemesisProjectDesctiption, - "https://github.com/adrianvic/NemesisEye", - '/static/images/eye_of_nemesis.png', - "Eye of Nemesis" - ) - }} - - {{ - projectCard( - "PestoWiki", - i18n[langKey].pestoProjectDesctiption, - "https://github.com/Margarina-not-butter/PestoWiki", - '/static/images/pestowikifullwhite.png', - "PestoWiki" - ) - }} -
    -
    -
    - - - \ No newline at end of file diff --git a/site/languages.njk b/site/languages.njk deleted file mode 100644 index 7d82b75..0000000 --- a/site/languages.njk +++ /dev/null @@ -1,18 +0,0 @@ ---- -permalink: "/index.html" -layout: base.njk -langKey: "en" ---- - - -
    -

    Pick a language

    - -
    \ No newline at end of file diff --git a/site/misc.njk b/site/misc.njk deleted file mode 100644 index ae82248..0000000 --- a/site/misc.njk +++ /dev/null @@ -1,38 +0,0 @@ ---- -pagination: - data: i18n - size: 1 - alias: langKey -permalink: "/{{ langKey }}/misc/index.html" -layout: base.njk -title: Adrian Victor:Misc -headerLink: misc ---- - -
    -

    {{ i18n[langKey].miscellaneous }}

    - - -
    \ No newline at end of file diff --git a/site/misc/88x31/en.json b/site/misc/88x31/en.json deleted file mode 100644 index 2149d7d..0000000 --- a/site/misc/88x31/en.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "pageDescription": "My collection of 88x31 GIFs and images.", - "intro": "This is the collection of 88x31 GIFs and images I've downloaded across the web.", - "others": "Others", - "me": "Made by me" -} \ No newline at end of file diff --git a/site/misc/88x31/index.njk b/site/misc/88x31/index.njk deleted file mode 100644 index 62e3492..0000000 --- a/site/misc/88x31/index.njk +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: base.njk -pagination: - data: languages - size: 1 - alias: langKey - -pageTitle: 88x31 -tags: misc ---- -{% from "macros.njk" import i88x31 with context %} - -
    -
    -

    88x31

    -

    {{ t.intro }}

    -
    -
    -

    {{ t.me }}

    -
    - {{ i88x31("tenkuma.gif") }} - {{ i88x31("tenkuma2.gif") }} - {{ i88x31("tenkuma-splash.gif") }} - {{ i88x31("mrnandokk.gif") }} -
    -

    {{ t.others }}

    -
    - {% for image in collections.88x31 %} - {{ i88x31(image.fileSlug) }} - {% endfor %} -
    -
    \ No newline at end of file diff --git a/site/misc/88x31/pt.json b/site/misc/88x31/pt.json deleted file mode 100644 index 9beb933..0000000 --- a/site/misc/88x31/pt.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "pageDescription": "Minha coleção de GIFs e imagens 88x31.", - "intro": "Essa é uma coleção de GIFs e imagens 88x31 que eu baixei pela internet.", - "others": "Outros", - "me": "Feitos por mim" -} \ No newline at end of file diff --git a/site/misc/about/en.json b/site/misc/about/en.json deleted file mode 100644 index b427774..0000000 --- a/site/misc/about/en.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "pageTitle": "About this website", - "pageDescription": "Information, attributions and credits about this website.", - "introText1": "This website and blog is a project of Adrian Victor, made using the Eleventy static website generator. It's source code is available ", - "introRepoLinkText": "on this repository", - "introText2": " under the ", - "introLicenseLinkText": "Apache license", - "privacyText1": "The scripts loaded inside the website do save the preferences you set in the settings page", - "privacyText2": "and the music player status", - "privacyText3": "in your browser's local storage. External servers are queried exclusively for loading content used to display the current page. JavaScript is only used to enhance the navigation experience and is totally optional.", - "attributionsHeading": "Attributions", - "bgImageLabel": "Background image (bear.png)", - "bgImageCredit": "Abenakis @ Pixbay", - "badges88x31Label": "88x31 images", - "neocitiesCommunity": "Neocities community", - "clickSoundLabel": "Click sound effect", - "thanksHeading": "Thanks", - "eleventyDesc": "Static website generator, used in this website.", - "githubPagesDesc": "For web hosting.", - "recentChangesPluginDesc": "Plugin for listing recent commits.", - "inlineFaviconPluginDesc": "Support for inline link icons.", - "poisonPluginDesc": "Hidden AI poisoning inside page source." -} \ No newline at end of file diff --git a/site/misc/about/index.njk b/site/misc/about/index.njk deleted file mode 100644 index 204edbc..0000000 --- a/site/misc/about/index.njk +++ /dev/null @@ -1,56 +0,0 @@ ---- -layout: base.njk -pagination: - data: languages - size: 1 - alias: langKey -tags: misc -backgroundOpacity: "0.28" -background: "bear3.jpg" ---- -
    -

    {{ t.pageTitle }}

    -

    {{ t.introText1 }} {{ t.introRepoLinkText }} {{ t.introText2 }} {{ t.introLicenseLinkText }}.

    -

    {{ t.privacyText1 }} () {{ t.privacyText2 }} () {{ t.privacyText3 }}

    - -

    {{ t.attributionsHeading }}

    -
    -
    {{ t.bgImageLabel }}
    -
    {{ t.bgImageCredit }}
    -
    {{ t.badges88x31Label }}
    -
    88x31.nl
    -
    dabamos.de
    -
    {{ t.neocitiesCommunity }}
    -
    88x31 generator
    -
    {{ t.clickSoundLabel }}
    -
    lilypids @ Myinstants
    -
    - -

    {{ t.thanksHeading }}

    -
    -
    Eleventy (11ty)
    -
    {{ t.eleventyDesc }}
    -
    GitHub Pages
    -
    {{ t.githubPagesDesc }}
    -
    eleventy-plugin-recent-changes {{ i18n[langKey].by }} workeffortwaste
    -
    {{ t.recentChangesPluginDesc }}
    -
    eleventy-plugin-inline-link-favicon {{ i18n[langKey].by }} bmuenzenmeyer
    -
    {{ t.inlineFaviconPluginDesc }}
    -
    eleventy-plugin-poison {{ i18n[langKey].by }} gingerchew
    -
    {{ t.poisonPluginDesc }}
    -
    -
    - \ No newline at end of file diff --git a/site/misc/about/pt.json b/site/misc/about/pt.json deleted file mode 100644 index 867c07d..0000000 --- a/site/misc/about/pt.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "pageTitle": "Sobre o website", - "pageDescription": "Informações, atribuições e créditos sobre esse website.", - "introText1": "Esse website e blog é um projeto de Adrian Victor, feito com a tecnologia do gerador de sites estáticos Eleventy. O código fonte está disponível", - "introRepoLinkText": "nesse repositório", - "introText2": "sob", - "introLicenseLinkText": "a licensa de código aberto Apache", - "privacyText1": "Os scripts carregados dentro do website salvam suas preferências indicadas na área de configuração", - "privacyText2": "e status do player de música", - "privacyText3": "no armazenamento local do seu navegador. Servidores externos são acessados exclusivamente para carregar conteúdo utilizado na exibição da página. JavaScript é usado apenas para melhorar a experiência de navegação e é totalmente opcional.", - "attributionsHeading": "Atribuições", - "bgImageLabel": "Imagem de fundo (bear.png)", - "bgImageCredit": "Abenakis @ Pixbay", - "badges88x31Label": "Imagens 88x31", - "neocitiesCommunity": "Comunidade do Neocities", - "clickSoundLabel": "Efeito sonoro de clique", - "thanksHeading": "Agradecimentos", - "eleventyDesc": "Gerador de sites estáticos, usado neste website.", - "githubPagesDesc": "Pela hospedagem do website.", - "recentChangesPluginDesc": "Plugin para listagem de commits recentes.", - "inlineFaviconPluginDesc": "Suporte para icones em links.", - "poisonPluginDesc": "Envenenamento de IA dentro do código fonte das páginas." -} \ No newline at end of file diff --git a/site/misc/bookmarks/common.json b/site/misc/bookmarks/common.json deleted file mode 100644 index 77b67d6..0000000 --- a/site/misc/bookmarks/common.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "links": { - "downloads": { - "88x31": [ - "iglooftp.gif", - "eftpbutton.gif" - ], - "links": [ - { - "name": "MalwareWatch", - "link": "https://malwarewatch.org/", - "description": { - "pt": "Website do Enderman. Tem download de vários softwares úteis, imagens de sistemas operacionais e malware.", - "en": "Enderman's website. Provides download to various useful softwares, operating system images and malware." - } - }, - { - "name": "Free Images", - "link": "https://free-images.com/", - "description": { - "pt": "Pesquise por milhões de imagens, artes e vetores. Todas as imagens são de domínio público ou sobre CC0. Livre para baixar e livre para usar.", - "en": "Search through millions of free stock photos, art and vector images. Every image is Public Domain or CC0. Free to Download and Free to Use." - } - }, - { - "name": "88x31", - "link": "https://88x31.nl/", - "description": { - "pt": "Essa é uma coleção de mais de 6500 GIFs e PNGs no formato 88x31. No final dos anos 1990 e começo dos 2000 era muito comum usar essas imagens no seu site pessoal.", - "en": "This website is a collection with over 6500 GIF's and PNG's in 88x31 format. In the late 1990 and begin of the 2000's it was very common to use these pictures on your personal website." - }, - "88x31": [ - "WEBP.gif", - "blank.gif" - ] - } - ] - }, - "profiles": { - "links": [ - { - "name": "Mr. Nando", - "link": "https://www.youtube.com/@mrnandokk", - "description": { - "pt": "Meu amigo Fernando, ele faz músicas e vídeos de Minecraft e speedrun.", - "en": "My friend Fernando, he makes music and YouTube videos of Minecraft and speedrun." - } - }, - { - "name": "Endermanch", - "link": "https://enderman.ch/", - "description": { - "pt": "Andrew é um engenheiro de software, entusiasta de malware e, mais importante, uma estranha e alta criatura. Cresci com os seus videos e ele é uma grande inspiração para mim.", - "en": "Andrew is a software engineer, a malware enthusiast and most importantly, a weird tall creature. I've grown up with his videos and he's a great inspiration for me." - } - } - ] - }, - "tools": { - "links": [ - { - "name": "Excalidraw", - "link": "https://excalidraw.com/", - "description": { - "pt": "Quadro branco sem distrações.", - "en": "Whiteboard with no bloat." - } - }, - { - "name": "Postimages", - "link": "https://postimages.org/", - "description": { - "pt": "Gere links permantes de suas imagens para forums, blogs e redes sociais.", - "en": "Get permanent links of your images for forums, blogs, and social media." - } - }, - { - "name": "uBlock Origin", - "link": "https://github.com/gorhill/uBlock#ublock-origin", - "description": { - "pt": "Um bloqueador eficiente para Chromium e Firefox. Rápido e pequeno.", - "en": "An efficient blocker for Chromium and Firefox. Fast and lean." - }, - "88x31": ["ublock-now.png"] - } - ] - }, - "games": { - "88x31": [ - "gb.gif", - "amd_powered.gif" - ], - "links": [ - { - "name": "SteamGridDB", - "link": "https://www.steamgriddb.com/", - "description": { - "pt": "Baixe e compartilhe recursos visuais de jogos e personalize sua biblioteca de jogos.", - "en": "Download and share custom video game assets and personalize your gaming library." - } - } - ] - }, - "music": { - "88x31": [ - "rave.gif", - "2014-rave.gif", - "wmpfree.gif", - "wmp.gif", - "wmp9.gif", - "wmp10.gif", - "wmp11.gif", - "ffmpeg.gif", - "ymusic.gif" - ], - "links": [ - { - "name": "CVGM Radio", - "link": "https://radio.cvgm.net/demovibes/", - "description": { - "pt": "Seu lar para música relacionada a video games, demo scene e computadores.", - "en": "Your home for video game, demo scene and computer related music." - } - } - ] - }, - "services": { - "links": [ - { - "name": "Disroot", - "link": "https://disroot.org/", - "description": { - "en": "Privacy respecting e-mail, Nextcloud storage, XMPP server, encrypted file sharing and other cool services.", - "pt": "E-mail que respeita sua privacidade, armazenamento Nextcloud, servidor XMPP, compartilhamento de arquivos criptografados e outros serviços legais." - } - } - ] - }, - "piracy": { - "88x31": ["piracy.png"], - "links": [ - { - "name": "Nyaa", - "link": "https://nyaa.si/", - "description": { - "pt": "Um tracker de animes, mangás e coisas relacionadas.", - "en": "A tracker of animes, mangas and related stuff." - }, - "88x31": ["rukia.gif"] - }, - { - "name": "Lucida", - "link": "https://lucida.to/", - "description": { - "pt": "Com Lucida, você pode baixar musica diretamente de Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, e Yandex Music em alta qualidade de graça. Sem pegadinhas, sem anúncios obrigatórios, sem enrolação. Como que funciona?", - "en": "With Lucida, you can download music directly from Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, and Yandex Music in high quality for free. No catches, no mandatory ads, no BS. How does it work?" - } - }, - { - "name": "DoubleDouble", - "link": "https://doubledouble.top/", - "description": { - "pt": "Baixe musica diretamente de Qobuz, Tidal, Soundcloud, Deezer, Amazon Music, e Yandex Music em alta qualidade de graça.", - "en": "Download music directly from Amazon Music, Soundcloud, Qobuz, Deezer and Tidal for free." - } - }, - { - "name": "Orpheus", - "link": "https://orpheus.network/", - "description": { - "pt": "Tracker de músicas por convite, tem algumas músicas mais difíceis de achar.", - "en": "Invitation only music tracker, has a lot of hard to find songs." - } - } - ] - } - } -} \ No newline at end of file diff --git a/site/misc/bookmarks/en.json b/site/misc/bookmarks/en.json deleted file mode 100644 index 6b0cc31..0000000 --- a/site/misc/bookmarks/en.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "pageTitle": "Bookmarks", - "pageDescription": "My collection of interesting websites/pages.", - "intro": "A list of useful or cool websites/pages curated by me. Divided in sections for an easier navigation.", - "profiles": "Profiles", - "downloads": "Downloads", - "games": "Games", - "tools": "Tools", - "music": "Music", - "piracy": "Piracy", - "services": "Services" -} \ No newline at end of file diff --git a/site/misc/bookmarks/index.njk b/site/misc/bookmarks/index.njk deleted file mode 100644 index 343695b..0000000 --- a/site/misc/bookmarks/index.njk +++ /dev/null @@ -1,49 +0,0 @@ ---- -layout: base.njk -pagination: - data: languages - size: 1 - alias: langKey -tags: misc -background: towers.jpg -backgroundOpacity: .2 ---- -{% from "macros.njk" import i88x31 with context %} - -
    -
    -

    {{ t.pageTitle }}

    -

    {{ t.intro }}

    - {{ i88x31("BOOKMARKthispageNOW.png") }} -
    -
    - {% for sectionName, section in c.links %} -
    -

    {{ t[sectionName] }}

    - {% if section.88x31 %} -
    - {% for 88x31 in section.88x31 %} - {{ i88x31(88x31) }} - {% endfor %} -
    - {% endif %} -
    - {% for link in section.links %} -
    -
    {% ai link.link %}{{ link.name }}{% endai %}
    -
    -
    - {{ link.description[langKey] }} -
    - {% if link.88x31 %} - {% for 88x31 in link.88x31 %} - {{ i88x31(88x31) }} - {% endfor %} - {% endif %} -
    -
    -
    - {% endfor %} -
    - {% endfor %} -
    \ No newline at end of file diff --git a/site/misc/bookmarks/pt.json b/site/misc/bookmarks/pt.json deleted file mode 100644 index acff116..0000000 --- a/site/misc/bookmarks/pt.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "pageTitle": "Favoritos", - "pageDescription": "Minha coleção de sites e páginas interessantes.", - "intro": "Essa é a lista de links favoritos curada por mim, dividida em seções para facilitar a navegação ;-)", - "profiles": "Perfis", - "downloads": "Downloads", - "games": "Jogos", - "tools": "Ferramentas", - "music": "Música", - "piracy": "Pirataria", - "services": "Serviços" -} \ No newline at end of file diff --git a/site/misc/hotlinking/en.json b/site/misc/hotlinking/en.json deleted file mode 100644 index f3a17ac..0000000 --- a/site/misc/hotlinking/en.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "pageTitle": "Hotlinking me", - "pageDescription": "Instructions and resources for other cool netizens linking me in their page.", - "intro": "You're here probably because you want to link me in your page, that's cooool! To help you I've compiled some resources and snippets that carry some of my visual identity. Of course you're free to modify, reupload or even not use these." -} \ No newline at end of file diff --git a/site/misc/hotlinking/index.njk b/site/misc/hotlinking/index.njk deleted file mode 100644 index 2d34e6e..0000000 --- a/site/misc/hotlinking/index.njk +++ /dev/null @@ -1,45 +0,0 @@ ---- -layout: text.njk -pagination: - data: languages - size: 1 - alias: langKey ---- -{% from "macros.njk" import i88x31 with context %} - -
    -
    -

    {{ t.pageTitle }}

    -

    {{ t.intro }}

    -
    -
    -

    88x31

    - {{ i88x31("tenkuma.gif") }} - {% highlight "html" %} - - {% endhighlight %} - {{ i88x31("tenkuma2.gif") }} - {% highlight "html" %} - - {% endhighlight %} - {{ i88x31("tenkuma-splash.gif") }} - {% highlight "html" %} - - {% endhighlight %} - -

    HTML

    - -
    -

    tenkuma

    - Computer cursor arrow line drawing -
    -
    - {% highlight "html" %} - -
    -

    tenkuma

    - Computer cursor arrow line drawing -
    -
    - {% endhighlight %} -
    \ No newline at end of file diff --git a/site/misc/hotlinking/pt.json b/site/misc/hotlinking/pt.json deleted file mode 100644 index b0a9dc1..0000000 --- a/site/misc/hotlinking/pt.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "pageTitle": "Me linkando", - "pageDescription": "Instruções e recursos para outros internautas legais me colocarem nas suas páginas.", - "intro": "Você provavelmente veio aqui porque quer me linkar na sua página, que legaaaaal! Para te ajudar eu juntei uns recursos que carregam um pouco da minha identidade visual. Claro que você pode modificar, salvar ou nem usar eles." -} \ No newline at end of file diff --git a/site/misc/kumaos/en.json b/site/misc/kumaos/en.json deleted file mode 100644 index 5405e32..0000000 --- a/site/misc/kumaos/en.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "pageDescription": "Operating system written in JS." -} \ No newline at end of file diff --git a/site/misc/kumaos/index.njk b/site/misc/kumaos/index.njk deleted file mode 100644 index 07bcd46..0000000 --- a/site/misc/kumaos/index.njk +++ /dev/null @@ -1,34 +0,0 @@ ---- -pageTitle: kumaOS -pagination: - data: languages - size: 1 - alias: langKey ---- - - - - - - Document - - - - - -
    -

    kumaOS

    -

    demo - not for production

    -
    - - - \ No newline at end of file diff --git a/site/misc/kumaos/pt.json b/site/misc/kumaos/pt.json deleted file mode 100644 index 0f23f42..0000000 --- a/site/misc/kumaos/pt.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "pageDescription": "Sistema operacional em JS." -} \ No newline at end of file diff --git a/site/misc/misc.11tydata.cjs b/site/misc/misc.11tydata.cjs deleted file mode 100644 index ecd6f5f..0000000 --- a/site/misc/misc.11tydata.cjs +++ /dev/null @@ -1,32 +0,0 @@ -const fs = require("fs"); -const path = require("path"); - -module.exports = { - eleventyComputed: { - t: (data) => { - const dir = path.dirname(data.page.inputPath); - - const file = path.join(dir, `${data.langKey}.json`); - if (fs.existsSync(file)) { - return JSON.parse(fs.readFileSync(file, "utf-8")); - } - - return {}; - }, - c: (data) => { - const dir = path.dirname(data.page.inputPath); - - const file = path.join(dir, `common.json`); - if (fs.existsSync(file)) { - return JSON.parse(fs.readFileSync(file, "utf-8")); - } - - return {}; - } - }, - permalink: data => { - return `/${data.langKey}/misc/${data.page.fileSlug}/`; - }, - tags: "misc", - headerLink: "misc" -}; diff --git a/site/misc/webresources/en.json b/site/misc/webresources/en.json deleted file mode 100644 index d402f37..0000000 --- a/site/misc/webresources/en.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "pageTitle": "Web assets", - "pageDescription": "My library of assets/scripts for websites.", - "intro": "This page's dedicated to showcasing some stuff I made for websites that may also be useful to you. Everything's on public domain unless otherwise stated, and atributtion is very appreciated ;-)", - "tumblrAdapt": "A script that detects if the URL attribute tumblr is true and adapts the website design to dodge Tumblr menu, useful if you point your blog HTML to your website (doable with iframe). It also sanitizes external links adding target=\"_blank\" (opens in a new tab) and preserves the tumblr attribute in each link.", - "click": "Script that plays a custom sound when you click the page or hover a link. The code checks disablesfx on localstorage, if it's true the sound does not play. Localstorage is checked when playing the audio, so it's possible to enable/disable it without reloading the page.", - "ccd": "Triggered when the user types the famous Konami Code inside the page and redirects to another page. The script name is an abbreviation of Konami Code, but with a C instead of K to be less obvious. It's pretty easy to modify it do other stuff." -} \ No newline at end of file diff --git a/site/misc/webresources/index.njk b/site/misc/webresources/index.njk deleted file mode 100644 index 09a24f1..0000000 --- a/site/misc/webresources/index.njk +++ /dev/null @@ -1,121 +0,0 @@ ---- -layout: text.njk -pagination: - data: languages - size: 1 - alias: langKey ---- -{% from "macros.njk" import i88x31 with context %} - -
    -
    -

    {{ t.pageTitle }}

    -

    {{ t.intro }}

    -
    -
    - - - -

    tumblr-adapt.js

    -

    {{ t.tumblrAdapt | safe }}

    - {% highlight 'js'%}const isTumblr = new URLSearchParams(location.search).get("tumblr") == "true"; // add ?tumblr=true to the tumblr iframe src attribute - -function adaptToTumblrLayout() { - const header = document.querySelector('header'); // change to anything that would return your header - header.classList.add("tumblr"); // your CSS must handle the rest - - // will calc the size of the header and save as a CSS variable called --header-height - const setHeaderOffset = () => { - const height = header.offsetHeight + "px"; - document.documentElement.style.setProperty('--header-height', height); - }; - - // do this once and when the page resizes - setHeaderOffset(); - window.addEventListener('resize', setHeaderOffset); - - // sanitizing links so they don't open in your tumblr iframe - // also making sure all links carry the tumblr property! - document.querySelectorAll("a").forEach(link => { - if (new URL(link.href).host !== location.host) { - link.target = "_blank"; - } - const u = new URL(link.href); - u.searchParams.set("tumblr", "true"); - link.href = u.toString(); - }); -} - -if (isTumblr) adaptToTumblrLayout(); - -/* - By tenkuma ^^ - https://adrianvic.github.io - For those thumblrs that change the blog HTML for an iframe poiting to your personal website! -*/{% endhighlight %} - -

    click.js

    -

    {{ t.click | safe }}

    - -{% highlight 'js' %}// these must be URLs pointing to your audio! -const click = new Audio(`https://adrianvic.github.io/static/audio/click.ogg`); -const hover = new Audio(`https://adrianvic.github.io/static/audio/hover.ogg`); -click.preload = "auto"; -hover.preload = "auto"; - -// adjust volume below -click.volume = 0.5; -hover.volume = 0.5; - - -document.body.addEventListener("click", () => { - // set disablesfx in the local storage to true to - // disable sound effects - if (localStorage.getItem("disablesfx") == 'true') return; - - click.currentTime = 0; - click.play().catch(() => {}); -}); - -document.querySelectorAll('a').forEach(link => { - link.addEventListener("mouseenter", () => { - if (localStorage.getItem("disablesfx") == 'true') return; - hover.currentTime = 0; - hover.play().catch(() => {}); - }) -}) - -/* - By tenkuma ^^ - https://adrianvic.github.io -*/{% endhighlight %} - -

    ccd.js

    -

    {{ t.ccd }}

    - -{% highlight 'js' %}const konamiCode = ['ArrowUp', 'ArrowUp', 'ArrowDown', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'ArrowLeft', 'ArrowRight', 'KeyB', 'KeyA']; -let keyIndex = 0; - -document.addEventListener('keydown', function(event) { - if (event.code === konamiCode[keyIndex]) { - keyIndex++; - if (keyIndex === konamiCode.length) { - // change this to your link! - window.location.href = `https://adrianvic.github.io/static/toyourdreams.txt` - keyIndex = 0; - } - } else { - keyIndex = 0; - } -}); - -/* - By tenkuma ^^ - https://adrianvic.github.io -*/{% endhighlight %} -
    \ No newline at end of file diff --git a/site/misc/webresources/pt.json b/site/misc/webresources/pt.json deleted file mode 100644 index 9c2d577..0000000 --- a/site/misc/webresources/pt.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "pageTitle": "Recursos web", - "pageDescription": "Meu acervo de assets/scripts para websites.", - "intro": "Essa página é dedicada para reunir algumas coisas que eu fiz para websites que podem ser úteis para você também. Tudo daqui está em domínio público, a não ser que esteja escrito o contrário, mas deixar os créditos seria legal ;-)", - "tumblrAdapt": "Um script que detecta se o atributo de URL tumblr é true e adapta o design do site para desviar do menu do Tumblr, caso você coloque seu site como blog do Tumblr (dá para fazer com iframe). Ele também limpa os links adicionando target=\"_blank\" (abre em outra janela) para links externos e preserva o atributo tumblr em todos.", - "click": "Script que toca um som customizado quando você clica ou coloca o cursor em cima de um link. O código verifica o valor de disablesfx no localstorage, se ele for true o som não toca. O localstorage é verificado toda vez que o som toca, então dá para habilitar/desabilitar sem recarregar a página.", - "ccd": "Acionado quando o usuário digita o famoso Konami Code dentro da página e redireciona para outra página. O nome é a abreviação de Konami Code, mas com C ao invés de K para ficar menos óbvio. É bem fácil modificar ele para fazer outra coisa." -} \ No newline at end of file diff --git a/site/playground.njk b/site/playground.njk deleted file mode 100644 index 3cdadba..0000000 --- a/site/playground.njk +++ /dev/null @@ -1,89 +0,0 @@ ---- -layout: text.njk ---- -{% from "macros.njk" import i88x31 with context %} -{% from "macros.njk" import webring %} -{% from "macros.njk" import projectCard %} -{% from "macros.njk" import videoCard with context %} - -
    -

    Playground

    -

    This is a test page showcasing different elements from the website. By the way, this box is a page header box, which is a regular box without margin followed by a separator.

    -
    - -
    - -

    Text

    -

    Flowers are red, they can also be blue. Just like links. I'm not much of a poet... Anyways, did I get the link contrast right this time? And the paragraph spacing?

    -

    Bolinho de Chuva

    -

    Did you know here in Brazil we have a dessert literally called Bolinho de Chuva (lit. "rain cake")? It's basically fried dough with sugar, the best ones have banana inside. The tradition is to make them when it's raining, I have a lot of childhood memories of eating this and thinking of this now makes me realize it may be one of the reasons I like rain so much. Don't get me wrong, I hate being in the rain, I swear I can feel each drop puncturing me like a needle. What I like is to stay home and listen to the gentle song of falling droplets.

    -

    I was eating one when I wrote this.

    - -

    Alert box

    -
    -

    This is a alert box.

    -
    - -

    Code block

    -

    Uses Eleventy highlight plugin, Prism CSS by RunDevelopment slightly edited to fit the website design language.

    -{% highlight "js" %} -function myFunction() { - return true; -} -{% endhighlight %} - -

    88x31 interactive images

    -

    88x31 are looking too small on modern monitors, so you can now click on them to expand.

    -{{ i88x31("tenkuma.gif") }} -{{ i88x31("anybrowser6.gif") }} -{{ i88x31("ai.gif") }} -{{ i88x31("WEBP.gif") }} - -

    Webring widget

    -

    Generic webring widget with custom background, link color and links.

    -{{ webring({ - text: "Breakcore Webring", - links: [ - "First", - "Second", - "Third" - ], - image: "/static/images/metro-flowers.jpg" -}) }} - -

    Project card

    -

    These are used in the homepage to list my repos.

    -{{ - projectCard( - "Example project", - "I'm probably not entering heaven for this terrible picture I made of my Minecraft skin. Now I cannot delete it from the website files because it's being used here. I even had the balls to call it me.png.", - ('/static/images/me.png' | url ), - '/static/images/me.png', - "PestoWiki" - ) -}} - -

    Video card

    -

    The image, website and video duration are hardcoded so you don't ping any server to pull it (and it works without JS). Of course none of that is relevant to you, this site source is a mess so you don't have to deal with privacy invasive bullshit, I'm just stating that to fill space after the title, spacing is strange with no text here.

    -
    - {{ - videoCard( - i18n["global"].homeVideoLink, - "I don't know the video title, it's pulling from the global string table.", - i18n["global"].homeVideoImage, - i18n["global"].homeVideoWebsite, - i18n["global"].homeVideoDuration - ) - }} -
    - -

    Recent commits

    -

    Thanks to workeffortwaste's eleventy-plugin-recent-changes <3

    - - -

    Link with favicon

    -

    Here's a link to {% ai "https://github.com/adrianivc" %}my github page{% endai %}. Thanks to bmuenzenmeyer's eleventy-plugin-inline-link-favicon <3

    \ No newline at end of file diff --git a/site/posts/posts.11tydata.cjs b/site/posts/posts.11tydata.cjs deleted file mode 100644 index 6dd7a73..0000000 --- a/site/posts/posts.11tydata.cjs +++ /dev/null @@ -1,13 +0,0 @@ -let data = { - layout: "_includes/post.njk", - headerLink: "blog", - eleventyComputed: { - lastModified: function(data) { - const fs = require('fs'); - const stats = fs.statSync(data.page.inputPath); - return stats.mtime; - } - } -}; - -module.exports = data; diff --git a/site/school/school.json b/site/school/school.json deleted file mode 100644 index 2d173c2..0000000 --- a/site/school/school.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "layout": "base.njk", - "title": "Adrian Victor:Trabalhos", - "langKey": "pt" -} \ No newline at end of file diff --git a/site/social.njk b/site/social.njk deleted file mode 100644 index 8cd1d6f..0000000 --- a/site/social.njk +++ /dev/null @@ -1,50 +0,0 @@ ---- -pagination: - data: i18n - size: 1 - alias: langKey -permalink: "/{{ langKey }}/social/index.html" -layout: base.njk -title: Adrian Victor:Social -headerLink: social ---- - - - -
    -
    -

    {{ i18n[langKey].socialContentNotRated }}

    -
    -

    {{ i18n[langKey].mastodonPageDescription }}

    - -
    \ No newline at end of file diff --git a/static/LICENSE.txt b/static/LICENSE.txt deleted file mode 100644 index f49a4e1..0000000 --- a/static/LICENSE.txt +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file diff --git a/static/audio/click.ogg b/static/audio/click.ogg deleted file mode 100644 index c0c8461..0000000 Binary files a/static/audio/click.ogg and /dev/null differ diff --git a/static/audio/hover.ogg b/static/audio/hover.ogg deleted file mode 100644 index 45a0cc1..0000000 Binary files a/static/audio/hover.ogg and /dev/null differ diff --git a/static/images/88x31/1.gif b/static/images/88x31/1.gif deleted file mode 100644 index 2a28216..0000000 Binary files a/static/images/88x31/1.gif and /dev/null differ diff --git a/static/images/88x31/9larpfinal.png b/static/images/88x31/9larpfinal.png deleted file mode 100644 index 29758ed..0000000 Binary files a/static/images/88x31/9larpfinal.png and /dev/null differ diff --git a/static/images/88x31/C4YSB2.gif b/static/images/88x31/C4YSB2.gif deleted file mode 100644 index 12b9479..0000000 Binary files a/static/images/88x31/C4YSB2.gif and /dev/null differ diff --git a/static/images/88x31/FCbw.gif b/static/images/88x31/FCbw.gif deleted file mode 100644 index 8efaa19..0000000 Binary files a/static/images/88x31/FCbw.gif and /dev/null differ diff --git a/static/images/88x31/abs.gif b/static/images/88x31/abs.gif deleted file mode 100644 index 073c1a0..0000000 Binary files a/static/images/88x31/abs.gif and /dev/null differ diff --git a/static/images/88x31/agplv3-88x31.gif b/static/images/88x31/agplv3-88x31.gif deleted file mode 100644 index d2f65d4..0000000 Binary files a/static/images/88x31/agplv3-88x31.gif and /dev/null differ diff --git a/static/images/88x31/altavista.gif b/static/images/88x31/altavista.gif deleted file mode 100644 index ccfc5cf..0000000 Binary files a/static/images/88x31/altavista.gif and /dev/null differ diff --git a/static/images/88x31/appak.png b/static/images/88x31/appak.png deleted file mode 100644 index 1ad660d..0000000 Binary files a/static/images/88x31/appak.png and /dev/null differ diff --git a/static/images/88x31/archlinux.gif b/static/images/88x31/archlinux.gif deleted file mode 100644 index 6fcc440..0000000 Binary files a/static/images/88x31/archlinux.gif and /dev/null differ diff --git a/static/images/88x31/atabook.gif b/static/images/88x31/atabook.gif deleted file mode 100644 index 69494b9..0000000 Binary files a/static/images/88x31/atabook.gif and /dev/null differ diff --git a/static/images/88x31/banner2.gif b/static/images/88x31/banner2.gif deleted file mode 100644 index 7728776..0000000 Binary files a/static/images/88x31/banner2.gif and /dev/null differ diff --git a/static/images/88x31/banporn.gif b/static/images/88x31/banporn.gif deleted file mode 100644 index 427b8bc..0000000 Binary files a/static/images/88x31/banporn.gif and /dev/null differ diff --git a/static/images/88x31/blink-0.gif b/static/images/88x31/blink-0.gif deleted file mode 100644 index 2acde1c..0000000 Binary files a/static/images/88x31/blink-0.gif and /dev/null differ diff --git a/static/images/88x31/blinkie.gif b/static/images/88x31/blinkie.gif deleted file mode 100644 index 6dfd3ed..0000000 Binary files a/static/images/88x31/blinkie.gif and /dev/null differ diff --git a/static/images/88x31/breakcore.gif b/static/images/88x31/breakcore.gif deleted file mode 100644 index adfab70..0000000 Binary files a/static/images/88x31/breakcore.gif and /dev/null differ diff --git a/static/images/88x31/brigif.gif b/static/images/88x31/brigif.gif deleted file mode 100644 index d49edf5..0000000 Binary files a/static/images/88x31/brigif.gif and /dev/null differ diff --git a/static/images/88x31/bugdroidspin.gif b/static/images/88x31/bugdroidspin.gif deleted file mode 100644 index 9869b55..0000000 Binary files a/static/images/88x31/bugdroidspin.gif and /dev/null differ diff --git a/static/images/88x31/button-droid-pack.png b/static/images/88x31/button-droid-pack.png deleted file mode 100644 index b8ba363..0000000 Binary files a/static/images/88x31/button-droid-pack.png and /dev/null differ diff --git a/static/images/88x31/buttonaban.gif b/static/images/88x31/buttonaban.gif deleted file mode 100644 index 5ba23de..0000000 Binary files a/static/images/88x31/buttonaban.gif and /dev/null differ diff --git a/static/images/88x31/cab.gif b/static/images/88x31/cab.gif deleted file mode 100644 index a62e0f6..0000000 Binary files a/static/images/88x31/cab.gif and /dev/null differ diff --git a/static/images/88x31/cannelle.gif b/static/images/88x31/cannelle.gif deleted file mode 100644 index 04f30ad..0000000 Binary files a/static/images/88x31/cannelle.gif and /dev/null differ diff --git a/static/images/88x31/cd_rom.gif b/static/images/88x31/cd_rom.gif deleted file mode 100644 index de381bc..0000000 Binary files a/static/images/88x31/cd_rom.gif and /dev/null differ diff --git a/static/images/88x31/code88x31_1.gif b/static/images/88x31/code88x31_1.gif deleted file mode 100644 index c60cf11..0000000 Binary files a/static/images/88x31/code88x31_1.gif and /dev/null differ diff --git a/static/images/88x31/cogs.gif b/static/images/88x31/cogs.gif deleted file mode 100644 index d3f68eb..0000000 Binary files a/static/images/88x31/cogs.gif and /dev/null differ diff --git a/static/images/88x31/coke.gif b/static/images/88x31/coke.gif deleted file mode 100644 index b2fb382..0000000 Binary files a/static/images/88x31/coke.gif and /dev/null differ diff --git a/static/images/88x31/coreboot.gif b/static/images/88x31/coreboot.gif deleted file mode 100644 index 6458ac2..0000000 Binary files a/static/images/88x31/coreboot.gif and /dev/null differ diff --git a/static/images/88x31/crypto_is_a_scam.webp b/static/images/88x31/crypto_is_a_scam.webp deleted file mode 100644 index e5f49b1..0000000 Binary files a/static/images/88x31/crypto_is_a_scam.webp and /dev/null differ diff --git a/static/images/88x31/defcon1.gif b/static/images/88x31/defcon1.gif deleted file mode 100644 index 7d2b51b..0000000 Binary files a/static/images/88x31/defcon1.gif and /dev/null differ diff --git a/static/images/88x31/demozoo.gif b/static/images/88x31/demozoo.gif deleted file mode 100644 index 1bde656..0000000 Binary files a/static/images/88x31/demozoo.gif and /dev/null differ diff --git a/static/images/88x31/destinysoulmates.gif b/static/images/88x31/destinysoulmates.gif deleted file mode 100644 index 6942d3b..0000000 Binary files a/static/images/88x31/destinysoulmates.gif and /dev/null differ diff --git a/static/images/88x31/digimon_terminal.gif b/static/images/88x31/digimon_terminal.gif deleted file mode 100644 index a90ec5a..0000000 Binary files a/static/images/88x31/digimon_terminal.gif and /dev/null differ diff --git a/static/images/88x31/disaster.gif b/static/images/88x31/disaster.gif deleted file mode 100644 index a9e8538..0000000 Binary files a/static/images/88x31/disaster.gif and /dev/null differ diff --git a/static/images/88x31/disccontent.gif b/static/images/88x31/disccontent.gif deleted file mode 100644 index ad20126..0000000 Binary files a/static/images/88x31/disccontent.gif and /dev/null differ diff --git a/static/images/88x31/discord-no-way.gif b/static/images/88x31/discord-no-way.gif deleted file mode 100644 index 4ee8d64..0000000 Binary files a/static/images/88x31/discord-no-way.gif and /dev/null differ diff --git a/static/images/88x31/discord.gif b/static/images/88x31/discord.gif deleted file mode 100644 index 8b8b457..0000000 Binary files a/static/images/88x31/discord.gif and /dev/null differ diff --git a/static/images/88x31/discord3.gif b/static/images/88x31/discord3.gif deleted file mode 100644 index 631df88..0000000 Binary files a/static/images/88x31/discord3.gif and /dev/null differ diff --git a/static/images/88x31/discordserver.gif b/static/images/88x31/discordserver.gif deleted file mode 100644 index dbf288c..0000000 Binary files a/static/images/88x31/discordserver.gif and /dev/null differ diff --git a/static/images/88x31/divx_logo2.gif b/static/images/88x31/divx_logo2.gif deleted file mode 100644 index a92b8a5..0000000 Binary files a/static/images/88x31/divx_logo2.gif and /dev/null differ diff --git a/static/images/88x31/dkbutton2.gif b/static/images/88x31/dkbutton2.gif deleted file mode 100644 index 6e21c1c..0000000 Binary files a/static/images/88x31/dkbutton2.gif and /dev/null differ diff --git a/static/images/88x31/doc-cd-icon.gif b/static/images/88x31/doc-cd-icon.gif deleted file mode 100644 index 9e6c1c8..0000000 Binary files a/static/images/88x31/doc-cd-icon.gif and /dev/null differ diff --git a/static/images/88x31/dokuwiki.gif b/static/images/88x31/dokuwiki.gif deleted file mode 100644 index 5600ad3..0000000 Binary files a/static/images/88x31/dokuwiki.gif and /dev/null differ diff --git a/static/images/88x31/donate.gif b/static/images/88x31/donate.gif deleted file mode 100644 index f81ce06..0000000 Binary files a/static/images/88x31/donate.gif and /dev/null differ diff --git a/static/images/88x31/donate2.gif b/static/images/88x31/donate2.gif deleted file mode 100644 index b14b9d7..0000000 Binary files a/static/images/88x31/donate2.gif and /dev/null differ diff --git a/static/images/88x31/dontbephonechump.gif b/static/images/88x31/dontbephonechump.gif deleted file mode 100644 index 67e5420..0000000 Binary files a/static/images/88x31/dontbephonechump.gif and /dev/null differ diff --git a/static/images/88x31/dontklick.gif b/static/images/88x31/dontklick.gif deleted file mode 100644 index b99fc12..0000000 Binary files a/static/images/88x31/dontklick.gif and /dev/null differ diff --git a/static/images/88x31/dos.gif b/static/images/88x31/dos.gif deleted file mode 100644 index 93a00b0..0000000 Binary files a/static/images/88x31/dos.gif and /dev/null differ diff --git a/static/images/88x31/dream_coloured.gif b/static/images/88x31/dream_coloured.gif deleted file mode 100644 index d26718c..0000000 Binary files a/static/images/88x31/dream_coloured.gif and /dev/null differ diff --git a/static/images/88x31/droidringbutton.png b/static/images/88x31/droidringbutton.png deleted file mode 100644 index 4a98460..0000000 Binary files a/static/images/88x31/droidringbutton.png and /dev/null differ diff --git a/static/images/88x31/drpepper.gif b/static/images/88x31/drpepper.gif deleted file mode 100644 index dff6eaa..0000000 Binary files a/static/images/88x31/drpepper.gif and /dev/null differ diff --git a/static/images/88x31/email-icon.gif b/static/images/88x31/email-icon.gif deleted file mode 100644 index 2139e09..0000000 Binary files a/static/images/88x31/email-icon.gif and /dev/null differ diff --git a/static/images/88x31/evangelion.gif b/static/images/88x31/evangelion.gif deleted file mode 100644 index 6c9932d..0000000 Binary files a/static/images/88x31/evangelion.gif and /dev/null differ diff --git a/static/images/88x31/evilnet.gif b/static/images/88x31/evilnet.gif deleted file mode 100644 index c23fa9e..0000000 Binary files a/static/images/88x31/evilnet.gif and /dev/null differ diff --git a/static/images/88x31/falink.gif b/static/images/88x31/falink.gif deleted file mode 100644 index bd19b33..0000000 Binary files a/static/images/88x31/falink.gif and /dev/null differ diff --git a/static/images/88x31/fb_button.gif b/static/images/88x31/fb_button.gif deleted file mode 100644 index 475f24e..0000000 Binary files a/static/images/88x31/fb_button.gif and /dev/null differ diff --git a/static/images/88x31/fckfb.gif b/static/images/88x31/fckfb.gif deleted file mode 100644 index 97abe49..0000000 Binary files a/static/images/88x31/fckfb.gif and /dev/null differ diff --git a/static/images/88x31/fckgoogle.gif b/static/images/88x31/fckgoogle.gif deleted file mode 100644 index ed15649..0000000 Binary files a/static/images/88x31/fckgoogle.gif and /dev/null differ diff --git a/static/images/88x31/fckingwww.gif b/static/images/88x31/fckingwww.gif deleted file mode 100644 index 8a07bc4..0000000 Binary files a/static/images/88x31/fckingwww.gif and /dev/null differ diff --git a/static/images/88x31/fediverse.gif b/static/images/88x31/fediverse.gif deleted file mode 100644 index 6ad64ff..0000000 Binary files a/static/images/88x31/fediverse.gif and /dev/null differ diff --git a/static/images/88x31/fedora.gif b/static/images/88x31/fedora.gif deleted file mode 100644 index 5953e46..0000000 Binary files a/static/images/88x31/fedora.gif and /dev/null differ diff --git a/static/images/88x31/fedora2.gif b/static/images/88x31/fedora2.gif deleted file mode 100644 index 0581d69..0000000 Binary files a/static/images/88x31/fedora2.gif and /dev/null differ diff --git a/static/images/88x31/ffrediscover.gif b/static/images/88x31/ffrediscover.gif deleted file mode 100644 index 432edc4..0000000 Binary files a/static/images/88x31/ffrediscover.gif and /dev/null differ diff --git a/static/images/88x31/fftake.gif b/static/images/88x31/fftake.gif deleted file mode 100644 index 7a86d07..0000000 Binary files a/static/images/88x31/fftake.gif and /dev/null differ diff --git a/static/images/88x31/fic005.gif b/static/images/88x31/fic005.gif deleted file mode 100644 index 4988165..0000000 Binary files a/static/images/88x31/fic005.gif and /dev/null differ diff --git a/static/images/88x31/fic009.gif b/static/images/88x31/fic009.gif deleted file mode 100644 index 647ff7f..0000000 Binary files a/static/images/88x31/fic009.gif and /dev/null differ diff --git a/static/images/88x31/filetransit.gif b/static/images/88x31/filetransit.gif deleted file mode 100644 index f6e7f12..0000000 Binary files a/static/images/88x31/filetransit.gif and /dev/null differ diff --git a/static/images/88x31/fpobutton.gif b/static/images/88x31/fpobutton.gif deleted file mode 100644 index c4252c7..0000000 Binary files a/static/images/88x31/fpobutton.gif and /dev/null differ diff --git a/static/images/88x31/get_da.gif b/static/images/88x31/get_da.gif deleted file mode 100644 index dae4e03..0000000 Binary files a/static/images/88x31/get_da.gif and /dev/null differ diff --git a/static/images/88x31/google_25wht.gif b/static/images/88x31/google_25wht.gif deleted file mode 100644 index 28f6fdc..0000000 Binary files a/static/images/88x31/google_25wht.gif and /dev/null differ diff --git a/static/images/88x31/google_stand.gif b/static/images/88x31/google_stand.gif deleted file mode 100644 index 08ffd8b..0000000 Binary files a/static/images/88x31/google_stand.gif and /dev/null differ diff --git a/static/images/88x31/hotgraphics.gif b/static/images/88x31/hotgraphics.gif deleted file mode 100644 index 2ea566c..0000000 Binary files a/static/images/88x31/hotgraphics.gif and /dev/null differ diff --git a/static/images/88x31/hotmail2.gif b/static/images/88x31/hotmail2.gif deleted file mode 100644 index f723b79..0000000 Binary files a/static/images/88x31/hotmail2.gif and /dev/null differ diff --git a/static/images/88x31/ipv6.gif b/static/images/88x31/ipv6.gif deleted file mode 100644 index 3c17939..0000000 Binary files a/static/images/88x31/ipv6.gif and /dev/null differ diff --git a/static/images/88x31/latex.gif b/static/images/88x31/latex.gif deleted file mode 100644 index ac68f8d..0000000 Binary files a/static/images/88x31/latex.gif and /dev/null differ diff --git a/static/images/88x31/ldp-link.gif b/static/images/88x31/ldp-link.gif deleted file mode 100644 index 940cac2..0000000 Binary files a/static/images/88x31/ldp-link.gif and /dev/null differ diff --git a/static/images/88x31/maaagic.png b/static/images/88x31/maaagic.png deleted file mode 100644 index 2bd177c..0000000 Binary files a/static/images/88x31/maaagic.png and /dev/null differ diff --git a/static/images/88x31/macos.gif b/static/images/88x31/macos.gif deleted file mode 100644 index 52d3f72..0000000 Binary files a/static/images/88x31/macos.gif and /dev/null differ diff --git a/static/images/88x31/macos_mov.gif b/static/images/88x31/macos_mov.gif deleted file mode 100644 index 48e82c4..0000000 Binary files a/static/images/88x31/macos_mov.gif and /dev/null differ diff --git a/static/images/88x31/masto.gif b/static/images/88x31/masto.gif deleted file mode 100644 index 8597dab..0000000 Binary files a/static/images/88x31/masto.gif and /dev/null differ diff --git a/static/images/88x31/microsoft_frontpage.gif b/static/images/88x31/microsoft_frontpage.gif deleted file mode 100644 index 18f28de..0000000 Binary files a/static/images/88x31/microsoft_frontpage.gif and /dev/null differ diff --git a/static/images/88x31/minecraft.gif b/static/images/88x31/minecraft.gif deleted file mode 100644 index a149b45..0000000 Binary files a/static/images/88x31/minecraft.gif and /dev/null differ diff --git a/static/images/88x31/mrnandokk.gif b/static/images/88x31/mrnandokk.gif deleted file mode 100644 index 86c1698..0000000 Binary files a/static/images/88x31/mrnandokk.gif and /dev/null differ diff --git a/static/images/88x31/nft-nofuckingthanks.gif b/static/images/88x31/nft-nofuckingthanks.gif deleted file mode 100644 index ecbd158..0000000 Binary files a/static/images/88x31/nft-nofuckingthanks.gif and /dev/null differ diff --git a/static/images/88x31/nintendo-hh-gba.png b/static/images/88x31/nintendo-hh-gba.png deleted file mode 100644 index a35cb92..0000000 Binary files a/static/images/88x31/nintendo-hh-gba.png and /dev/null differ diff --git a/static/images/88x31/noanime.gif b/static/images/88x31/noanime.gif deleted file mode 100644 index c05bebf..0000000 Binary files a/static/images/88x31/noanime.gif and /dev/null differ diff --git a/static/images/88x31/nobelief.gif b/static/images/88x31/nobelief.gif deleted file mode 100644 index 2f0e1f9..0000000 Binary files a/static/images/88x31/nobelief.gif and /dev/null differ diff --git a/static/images/88x31/nocookie.gif b/static/images/88x31/nocookie.gif deleted file mode 100644 index c0dd092..0000000 Binary files a/static/images/88x31/nocookie.gif and /dev/null differ diff --git a/static/images/88x31/noodle.gif b/static/images/88x31/noodle.gif deleted file mode 100644 index 882fa97..0000000 Binary files a/static/images/88x31/noodle.gif and /dev/null differ diff --git a/static/images/88x31/nvidia.gif b/static/images/88x31/nvidia.gif deleted file mode 100644 index 81d5921..0000000 Binary files a/static/images/88x31/nvidia.gif and /dev/null differ diff --git a/static/images/88x31/oldos.png b/static/images/88x31/oldos.png deleted file mode 100644 index 4651c73..0000000 Binary files a/static/images/88x31/oldos.png and /dev/null differ diff --git a/static/images/88x31/penguin.gif b/static/images/88x31/penguin.gif deleted file mode 100644 index 97e71e0..0000000 Binary files a/static/images/88x31/penguin.gif and /dev/null differ diff --git a/static/images/88x31/pictochat.gif b/static/images/88x31/pictochat.gif deleted file mode 100644 index 91d9cb3..0000000 Binary files a/static/images/88x31/pictochat.gif and /dev/null differ diff --git a/static/images/88x31/psbutton.gif b/static/images/88x31/psbutton.gif deleted file mode 100644 index a4d8c38..0000000 Binary files a/static/images/88x31/psbutton.gif and /dev/null differ diff --git a/static/images/88x31/pyurk.gif b/static/images/88x31/pyurk.gif deleted file mode 100644 index ee34f99..0000000 Binary files a/static/images/88x31/pyurk.gif and /dev/null differ diff --git a/static/images/88x31/spacehey.png b/static/images/88x31/spacehey.png deleted file mode 100644 index 915b97d..0000000 Binary files a/static/images/88x31/spacehey.png and /dev/null differ diff --git a/static/images/88x31/statuscafe.png b/static/images/88x31/statuscafe.png deleted file mode 100644 index c94631b..0000000 Binary files a/static/images/88x31/statuscafe.png and /dev/null differ diff --git a/static/images/88x31/tenkuma-splash.gif b/static/images/88x31/tenkuma-splash.gif deleted file mode 100644 index f4befbd..0000000 Binary files a/static/images/88x31/tenkuma-splash.gif and /dev/null differ diff --git a/static/images/88x31/tenkuma2.gif b/static/images/88x31/tenkuma2.gif deleted file mode 100644 index ed1e0a7..0000000 Binary files a/static/images/88x31/tenkuma2.gif and /dev/null differ diff --git a/static/images/88x31/vilogo.gif b/static/images/88x31/vilogo.gif deleted file mode 100644 index 98289d7..0000000 Binary files a/static/images/88x31/vilogo.gif and /dev/null differ diff --git a/static/images/88x31/vim.gif b/static/images/88x31/vim.gif deleted file mode 100644 index 84baf9a..0000000 Binary files a/static/images/88x31/vim.gif and /dev/null differ diff --git a/static/images/88x31/volta.gif b/static/images/88x31/volta.gif deleted file mode 100644 index 2616771..0000000 Binary files a/static/images/88x31/volta.gif and /dev/null differ diff --git a/static/images/88x31/wbbhosting.gif b/static/images/88x31/wbbhosting.gif deleted file mode 100644 index b72e71e..0000000 Binary files a/static/images/88x31/wbbhosting.gif and /dev/null differ diff --git a/static/images/88x31/web3.gif b/static/images/88x31/web3.gif deleted file mode 100644 index 4f5a2f1..0000000 Binary files a/static/images/88x31/web3.gif and /dev/null differ diff --git a/static/images/88x31/wrongcode.gif b/static/images/88x31/wrongcode.gif deleted file mode 100644 index 61e4a24..0000000 Binary files a/static/images/88x31/wrongcode.gif and /dev/null differ diff --git a/static/images/88x31/wrongos.gif b/static/images/88x31/wrongos.gif deleted file mode 100644 index d9b2dad..0000000 Binary files a/static/images/88x31/wrongos.gif and /dev/null differ diff --git a/static/images/backgrounds/marika-nisekoi.png b/static/images/backgrounds/marika-nisekoi.png deleted file mode 100644 index f9a1fa4..0000000 Binary files a/static/images/backgrounds/marika-nisekoi.png and /dev/null differ diff --git a/static/images/bear2.jpg b/static/images/bear2.jpg deleted file mode 100644 index 2753acb..0000000 Binary files a/static/images/bear2.jpg and /dev/null differ diff --git a/static/images/bear3.jpg b/static/images/bear3.jpg deleted file mode 100644 index 43fb07d..0000000 Binary files a/static/images/bear3.jpg and /dev/null differ diff --git a/static/images/bliss-dark.jpg b/static/images/bliss-dark.jpg deleted file mode 100644 index 442d1a2..0000000 Binary files a/static/images/bliss-dark.jpg and /dev/null differ diff --git a/static/images/grunge.png b/static/images/grunge.png deleted file mode 100644 index 21cfecf..0000000 Binary files a/static/images/grunge.png and /dev/null differ diff --git a/static/images/metro-flowers-original.jpg b/static/images/metro-flowers-original.jpg deleted file mode 100644 index d3b8bff..0000000 Binary files a/static/images/metro-flowers-original.jpg and /dev/null differ diff --git a/static/images/metro-flowers.jpg b/static/images/metro-flowers.jpg deleted file mode 100644 index ded254a..0000000 Binary files a/static/images/metro-flowers.jpg and /dev/null differ diff --git a/static/images/polar_bear_white_bear.jpg b/static/images/polar_bear_white_bear.jpg deleted file mode 100644 index 2753acb..0000000 Binary files a/static/images/polar_bear_white_bear.jpg and /dev/null differ diff --git a/static/images/profile.jpg b/static/images/profile.jpg deleted file mode 100644 index 09f44f3..0000000 Binary files a/static/images/profile.jpg and /dev/null differ diff --git a/static/images/thumbnails/goodbye.png b/static/images/thumbnails/goodbye.png deleted file mode 100644 index 4338749..0000000 Binary files a/static/images/thumbnails/goodbye.png and /dev/null differ diff --git a/static/kumos/apps/apps.mjs b/static/kumos/apps/apps.mjs deleted file mode 100644 index 37e81b5..0000000 --- a/static/kumos/apps/apps.mjs +++ /dev/null @@ -1,29 +0,0 @@ -import { Application, Window, promoteWindow, registerApplication, getScreenRoot, getApplications } from "../kernel.mjs"; - -const app = new Application('apps', (p) => { - const w = new Window(p); - w.setTitle("App list"); - w.content.style.padding = "1rem"; - - const list = document.createElement("ul"); - getApplications().forEach(app => { - const item = document.createElement("li"); - const link = document.createElement("a"); - link.innerText = app.name; - link.addEventListener('click', () => app.bootstrap()); - item.appendChild(link); - list.appendChild(item); - }) - - w.content.appendChild(list); - - w.close.addEventListener('click', () => { - p.detach(); - w.destroy(); - }); - - getScreenRoot().appendChild(w.window); - promoteWindow(w); -}) - -export default app; \ No newline at end of file diff --git a/static/kumos/apps/browser.mjs b/static/kumos/apps/browser.mjs deleted file mode 100644 index 08997d6..0000000 --- a/static/kumos/apps/browser.mjs +++ /dev/null @@ -1,32 +0,0 @@ -import { Application, Window, promoteWindow, registerApplication, getScreenRoot } from "../kernel.mjs"; - -const app = new Application('browser', (p) => { - const w = new Window(p); - w.setTitle("Web browser"); - const iframe = document.createElement("iframe"); - iframe.src = "https://adrianvic.github.io"; - iframe.style.height = "100%"; - const searchBar = document.createElement("div"); - searchBar.style.display = "flex"; - const search = document.createElement("input"); - search.style.width = "100%"; - const searchButton = document.createElement("button"); - searchBar.appendChild(search); - searchBar.appendChild(searchButton); - search.type = "text"; - iframe.addEventListener('load', () => search.value = iframe.src); - searchButton.innerText = "go"; - searchButton.addEventListener('click', () => iframe.src = search.value); - w.content.appendChild(searchBar); - w.content.appendChild(iframe); - - getScreenRoot().appendChild(w.window); - promoteWindow(w); - - w.close.addEventListener('click', () => { - p.detach(); - w.destroy(); - }) -}) - -export default app; \ No newline at end of file diff --git a/static/kumos/apps/guestbook.mjs b/static/kumos/apps/guestbook.mjs deleted file mode 100644 index cd547a8..0000000 --- a/static/kumos/apps/guestbook.mjs +++ /dev/null @@ -1,38 +0,0 @@ -import { Application, Window, promoteWindow, registerApplication, getScreenRoot, getProcList } from "../kernel.mjs"; -import { notify } from "../system/shell.mjs"; - -function draw(p) { - const w = new Window(p); - w.setTitle("Guestbook"); - w.content.innerHTML = ` - - - - ` - - getScreenRoot().appendChild(w.window); - promoteWindow(w); - - w.close.addEventListener('click', () => { - p.detach(); - w.destroy(); - }) -} - -function main(p) { - let running = false; - getProcList().forEach(proc => { - if (proc.name == 'guestbook' && proc != p) { - notify("Guestbook", "Guestbook is already running!") - p.detach(); - running = true; - } - }) - - if (!running) { - draw(p); - } -} - -const app = new Application('guestbook', main); -export default app; \ No newline at end of file diff --git a/static/kumos/apps/pkg.mjs b/static/kumos/apps/pkg.mjs deleted file mode 100644 index 064718f..0000000 --- a/static/kumos/apps/pkg.mjs +++ /dev/null @@ -1,5 +0,0 @@ -import "./apps.mjs"; -import "./browser.mjs"; -import "./guestbook.mjs"; -import "./taskmanager.mjs"; -import "./shell.mjs"; \ No newline at end of file diff --git a/static/kumos/apps/shell.mjs b/static/kumos/apps/shell.mjs deleted file mode 100644 index 2be512c..0000000 --- a/static/kumos/apps/shell.mjs +++ /dev/null @@ -1,61 +0,0 @@ -import { Application, Window, getScreenRoot, bus, promoteWindow } from "../kernel.mjs"; - -function draw(p) { - const w = new Window(p); - w.setTitle("Shell"); - w.content.style.display = "flex"; - w.content.style.flexDirection = "column"; - - const textarea = document.createElement("textarea"); - textarea.style.width = "100%"; - textarea.style.height = "100%"; - bus.addEventListener("system-console", (e) => { - textarea.value += e.detail - .map(arg => typeof arg === "object" ? JSON.stringify(arg) : String(arg)) - .join(" ") - + "\n"; - }) - - const div = document.createElement("div"); - div.style.width = "100%"; - div.style.display = "flex"; - - const input = document.createElement("input"); - input.style.width = "100%"; - - const button = document.createElement("button"); - button.textContent = "go"; - button.addEventListener('click', () => { - eval(input.value); - }); - - div.appendChild(input); - div.appendChild(button); - - w.content.appendChild(textarea); - w.content.appendChild(div); - getScreenRoot().appendChild(w.window); - w.maximize(); - - function title(title) { - w.setTitle(title); - } - - function exit() { - p.detach(); - w.destroy(); - } - - w.close.addEventListener('click', () => { - exit(); - }) - - promoteWindow(w); -} - -function main(p) { - draw(p); -} - -const app = new Application('shell', main); -export default app; \ No newline at end of file diff --git a/static/kumos/apps/taskmanager.mjs b/static/kumos/apps/taskmanager.mjs deleted file mode 100644 index 3d643c7..0000000 --- a/static/kumos/apps/taskmanager.mjs +++ /dev/null @@ -1,34 +0,0 @@ -import { Application, Window, promoteWindow, getScreenRoot, getProcList } from "../kernel.mjs"; - -const app = new Application('task', (p) => { - function update() { - w.content.innerHTML = ``; - const list = document.createElement("ul"); - getProcList().forEach(proc => { - const item = document.createElement("li"); - const link = document.createElement("a"); - link.innerText = `${proc.pid} -> ${proc.parent.length === 0 ? `` : proc.parent} ${proc.name}`; - item.appendChild(link); - list.appendChild(item); - }) - - w.content.appendChild(list); - } - - const w = new Window(); - w.setTitle("Task Manager"); - w.content.style.padding = "1rem"; - - const task = setInterval(update, 100); - - w.close.addEventListener('click', () => { - clearInterval(task); - p.detach(); - w.destroy(); - }); - - getScreenRoot().appendChild(w.window); - promoteWindow(w); -}) - -export default app; \ No newline at end of file diff --git a/static/kumos/kernel.mjs b/static/kumos/kernel.mjs deleted file mode 100644 index c726f55..0000000 --- a/static/kumos/kernel.mjs +++ /dev/null @@ -1,180 +0,0 @@ -const language = "en"; -const procList = []; -const applications = []; -const screenRoot = document.querySelector('body'); -screenRoot.classList.add("kumosroot"); - -export const bus = new EventTarget(); - -class SecurityError extends Error { - constructor(message) { - super(message); - this.name = "SercurityError" - } -}; - -export class Process { - constructor(name, fn, parent = []) { - this.pid = procList.length == 0 ? 0 : procList[procList.length - 1].pid + 1; - this.name = name; - this.parent = parent; - procList.push(this); - fn(this); - } - - detach() { - procList.splice(procList.indexOf(this), 1); - } - - child(name, fn) { - return new Process(name, fn, [...this.parent, this.pid]); - } - - isPrivileged() { - return this.parent.indexOf(0) !== -1 || this.pid == 0; - } -} - -export class Application { - constructor(name, fn) { - this.fn = fn; - this.name = name; - registerApplication(this); - } - - bootstrap() { - new Process(this.name, this.fn); - } -} - -export class Window { - constructor(p) { - this.process = p; - - // Window - const w = document.createElement("div"); - w.classList.add("window"); - this.window = w; - - // Header - const h = document.createElement("div"); - h.classList.add("windowHeader"); - this.header = h; - - // Title - const title = document.createElement("p"); - title.classList.add("windowHeaderTitle"); - this.title = title; - - // Buttons container - const container = document.createElement("div"); - container.classList.add("buttonContainer"); - - // Close button - const close = document.createElement("button"); - close.classList.add("windowHeaderButton"); - close.classList.add("close"); - this.close = close; - - // Maximize button - const maximize = document.createElement("button"); - maximize.classList.add("windowHeaderButton"); - maximize.classList.add("maximize"); - this.maximizeButton = maximize; - maximize.addEventListener("click", () => { this.maximize() }); - - // Content - const c = document.createElement("div"); - c.classList.add("windowContent"); - this.content = c; - - // Building - container.appendChild(maximize); - container.appendChild(close); - h.appendChild(title); - h.appendChild(container); - w.appendChild(h); - w.appendChild(c); - - this.state = "floating"; - } - - setTitle(title) { - this.title.innerText = title; - } - - destroy() { - this.window.remove(); - } - - maximize() { - this.window.classList.toggle("maximized"); - } -} - -export function promoteWindow(window) { - const header = window.header; - const elmnt = window.window; - - header.style.cursor = 'move'; - - header.onmousedown = (e) => { - e.preventDefault(); - - let pos3 = e.clientX; - let pos4 = e.clientY; - - const startTop = elmnt.offsetTop; - const startLeft = elmnt.offsetLeft; - - document.onmouseup = closeDragElement; - document.onmousemove = elementDrag; - - function elementDrag(e) { - e.preventDefault(); - const pos1 = pos3 - e.clientX; - const pos2 = pos4 - e.clientY; - pos3 = e.clientX; - pos4 = e.clientY; - - elmnt.style.top = (elmnt.offsetTop - pos2) + "px"; - elmnt.style.left = (elmnt.offsetLeft - pos1) + "px"; - } - - function closeDragElement() { - document.onmouseup = null; - document.onmousemove = null; - } - }; -} - -export function getScreenRoot() { - return screenRoot; -} - -export function getApplications() { - return applications; -} - -export function registerApplication(application) { - applications.push(application); -} - -export function getLanguage() { - return language; -} - -export function getProcList() { - return procList; -} - -["log","warn", "error", "info"].forEach(method => { - const original = console[method]; - - console[method] = (...args) => { - original(...args); - bus.dispatchEvent(new CustomEvent("system-console", { - detail: args - })); - }; -}) \ No newline at end of file diff --git a/static/kumos/kumos.css b/static/kumos/kumos.css deleted file mode 100644 index 557f15e..0000000 --- a/static/kumos/kumos.css +++ /dev/null @@ -1,138 +0,0 @@ -.kumosroot { - --theme-color: #4c6d6e; - --theme-color-lighter: #84b9bb; - --theme-color-variation: #568b8d; - position: relative; - width: 100vw; - height: 100vh; - margin: 0; - padding: 0; - box-sizing: border-box; - overflow: hidden; - color: white; - background-color: black; - font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - - * { - box-sizing: border-box; - padding: 0; - margin: 0; - } - - .window { - position: absolute; - z-index: 9; - width: 300px; - height: 300px; - display: flex; - flex-direction: column; - resize: both; - overflow: hidden; - } - - .window.maximized { - left: 0; - top: 0; - right: 0; - bottom: 0; - width: auto; - height: auto; - } - - .windowHeader { - padding: 10px; - cursor: move; - z-index: 10; - background-color: rgba(255, 255, 255, 0.6); - color: #000000; - flex: 0 0 auto; - } - - .windowHeader .buttonContainer { - display: flex; - gap: .4em; - } - - .windowContent { - width: 100%; - height: 100%; - flex: 1 1 auto; - border: 0; - } - - .windowContent { - overflow: hidden; - display: flex; - flex-direction: column; - background-color: black; - } - - .windowHeader { - display: flex; - } - - .windowHeaderTitle { - margin: 0px; - margin-right: auto; - } - - .kumosBar { - position: absolute; - left: 0; - bottom: 0; - width: 100%; - background-color: var(--theme-color); - padding: .4em; - display: flex; - gap: 1em; - } - - .kumosBar * { - height: 100%; - } - - .windowHeaderButton { - height: 1em; - width: 1em; - padding: 0; - box-sizing: border-box; - border: none; - display: inline-flex; - align-items: center; - justify-content: center; - font-size: 1em; - line-height: 1; - cursor: pointer; - } - - .windowHeaderButton.close::before { - content: "×"; - } - - .windowHeaderButton.close { - background-color: rgba(255, 0, 0, 0.6); - color: white; - } - - .windowHeaderButton.maximize::before { - content: "□"; - } - - .windowHeaderButton.maximize { - background-color: rgba(255, 255, 0, 0.6); - color: black; - } - - button, input, textarea { - padding: .2em; - border: none; - } - - textarea { - resize: none; - } - - li { - margin-inline-start: 1em; - } -} \ No newline at end of file diff --git a/static/kumos/system/init.mjs b/static/kumos/system/init.mjs deleted file mode 100644 index 69543a8..0000000 --- a/static/kumos/system/init.mjs +++ /dev/null @@ -1,10 +0,0 @@ -import "../apps/pkg.mjs"; -import { Process } from "../kernel.mjs"; -import interactiveLogin from "./targets/interactive-login.mjs"; - -function init(p) { - console.log("Welcome to KumOS!"); - interactiveLogin(p); -} - -new Process("init", init); \ No newline at end of file diff --git a/static/kumos/system/login.mjs b/static/kumos/system/login.mjs deleted file mode 100644 index 327bf85..0000000 --- a/static/kumos/system/login.mjs +++ /dev/null @@ -1,43 +0,0 @@ -import { Process, Window, getScreenRoot, promoteWindow } from "../kernel.mjs"; -import createShell from "./shell.mjs"; - -export default function init(p) { - function login(password) { - if (password == "demo") { - p.detach(); - new Process("shell", createShell); - w.destroy(); - } else { - console.log("Invalid password.") - } - } - - console.log("Please log in with login(password)!"); - window.login = login; - const w = new Window(p); - w.setTitle("Login"); - w.window.style.height = "fit-content"; - w.window.style.width = "fit-content"; - w.window.style.resize = "none"; - - const loginForm = document.createElement("div"); - loginForm.style.display = "flex"; - - const passwordInput = document.createElement("input"); - passwordInput.type = "password"; - passwordInput.placeholder = "Password is 'demo'"; - - const loginButton = document.createElement("button"); - loginButton.innerText = "login"; - loginButton.addEventListener('click', () => { - login(passwordInput.value); - }) - - loginForm.appendChild(passwordInput); - loginForm.appendChild(loginButton); - w.content.appendChild(loginForm); - - w.close.remove(); - getScreenRoot().appendChild(w.window); - promoteWindow(w); -} \ No newline at end of file diff --git a/static/kumos/system/shell.mjs b/static/kumos/system/shell.mjs deleted file mode 100644 index 973c343..0000000 --- a/static/kumos/system/shell.mjs +++ /dev/null @@ -1,33 +0,0 @@ -import { getScreenRoot, getApplications, Process } from "../kernel.mjs"; -import { showNotification } from "../../scripts/notification.js"; - -export function notify(title, text, time) { - showNotification(title, text, time); -} - -function runApp(name) { - let launched = false; - getApplications().forEach(app => { - if (app.name == name) { - app.bootstrap(); - launched = true; - } - }) - if (!launched) alert("Not found."); -} - -export default function createShell(p) { - const bar = document.createElement('div'); - bar.classList.add("kumosBar"); - - const run = document.createElement('input'); - const runButton = document.createElement('button'); - run.type = "text"; - runButton.innerText = "Run"; - runButton.id = "kumosBarRunButton" - runButton.addEventListener('click', () => runApp(run.value)); - bar.appendChild(run); - bar.appendChild(runButton); - - getScreenRoot().appendChild(bar); -} \ No newline at end of file diff --git a/static/kumos/system/targets/interactive-login.mjs b/static/kumos/system/targets/interactive-login.mjs deleted file mode 100644 index fb75178..0000000 --- a/static/kumos/system/targets/interactive-login.mjs +++ /dev/null @@ -1,5 +0,0 @@ -import login from "../login.mjs"; - -export default (p) => { - p.child("login", login); -} \ No newline at end of file diff --git a/static/main.css b/static/main.css index edbd982..5db40e4 100644 --- a/static/main.css +++ b/static/main.css @@ -1,14 +1,9 @@ -/* - Adrian Victor's website stylesheet - Don't kill me, I'm just a messenger that grew up using Windows Phone... -*/ - /* Raw elements */ :root { --theme-color: #4c6d6e; --theme-color-lighter: #84b9bb; - --theme-color-variation: #568b8d; + --theme-color-variation: #22e6ed; } * { @@ -26,21 +21,16 @@ body { a { transition: 0.2s; - color: var(--theme-color-variation); + color: lightgray; text-decoration: none; } a:hover { - color: lightgray; - - /* I greatly dislike the look of text-decoration: underline but setting this on hover - is harmonic with the clicking sound effect (it clicks better) */ - text-decoration: underline; + color: var(--theme-color-lighter); } li { list-style-type: none; - margin-bottom: .4em; } dt::before { @@ -64,29 +54,13 @@ select { header { display: flex; - flex-direction: column; border-bottom: thick solid rgba(255, 255, 255, 0.1); - box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); -} - -header .headerContent { width: 100%; + box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.15); - display: flex; } -header.tumblr { - position: fixed; - left: 0; - right: 0; - bottom: 0; - z-index: 9; - border-top: thick solid rgba(255, 255, 255, 0.1); - border-bottom: none; - background-color: rgb(0,0,0,0.8); -} - -header #headerTitle, header #linksHelper { +header div { padding: 1rem; } @@ -116,12 +90,6 @@ main { margin-bottom: 2em; } -#boxChain { - display: flex; - flex-direction: column; - gap: 2em; -} - h1, h2, h3 { @@ -152,9 +120,6 @@ blockquote { } hr { - /* DON'T ASK ME HOW THIS LOOKS SO GOOD - the browser is probably doing weird stuff - to hrs */ border-bottom: thick solid rgba(255, 255, 255, 0.1); box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); /* margin: .5em 0; */ @@ -169,21 +134,12 @@ h2 { textarea, input, button { - transition: .2s; - border: medium solid rgba(255, 255, 255, 0.6); - background-color: rgba(0, 0, 0, 0.2); + border: medium solid var(--theme-color-lighter); + background-color: black; color: white; padding: 0.6em; } -button:hover { - border-color: white; -} - -img { - max-width: 100%; -} - hs { border-bottom: thin solid white; } @@ -254,64 +210,8 @@ aside.metromenu #content { gap: 1em; } -footer a { - font-size: small; -} - /* Global classes and IDs */ -.visually-hidden { - display: none; -} - -.nomargin { - margin: 0; -} - -.noDecoration, .noDecoration:hover { - text-decoration: none; -} - -.noPadding { - padding: 0!important; -} - -.end-text { - text-align: end; -} - -.noWrap { - text-wrap-mode: nowrap; -} - -.lineHeight { - height: 1em; -} - -.fullWidth { - width: 100%; -} - -.singleLine { - overflow: hidden; - display: -webkit-box; - -webkit-line-clamp: 1; - line-clamp: 1; - -webkit-box-orient: vertical; -} - -.doubleLine { - overflow: hidden; - display: -webkit-box; - -webkit-line-clamp: 2; - line-clamp: 2; - -webkit-box-orient: vertical; -} - -.textColored { - color: white; -} - .notificationBox { transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1); width: fit-content; @@ -348,28 +248,6 @@ li.inlineList { margin-bottom: 0; } -.box.alert { - border-color: rgba(255, 0, 0, 0.1); - background-color: rgba(100, 0, 0, 0.3); -} - -.box.alert a { - color: lightcoral; -} - -.box.alert a:hover { - color: lightgray; -} - -.kaoBox { - margin-bottom: 1em; -} - -.negativeMargin { - /* to make a text container merge to a hr below it */ - margin-bottom: -.2em; -} - .pageHeaderBox { border-bottom: 0; } @@ -377,10 +255,10 @@ li.inlineList { .headerSquare, #defaultSquare { transition: 0.4s; - border: thick solid rgba(255, 255, 255, 0.2); - height: 3vw; + border: medium solid white; + height: 7vh; overflow: hidden; - width: 6vw; + width: 10vh; opacity: 0.4; padding: 0.4em; cursor: pointer; @@ -401,10 +279,9 @@ li.inlineList { .headerSquare.selected, #defaultSquare.selected { opacity: 1; - height: 6vw; + height: 10vh; box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.4), 0px -4px 10px rgba(0, 0, 0, 0.4); background-color: rgba(0, 0, 0, 0.3); - border-color: white; } .youtubeCardHolderHelper { @@ -628,11 +505,6 @@ div.hs.selected { opacity: 0 !important; } -article { - max-width: 70%; - margin: auto; -} - .blogpostYoutubeVideo { user-select: none; box-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(0, 0, 0, 0.3); @@ -726,7 +598,6 @@ article { height: 1.4em; margin-top: auto; opacity: 0.6; - margin: auto; } #music:hover { @@ -735,7 +606,6 @@ article { #everythingHelper { position: relative; - margin-bottom: var(--header-height, 0); } #everythingHelper .bg { @@ -759,68 +629,9 @@ article { #mainHelper { padding-top: 3rem; - max-width: 70vw; + max-width: 50vw; margin: auto; display: flex; - gap: 2em; -} - -#mainHelper > aside { - max-width: 20%; - min-width: 20%; -} - -#mainHelper aside { - display: flex; - flex-direction: column; - gap: 1em; -} - -.webringGeneric { - background-color: black; - padding: .4em; - background-position-x: 0; - background-size: cover; -} - -.webringGeneric p { - margin: 0; -} - -.webringButtons { - display: flex; - gap: .4em; -} - -.wrongoLink { - color: #D5E7B5; -} - -#breakcoreWebring { - background-position-x: 0; - background-size: cover; -} - -#breakcoreWebring p { - margin: 20px; -} - -#breakcoreWebring a { - border: thick solid rgba(255, 255, 255, 0.1); - border-bottom: 0; -} - -#breakcoreWebring a:first-child, #breakcoreWebring a:last-child { - border-left: 0; - border-right: 0; -} - -#webring-Wrongos-widget p { - border-top-right-radius: 10px; -} - -#webring-Wrongos-widget a:first-child { - border-bottom-left-radius: 10px; } #headerSubtitle { @@ -899,6 +710,8 @@ header div:first-child { transition: 0.4s; width: fit-content; height: fit-content; + margin-right: 3vw; + margin-bottom: 3rem; gap: 10px; } @@ -914,51 +727,6 @@ header div:first-child { display: flex; } -#homeAside { - margin-bottom: 2em; -} - -#homeWebrings { - display: flex; - flex-direction: column; - gap: 1em; - height: fit-content; -} - -#homeWebrings.less { - max-height: 30em; - overflow: hidden; - --mask: linear-gradient(to bottom, - rgba(0,0,0, 1) 0, rgba(0,0,0, 1) 85%, - rgba(0,0,0, 0) 95%, rgba(0,0,0, 0) 0 - ) 100% 50% / 100% 100% repeat-x; - -webkit-mask: var(--mask); - mask: var(--mask); -} - -#homeBlog p { - overflow: hidden; - display: -webkit-box; - -webkit-line-clamp: 1; - line-clamp: 1; - -webkit-box-orient: vertical; -} - -#homeBlog a { - color: white; -} - -.hotlinks88x31 { - display: grid; - width: fit-content; - margin: auto; - grid-template-columns: 1fr 1fr 1fr; -} - -.internetometerAside img { - max-width: 100%; -} - #telnetSimulation { display: flex; width: 100%; @@ -1014,11 +782,10 @@ header div:first-child { #languageList li a { transition: 1s; - color: white; } .languagesHighlightedLink { - color: var(--theme-color-variation)!important; + color: var(--theme-color-variation); } #songDrawer { @@ -1054,10 +821,6 @@ header div:first-child { opacity: 1; } -.postLink { - color: white; -} - #postHeader * { margin-bottom: 0; } @@ -1066,11 +829,6 @@ header div:first-child { margin-bottom: 1em; } -#miscList dt { - color: var(--theme-color-lighter); - font-weight: bolder; -} - /* Page: misc/favorites */ .favoritesTextBox { @@ -1112,98 +870,6 @@ header div:first-child { margin-top: .2em; } -.mastodonPost { - margin-bottom: 1em; - display: flex; - flex-direction: column; -} - -.mastodonPostContent { - padding: 1em; -} - -.mastodonPostContent, .mastodonLink { - background-color: rgba(0, 0, 0, 0.2); -} - -.mastodonPost p { - margin-bottom: .2em; -} - -.mastodonLink { - width: fit-content; - padding: .4em; - opacity: .8; - margin-left: auto; -} - -.mastodonMedia { - max-height: 5em; - border: medium solid rgba(0, 0, 0, 0.2); -} - -.mastodonMediaBox { - margin-top: 1em; -} - -.mastodonMediaBox div { - display: flex; - overflow: scroll; -} - -.mastodonMediaBox img { - transition: .2s; - opacity: .6; -} - -.mastodonMediaBox img:hover { - opacity: 1; -} - -#socialAside img { - border: thick solid rgba(255, 255, 255, 0.1); - border-top: none; -} - -.fire, .fireHover:hover { - animation: fire-animation 1s ease-in-out infinite alternate; - -moz-animation: fire-animation 1s ease-in-out infinite alternate; - -webkit-animation: fire-animation 1s ease-in-out infinite alternate; - -o-animation: fire-animation 1s ease-in-out infinite alternate; -} - -.burn { - animation: fire-animation .65s ease-in-out infinite alternate; - -moz-animation: fire-animation .65s ease-in-out infinite alternate; - -webkit-animation: fire-animation .65s ease-in-out infinite alternate; - -o-animation: fire-animation .65s ease-in-out infinite alternate; -} - -.blurred { - filter: blur(4px); - user-select: none; - pointer-events: none; -} - -#socialPosts { - transition: .4s; -} - -#chattable { - background-color: black; - border: medium solid rgb(255, 255, 255, 0.2); - width: 100%; -} - -.iframe { - padding: 1rem; - font-size: medium; -} - -.tnkm { - font-family: monospace; -} - /* Animations */ @keyframes ellipsis-loader { @@ -1237,109 +903,23 @@ header div:first-child { to { opacity: 0; } } -@keyframes fire-animation -{ -0% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #feec85, - -20px -20px 40px #ffae34, - 20px -40px 50px #ec760c, - -20px -60px 60px #cd4606, - 0 -80px 70px #973716, - 10px -90px 80px #451b0e;} -100% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #fefcc9, - -20px -20px 40px #feec85, - 22px -42px 60px #ffae34, - -22px -58px 50px #ec760c, - 0 -82px 80px #cd4606, - 10px -90px 80px #973716;} -} - -@-moz-keyframes fire-animation -{ -0% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #feec85, - -20px -20px 40px #ffae34, - 20px -40px 50px #ec760c, - -20px -60px 60px #cd4606, - 0 -80px 70px #973716, - 10px -90px 80px #451b0e;} -100% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #fefcc9, - -20px -20px 40px #feec85, - 22px -42px 60px #ffae34, - -22px -58px 50px #ec760c, - 0 -82px 80px #cd4606, - 10px -90px 80px #973716;} -} - -@-webkit-keyframes fire-animation -{ -0% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #feec85, - -20px -20px 40px #ffae34, - 20px -40px 50px #ec760c, - -20px -60px 60px #cd4606, - 0 -80px 70px #973716, - 10px -90px 80px #451b0e;} -100% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #fefcc9, - -20px -20px 40px #feec85, - 22px -42px 60px #ffae34, - -22px -58px 50px #ec760c, - 0 -82px 80px #cd4606, - 10px -90px 80px #973716;} -} - -@-o-keyframes fire-animation -{ -0% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #feec85, - -20px -20px 40px #ffae34, - 20px -40px 50px #ec760c, - -20px -60px 60px #cd4606, - 0 -80px 70px #973716, - 10px -90px 80px #451b0e;} -100% {text-shadow: 0 0 20px #fefcc9, - 10px -10px 30px #fefcc9, - -20px -20px 40px #feec85, - 22px -42px 60px #ffae34, - -22px -58px 50px #ec760c, - 0 -82px 80px #cd4606, - 10px -90px 80px #973716;} -} - /* Media queries */ -@media screen and (max-width: 1400px) { - #mainHelper { - max-width: 90vw; - } -} - @media screen and (max-width: 1280px) { body { font-size: 2vh; } - article { - max-width: 100%; - margin: auto; - } - - .headerContent { - padding-top: 1rem; + header { + padding-top: 1.4rem; text-align: center; flex-direction: column; } header ul { margin: auto; - margin-bottom: 1rem; + margin-bottom: 1.4rem; } - main { - max-width: 90vw; - margin-bottom: 0px; - } + main { max-width: 90vw; } main h1 { font-size: 3vh; } @@ -1357,18 +937,6 @@ header div:first-child { max-width: 90vw; } - #mainHelper > aside { - max-width: unset; - } - - #socialAside img { - max-width: 50%; - } - - #socialAside h1 { - text-align: end; - } - #homeSquares { flex-direction: row; align-content: center; diff --git a/static/prism.css b/static/prism.css deleted file mode 100644 index 07a0c79..0000000 --- a/static/prism.css +++ /dev/null @@ -1,140 +0,0 @@ -/** - * Coy without shadows - * Based on Tim Shedor's Coy theme for prism.js - * Author: RunDevelopment - */ - -code[class*="language-"], -pre[class*="language-"] { - color: white; - background: none; - font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; - font-size: 1em; - text-align: left; - white-space: pre; - overflow-x: auto; - word-spacing: normal; - word-break: normal; - word-wrap: normal; - line-height: 1.5; - - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - - -webkit-hyphens: none; - -moz-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} - -/* Code blocks */ -pre[class*="language-"] { - position: relative; - border-left: 10px solid rgba(255, 255, 255, 0.2); - background-color: rgba(0, 0, 0, 0.6); - background-image: linear-gradient(transparent 50%, rgba(69, 142, 209, 0.04) 50%); - background-size: 3em 3em; - background-origin: content-box; - background-attachment: local; - margin: .5em 0; - padding: 0 1em; -} - -pre[class*="language-"] > code { - display: block; -} - -/* Inline code */ -:not(pre) > code[class*="language-"] { - position: relative; - padding: .2em; - border-radius: 0.3em; - color: #c92c2c; - border: 1px solid rgba(0, 0, 0, 0.1); - display: inline; - white-space: normal; - background-color: #fdfdfd; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -.token.comment, -.token.block-comment, -.token.prolog, -.token.doctype, -.token.cdata { - color: #7D8B99; -} - -.token.punctuation { - color: #5F6364; -} - -.token.property, -.token.tag, -.token.boolean, -.token.number, -.token.function-name, -.token.constant, -.token.symbol, -.token.deleted { - color: #c92c2c; -} - -.token.selector, -.token.attr-name, -.token.string, -.token.char, -.token.function, -.token.builtin, -.token.inserted { - color: #2f9c0a; -} - -.token.operator, -.token.entity, -.token.url, -.token.variable { - color: red; - background: rgba(255, 255, 255, 0.1); -} - -.token.atrule, -.token.attr-value, -.token.keyword, -.token.class-name { - color: #1990b8; -} - -.token.regex, -.token.important { - color: #e90; -} - -.language-css .token.string, -.style .token.string { - color: #a67f59; - background: rgba(255, 255, 255, 0.5); -} - -.token.important { - font-weight: normal; -} - -.token.bold { - font-weight: bold; -} - -.token.italic { - font-style: italic; -} - -.token.entity { - cursor: help; -} - -.token.namespace { - opacity: .7; -} \ No newline at end of file diff --git a/static/scripts/88x31.js b/static/scripts/88x31.js index 9ba53b1..32e37d1 100644 --- a/static/scripts/88x31.js +++ b/static/scripts/88x31.js @@ -1,4 +1,4 @@ -const images = document.querySelectorAll(".i88x31i"); +const images = document.querySelectorAll(".i88x31"); images.forEach(image => { image.addEventListener("click", () => { diff --git a/static/scripts/click.js b/static/scripts/click.js deleted file mode 100644 index 2fc6cc1..0000000 --- a/static/scripts/click.js +++ /dev/null @@ -1,26 +0,0 @@ -/* -This script plays a sound when user clicks on the page. -*/ - -const click = new Audio(`${rootPrefix}static/audio/click.ogg`); -const hover = new Audio(`${rootPrefix}static/audio/hover.ogg`); -click.preload = "auto"; -hover.preload = "auto"; -click.volume = 0.5; -hover.volume = 0.5; - - -document.body.addEventListener("click", () => { - if (localStorage.getItem("disablesfx") == 'true') return; - - click.currentTime = 0; - click.play().catch(() => {}); -}); - -document.querySelectorAll('a').forEach(link => { - link.addEventListener("mouseenter", () => { - if (localStorage.getItem("disablesfx") == 'true') return; - hover.currentTime = 0; - hover.play().catch(() => {}); - }) -}) diff --git a/static/scripts/home.js b/static/scripts/home.js index 9afa929..f570539 100644 --- a/static/scripts/home.js +++ b/static/scripts/home.js @@ -48,12 +48,4 @@ function updateSquare() { div = getSquareDivByID(square.id); selectedSquareDiv = div.id; div.classList.toggle("selected"); -} - -const homeWebrings = document.getElementById("homeWebrings"); -const homeWebringsShowMore = document.getElementById("homeWebringsShowMore"); - -homeWebringsShowMore.addEventListener("click", () => { - homeWebrings.classList.toggle("less"); - homeWebringsShowMore.textContent = homeWebrings.classList.contains("less") ? headeri18n.showMore : headeri18n.showLess; -}); \ No newline at end of file +} \ No newline at end of file diff --git a/static/scripts/music.js b/static/scripts/music.js index 6fb787e..da8e108 100644 --- a/static/scripts/music.js +++ b/static/scripts/music.js @@ -4,18 +4,18 @@ const body = document.querySelector("body"); const musicdiv = document.getElementById("music"); musicdiv.innerHTML = ` -${headeri18n.gearsAlt} -${headeri18n.soundOnAlt} - + + + ` const linksHelper = document.getElementById("linksHelper"); linksHelper.insertBefore(document.createElement("hs"), document.getElementById("headerLinks")); const songs = [ - { file: "Velkommen.mp3", name: 'Velkommen', artwork: "velkommen.jpg", alt: headeri18n.velkommenArtAlt }, - { file: "PG2.mp3", name: 'Frugal APE', artwork: "pg.jpg" , alt: headeri18n.pgArtAlt }, - { file: "dreamscape.mp3", name: 'Dreamscape', artwork: "winds.png" , alt: headeri18n.windsArtAlt }, - { file: "skychat.mp3", name: 'Skychat', artwork: "winds.png" , alt: headeri18n.windsArtAlt } + { file: "Velkommen.mp3", name: 'Velkommen', artwork: "velkommen.jpg" }, + { file: "PG2.mp3", name: 'Frugal APE', artwork: "pg.jpg" }, + { file: "dreamscape.mp3", name: 'Dreamscape', artwork: "winds.png" }, + { file: "skychat.mp3", name: 'Skychat', artwork: "winds.png" } ]; // Options page @@ -43,15 +43,11 @@ optionsAside.classList.add("metromenu");

    Volume

    - +

    ${headeri18n.hideBackground}

    - -
    -
    -

    ${headeri18n.disableSoundEffects}

    - +
    ` @@ -80,12 +76,6 @@ function toggleBG() { localStorage.setItem("bgHidden", bg.classList.contains("invisible")) } -const disableSFX = document.querySelector("input#soundEffects"); -if (localStorage.getItem("disablesfx") === "true") disableSFX.checked = true; -disableSFX.addEventListener("click", () => { - localStorage.setItem("disablesfx", disableSFX.checked) -}) - const songsDrawer = document.querySelector("#songDrawer"); const drawerSongs = []; const playlist = document.querySelector("#playlist"); @@ -99,7 +89,6 @@ songs.forEach(song => { songElement.classList.add("drawerSong"); songElement.dataset.song = song.file; const songImage = document.createElement("img"); - songImage.alt = song.alt; songImage.src = `${rootPrefix}static/images/songs/${song.artwork}`; songElement.appendChild(songImage); songElement.addEventListener('click', () => { @@ -178,7 +167,6 @@ function play() { });; localStorage.setItem("audioPlaying", "true") toggleIMG.src = `${rootPrefix}static/images/sound-on.png` - toggleIMG.alt = headeri18n.soundOnAlt; console.log(`[Music Player] playing ${audioSelect.value}`) } @@ -186,7 +174,6 @@ function stop() { audio.pause(); localStorage.setItem("audioPlaying", "false") toggleIMG.src = `${rootPrefix}static/images/sound-off.png` - toggleIMG.alt = headeri18n.soundOffAlt; } function setVolume(volume) { diff --git a/static/scripts/notification.js b/static/scripts/notification.js index e91ccc4..a05b793 100644 --- a/static/scripts/notification.js +++ b/static/scripts/notification.js @@ -3,7 +3,7 @@ import { registerElementHint } from "./tips.js"; const notificationBox = document.createElement('div'); notificationBox.classList.add('notificationBox'); -export async function showNotification(title, subtitle, time = 5000, hint) { +export async function showNotification(title, subtitle, time, hint) { if (!hint) { hint = headeri18n.notificationDefaultHint; } diff --git a/static/scripts/social.js b/static/scripts/social.js deleted file mode 100644 index 165564b..0000000 --- a/static/scripts/social.js +++ /dev/null @@ -1,13 +0,0 @@ -const socialPosts = document.querySelector('#socialPosts'); -const socialAlert = document.querySelector('#socialAlert'); - -socialPosts.classList.add('blurred'); - -const continueButton = document.createElement('button'); -continueButton.innerText = clickHereToContinueLocalized; -continueButton.addEventListener('click', () => { - socialPosts.classList.remove('blurred'); - socialAlert.remove(); -}) - -socialAlert.appendChild(continueButton); \ No newline at end of file diff --git a/static/scripts/tips.js b/static/scripts/tips.js index cad5831..7e72b43 100644 --- a/static/scripts/tips.js +++ b/static/scripts/tips.js @@ -1,19 +1,16 @@ const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); const body = document.querySelector('body'); +const elements = document.querySelectorAll('[data-tip]'); const hint = document.querySelector("#headerSubtitle"); -const hintPanelDefaultText = hint ? hint.innerHTML : null; +const hintPanelDefaultText = hint.innerHTML; let fixedHint; let currentObserver; -if (hint) { - const elements = document.querySelectorAll('[data-tip]'); - elements.forEach(el => { - registerElementHint(el); - }); -} +elements.forEach(el => { + registerElementHint(el); +}) function cleanup() { - if (!hint) return; hint.innerHTML = hintPanelDefaultText; hint.classList.remove('fixed'); if (fixedHint) { diff --git a/static/scripts/tumblr-adapt.js b/static/scripts/tumblr-adapt.js deleted file mode 100644 index c3ae48e..0000000 --- a/static/scripts/tumblr-adapt.js +++ /dev/null @@ -1,34 +0,0 @@ -/* - By tenkuma ^^ - For those thumblrs that change the blog HTML for an iframe poiting to your personal website! -*/ - -const isTumblr = new URLSearchParams(location.search).get("tumblr") == "true"; // add ?tumblr=true to the tumblr iframe src attribute - -function adaptToTumblrLayout() { - const header = document.querySelector('header'); // change to anything that would return your header - header.classList.add("tumblr"); // your CSS must handle the rest - - // will calc the size of the header and save as a CSS variable called --header-height - const setHeaderOffset = () => { - const height = header.offsetHeight + "px"; - document.documentElement.style.setProperty('--header-height', height); - }; - - // do this once and when the page resizes - setHeaderOffset(); - window.addEventListener('resize', setHeaderOffset); - - // sanitizing links so they don't open in your tumblr iframe - // also making sure all links carry the tumblr property! - document.querySelectorAll("a").forEach(link => { - if (new URL(link.href).host !== location.host) { - link.target = "_blank"; - } - const u = new URL(link.href); - u.searchParams.set("tumblr", "true"); - link.href = u.toString(); - }); -} - -if (isTumblr) adaptToTumblrLayout(); diff --git a/static/site.webmanifest b/static/site.webmanifest new file mode 100644 index 0000000..ef11935 --- /dev/null +++ b/static/site.webmanifest @@ -0,0 +1,20 @@ + +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/pages/tenkuma/web/static/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/pages/tenkuma/web/static/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} \ No newline at end of file