From 167cfd3793f49d300c99b948b2302304aede3e9f Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 6 Jul 2026 16:17:58 -0400 Subject: Fixed programming; add new contact; revised guidelines, privacy pol --- bun.lockb | Bin 296778 -> 303965 bytes package.json | 37 +++++++++++----------- src/data/contacts.json | 40 ++++++++++++++++-------- src/layouts/Default.astro | 3 +- src/pages/contacts.astro | 3 +- src/pages/downloads/osft-software-archive.astro | 26 +++++++++------ src/pages/guidelines.md | 39 ++++++++++++----------- src/pages/index.astro | 4 +-- src/pages/privacy.md | 27 ++++++++++++---- src/pages/projects/programming.astro | 4 +-- 10 files changed, 110 insertions(+), 73 deletions(-) diff --git a/bun.lockb b/bun.lockb index ab7abe2..474ba7f 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 6cbc633..12e3ad2 100644 --- a/package.json +++ b/package.json @@ -11,26 +11,27 @@ }, "dependencies": { "@astrojs/react": "4.4.2", - "@astrojs/rss": "4.0.14", - "@astrojs/svelte": "7.2.2", - "@astrojs/vercel": "9.0.2", - "@iconify-json/fa6-brands": "^1.2.5", - "@iconify-json/fa6-solid": "^1.2.3", - "@react-three/drei": "^10.7.6", - "@react-three/fiber": "^9.3.0", - "@types/react": "^19.1.13", - "@types/react-dom": "^19.1.9", + "@astrojs/rss": "4.0.15", + "@astrojs/svelte": "7.2.5", + "@astrojs/vercel": "9.0.4", + "@iconify-json/fa6-brands": "^1.2.6", + "@iconify-json/fa6-solid": "^1.2.4", + "@iconify-json/simple-icons": "^1.2.71", + "@react-three/drei": "^10.7.7", + "@react-three/fiber": "^9.5.0", + "@types/react": "^19.2.14", + "@types/react-dom": "^19.2.3", "@types/three": "^0.180.0", - "astro": "5.16.4", + "astro": "5.18.0", "astro-icon": "^1.1.5", - "dompurify": "^3.2.5", - "markdown-it": "^14.1.0", - "marked": "^15.0.11", - "react": "^19.2.1", - "react-dom": "^19.2.1", - "sanitize-html": "^2.16.0", - "svelte": "^5.28.2", + "dompurify": "^3.3.1", + "markdown-it": "^14.1.1", + "marked": "^15.0.12", + "react": "^19.2.4", + "react-dom": "^19.2.4", + "sanitize-html": "^2.17.1", + "svelte": "^5.53.5", "three": "^0.180.0", - "typescript": "^5.8.3" + "typescript": "^5.9.3" } } diff --git a/src/data/contacts.json b/src/data/contacts.json index 6ff24fd..ccc6415 100644 --- a/src/data/contacts.json +++ b/src/data/contacts.json @@ -1,65 +1,79 @@ [ { "platform": "LinkedIn", - "icon": "linkedin", + "icon": "fa6-brands:linkedin", "username": "AndrewLeeCAN", "url": "https://linkedin.alee14.me", "mouseover": "LinkedIn" }, { "platform": "GitHub", - "icon": "github", + "icon": "fa6-brands:github", "username": "Alee14", "url": "https://github.alee14.me", "mouseover": "GitHub" }, { "platform": "YouTube", - "icon": "youtube", + "icon": "fa6-brands:youtube", "username": "AndrewLeeCAN", "url": "https://youtube.alee14.me", "mouseover": "YouTube" }, { "platform": "Bluesky", - "icon": "bluesky", + "icon": "fa6-brands:bluesky", "username": "alee14.me", "url": "https://bsky.app/profile/alee14.me", "mouseover": "Bluesky" }, { "platform": "Mastodon", - "icon": "mastodon", + "icon": "fa6-brands:mastodon", "username": "alee@mstdn.ca", "url": "https://mstdn.ca/@alee", "mouseover": "Mastodon" }, { "platform": "Instagram", - "icon": "instagram", + "icon": "fa6-brands:instagram", "username": "alee14498", "url": "https://instagram.alee14.me", "mouseover": "Instagram" }, { "platform": "Reddit", - "icon": "reddit", + "icon": "fa6-brands:reddit", "username": "alee1449", "url": "https://reddit.alee14.me", "mouseover": "Reddit" }, + { + "platform": "Steam", + "icon": "fa6-brands:steam", + "username": "Alee14498", + "url": "https://steamcommunity.com/id/Alee14498", + "mouseover": "Steam" + }, { "platform": "Discord", - "icon": "discord", + "icon": "fa6-brands:discord", "username": "Andrew Lee Projects", "url": "https://discord.alee14.me", "mouseover": "Discord" }, { - "platform": "Steam", - "icon": "steam", - "username": "Alee14498", - "url": "https://steamcommunity.com/id/Alee14498", - "mouseover": "Steam" + "platform": "Matrix", + "icon": "simple-icons:matrix", + "username": "Alee", + "url": "https://matrix.to/#/@alee:alee14.me", + "mouseover": "Matrix" + }, + { + "platform": "Matrix Space", + "icon": "simple-icons:matrix", + "username": "Andrew Lee", + "url": "https://matrix.to/#/#alee:alee14.me", + "mouseover": "Matrix Space" } ] diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index 368f089..0d8633e 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -50,7 +50,8 @@ const date = new Date(); diff --git a/src/pages/contacts.astro b/src/pages/contacts.astro index aef523d..60eeff2 100644 --- a/src/pages/contacts.astro +++ b/src/pages/contacts.astro @@ -6,10 +6,9 @@ import contacts from "../data/contacts.json";
{contacts.map((contact)=> { - let icon = "fa6-brands:" + contact.icon; return (
- + {contact.platform} ({contact.username})
) diff --git a/src/pages/downloads/osft-software-archive.astro b/src/pages/downloads/osft-software-archive.astro index 1090c35..a339136 100644 --- a/src/pages/downloads/osft-software-archive.astro +++ b/src/pages/downloads/osft-software-archive.astro @@ -6,7 +6,11 @@ import '../../styles/cards.css';

Content Warning

-

Some of the software in this pack contains a jumpscare. If you have epilepsy, please be cautious.

+

Some of the software in this pack contains the following:

+
    +
  • Jumpscare
  • +
  • Flashing screen (Epilepsy warning)
  • +

Disable your antivirus as it can detect false positive, feel free to use a VM if you feel unsafe.

@@ -14,6 +18,11 @@ import '../../styles/cards.css';

There was a mention back in the AstralPhaser Chats that the Histacom 1.8.5 (2013) copy in IndieDB is not the original copy from Phil.

I have retrieved the original 2010 copy from Phil himself which has the original compile date of July 5th 2010, and I will be keeping both versions for the time being.

+
+

Encrypted Zips

+

Some files uses an encrypted zip due to them being flagged as malware.

+

Password: osft

+

Minimal Requirements

    @@ -44,7 +53,7 @@ import '../../styles/cards.css';
  • File Wars
  • "funny nana and grampa sounds version 1.1"
  • Guess The Number
  • -
  • Histacom 1.8.5 (2010 Edition) (Epilepsy warning)
  • +
  • Histacom 1.8 (2010 Edition) (Epilepsy warning)
  • Histacom 1.8.5 (2013 Edition) (Epilepsy warning)
  • HTMLive
  • IIR (Interactive Infinite Road)
  • @@ -60,7 +69,9 @@ import '../../styles/cards.css';
  • Pixel Physics 0.3
  • Road Simulator 0.4
  • RPG Map Maker
  • -
  • ShiftOS 0.0.8 (Epilepsy warning)
  • +
  • ShiftOS 0.0.7.1 (Epilepsy warning)
  • +
  • ShiftOS 0.0.8 Beta 1.1 (Epilepsy warning)
  • +
  • ShiftOS 0.0.8 (Community) (Epilepsy warning)
  • Theme Test
  • Thoto 0.3
  • Time Machine 0.4
  • @@ -70,14 +81,9 @@ import '../../styles/cards.css';
  • Zeon OS 0.2
-
-

MD5: f56c1670e2481f8755dba8e4faf97e6d

-

SHA512: 8710d2c1d85f4acffcbf42676e65b28831c899317b064ce016d3cfcc782478ab1e3aa9bc6d30ce277f9fb58943933919f12041992fe79db3354c4717fa33bab7

-

SHA256: 6b04ef59c0e0b4cc1c96cbdebfa3400e27fe855f88cb31da554df8691d9845d2

-
diff --git a/src/pages/guidelines.md b/src/pages/guidelines.md index 5a257a6..fb07add 100644 --- a/src/pages/guidelines.md +++ b/src/pages/guidelines.md @@ -1,38 +1,29 @@ --- title: Guidelines -description: Guidelines for Andrew Lee Projects Communities/Services +description: Guidelines for Andrew Lee Projects layout: ../layouts/PageMarkdown.astro --- # General Guidelines -These are the main guidelines that must be followed in every community/services we own. +These are the main guidelines that must be followed: -- No spamming. Any spam will result in an official warning. +- Respect others. +- Any type of spam is not allowed. - No advertisements/giveaways of any kind, unless asking staff. -- Do not attempt to enforce the rules on other users. Only staff members have the authority to do so. -- Refrain from asking for staff. -- Cursing is allowed within reason, but using racial slurs or using them to harm others will result in severe punishment. -- Accusations are not tolerated. Making accusations without evidence will result in an investigation by the staff and may lead to temporary or permanent removal from our services. -- Do not engage in blackmail, attacks, cyberbullying, or threats against any members. -- Organized raids are not allowed. We have measures in place to deal with these situations. +- Using language that includes slurs is not allowed. - Only one account per person at a time. -- Any content that does not fit here (i.e. viruses, malware, adware, NSFW, illegal content, etc) is strictly forbidden. -- Do not speak negatively about other members, including in private messages. -- If you encounter someone requesting, sending unsolicited, or sharing illegal or NSFW content, or behaving in a way that is disrespectful or harassing, please report the behavior to the staff immediately. - -By being part of here, you must respect all members, regardless of their gender, race, sexual orientation, beliefs, or opinions. Disrespect will not be tolerated and will result in staff action. - -Use common sense and good judgement while participating in our community/services. +- Posting illegal/offensive material is strictly forbidden. +- Use common sense and good judgement while participating. Staff members reserve the right to make impromptu decisions as necessary to maintain a peaceful environment. -Action will be taken against any users consistently breaking these guidelines. If there is content that is extremely illegal or if someone is threatening or harming another person in real life, it is our responsibility to report it to the appropriate authorities. +Action will be taken against any users consistently breaking these guidelines, and punishment toward the user will be adjusted based on the situation. # Andrew Lee Projects Policies ## COPPA Policy -In order to comply with the Children's Online Privacy Protection Act (COPPA), you must be at least 13 years of age to use these services. You will be kicked if found to be under 13 years of age. A ban will be issued if you do not comply with the staff. +In order to comply with the Children's Online Privacy Protection Act (COPPA), you must be at least 13 years of age to use our services. You will be kicked if found to be under 13 years of age. ## Delta Policy @@ -47,6 +38,16 @@ Violation of these rules may result in a temporary or permanent ban. If you are \* These policies may not apply to servers (e.g: Anarchy) that allow these actions. +## Wiki Policy +- Any vandalism (defacing, blanking, inserting misinformation into an article) will result an immediate revert, permanent block if it is persistent. +- Any irrelevant information that is not related to this wiki will be removed. +- Any illegal and offensive content will immediately be removed and suppressed. Author of the change will get blocked permanently. +### Using Generative AI +Using generative AI has its benefits, but also it can have drawbacks. +- It is not fine to use it to generate or rewrite an entire article. +- It is fine to use it for translating if checked properly. +- It is fine to use it to correct your grammar/spelling mistake if checked properly. + # Discord Policies If you are part of our discord server(s), we have set policies that you must follow. @@ -81,4 +82,4 @@ Threads/Posts is a new feature on Discord that allows users to create subchannel We recommend you to follow Discord's [Terms of Service](https://discord.com/terms) and [Community Guidelines](https://discord.com/guidelines) -*Last updated: December 16th, 2022* +*Last updated: July 6th, 2026* diff --git a/src/pages/index.astro b/src/pages/index.astro index daabea8..f1c2da9 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -68,7 +68,7 @@ const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate

AleeWorkstation

    -
  • OS: Arch Linux (KDE)
  • +
  • OS: Arch Linux
  • CPU: AMD Ryzen 3 2200G
  • RAM: 16 GB DDR4
  • Storage: 2 TB NVME SSD, 4 TB HDD, 2 TB HDD
  • @@ -83,7 +83,7 @@ const allBlogPosts = (await getCollection('blog')).sort((a, b) => b.data.pubDate

ServaRica (Server)

    -
  • OS: Debian 12 Bookworm
  • +
  • OS: Debian 13 Trixie
  • CPU: AMD EPYC 7302
  • RAM: 4 GB
  • Storage: 206 GB
  • diff --git a/src/pages/privacy.md b/src/pages/privacy.md index e81296a..b9cfb7f 100644 --- a/src/pages/privacy.md +++ b/src/pages/privacy.md @@ -4,24 +4,28 @@ description: This policy covers any services provided under alee14.me, including layout: '../layouts/PageMarkdown.astro' --- # Privacy Policy -Last updated: April 2, 2024 (EDT) +Effective: (date)
    +Last revised: July 4, 2026 (EDT) ## Introduction Privacy is a human right. If you have any concerns or complaints about how we handle privacy, feel free to reach out at privacy@alee14.me. +## Definitions +Logging: An event that collects messages, and user ID and sending them to a channel. + ## Services We Provide -This policy covers any services provided under alee14.me, including websites, applications, and tools we develop. Below are specific policies for different services. +This policy covers any services provided under websites, applications, and tools we develop. Below are specific policies for different services. ### AleeBot (Discord Bot) **Information Collected:** -- User IDs (for personal settings & command usage) +- Message IDs (logging) +- User IDs (for personal settings, logging & command usage) - Server IDs (to store bot settings & command usage) **How We Use It:** - To provide bot features - To store preferences per server - To store preferences per user -- To improve bot performance **Opting Out:** - Removing AleeBot from a server will automatically delete all settings related to that server. @@ -29,22 +33,33 @@ This policy covers any services provided under alee14.me, including websites, ap ### Websites & Other Applications **Information Collected:** -- Basic analytics (e.g., visitor count, page interactions) +- Basic analytics using Plausible (e.g., visitor count, page interactions) - User-submitted content (if applicable) **How We Use It:** - To analyze website performance - To ensure proper functionality +## Wikis +Our wikis uses the MediaWiki software, you do not need to sign up when browsing or editing an article (unless it requires to do so). + +**Information Collected:** +- User-submitted content (username, password, email) +- IP address (when logged out) + ## General Data Practices We don’t collect personal information like your real name, address, or payment details. Data is only used to operate and improve services. ## Data Retention We only keep data as long as it’s needed for the service. If you want your data removed, contact us. +## Children's Privacy +Everyone who uses this service are able to use it including children without providing any personal information about themselves. We highly discourage any children under the age of 13 to not use our services. + +If you are a parent who is concerned about your children's data being provided to us without your consent, please contact us. + ## Future Changes We may update this policy as we add new services. Any significant changes will be posted here. ## Contact For any questions, reach out at privacy@alee14.me. - diff --git a/src/pages/projects/programming.astro b/src/pages/projects/programming.astro index 2c5d073..6a6c9a1 100644 --- a/src/pages/projects/programming.astro +++ b/src/pages/projects/programming.astro @@ -28,8 +28,8 @@ import GitHubProjects from "../../components/GitHubProjects.svelte";

    Andrew Lee GitHub Repositories

    -

    AleeCorp/Alee Productions GitHub Repositories

    - +

    Archive GitHub Repositories

    +