From 8a35b5c1dbda0726b1bfbe090f2bef2aaa0d4da1 Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 5 Apr 2025 13:27:09 +0000 Subject: [PATCH 01/15] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 323088d..3d18b8a 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ ![SQL](https://img.shields.io/badge/SQL-336791?style=for-the-badge&logo=postgresql&logoColor=white) ![HTML](https://img.shields.io/badge/HTML-E34F26?style=for-the-badge&logo=html5&logoColor=white) ![CSS](https://img.shields.io/badge/CSS-1572B6?style=for-the-badge&logo=css3&logoColor=white) +![Bash](https://img.shields.io/badge/Bash-121011?style=for-the-badge&logo=gnubash&logoColor=white) ### Systems & General Programming: ![C](https://img.shields.io/badge/C-00599C?style=for-the-badge&logo=c&logoColor=white) @@ -34,6 +35,8 @@ ### Databases: ![PostgreSQL](https://img.shields.io/badge/PostgreSQL-336791?style=for-the-badge&logo=postgresql&logoColor=white) ![Redis](https://img.shields.io/badge/Redis-DC382D?style=for-the-badge&logo=redis&logoColor=white) + +### S3 ![MinIO](https://img.shields.io/badge/MinIO-990000?style=for-the-badge&logo=minio&logoColor=white) ### Favorites: @@ -44,4 +47,7 @@ ![Last 30days](https://wakapi.creations.works/api/badge/creations/creations/interval:30_days?label=last%2030d) ![All Time](https://img.shields.io/endpoint?url=https://wakapi.creations.works/api/compat/shields/v1/creations/interval:all_time&label=All%20time&color=blue) -![stats](https://github-readme-stats.vercel.app/api/wakatime?username=creations&api_domain=wakapi.creations.works&bg_color=1A202C&title_color=2F855A&icon_color=2F855A&text_color=ffffff&custom_title=Wakapi+Stats+%28All+Time%29&layout=compact) \ No newline at end of file +![stats](https://github-readme-stats.vercel.app/api/wakatime?username=creations&api_domain=wakapi.creations.works&bg_color=1A202C&title_color=2F855A&icon_color=2F855A&text_color=ffffff&custom_title=Wakapi+Stats+%28All+Time%29&layout=compact) + +--- +![](https://media1.tenor.com/m/5ibxr0zb3HcAAAAd/i-use-arch-btw-use.gif) \ No newline at end of file From 204235a5bd328fa20a34b9b3fa99b84ccc86bf76 Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 26 Apr 2025 03:13:46 +0200 Subject: [PATCH 02/15] Add css.css --- css.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 css.css diff --git a/css.css b/css.css new file mode 100644 index 0000000..1ef12c6 --- /dev/null +++ b/css.css @@ -0,0 +1,29 @@ +:root { + --background: #1b1b2f; + --readme-bg: #162447; + --card-bg: #1f4068; + --card-hover-bg: #283e56; + --border-color: #394867; + + --text-color: #e0e0e0; + --text-subtle: #c4c4c4; + --text-secondary: #a0a0a0; + --text-muted: #888888; + --link-color: #00ffff; + + --button-bg: #ff6f61; + --button-hover-bg: #ff4b3e; + --button-disabled-bg: #393e46; + + --progress-bg: #ffb400; + --progress-fill: #4ecca3; + + --status-online: #00ff00; + --status-idle: #ffd700; + --status-dnd: #ff4500; + --status-offline: #708090; + --status-streaming: #8a2be2; + + --blockquote-color: #dddddd; + --code-bg: #20232a; +} From 69c8ca7dbd297ea0947fce7fa9462992152f08e5 Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 26 Apr 2025 05:34:53 +0200 Subject: [PATCH 03/15] Update css.css --- css.css | 33 ++++----------------------------- 1 file changed, 4 insertions(+), 29 deletions(-) diff --git a/css.css b/css.css index 1ef12c6..eb09238 100644 --- a/css.css +++ b/css.css @@ -1,29 +1,4 @@ -:root { - --background: #1b1b2f; - --readme-bg: #162447; - --card-bg: #1f4068; - --card-hover-bg: #283e56; - --border-color: #394867; - - --text-color: #e0e0e0; - --text-subtle: #c4c4c4; - --text-secondary: #a0a0a0; - --text-muted: #888888; - --link-color: #00ffff; - - --button-bg: #ff6f61; - --button-hover-bg: #ff4b3e; - --button-disabled-bg: #393e46; - - --progress-bg: #ffb400; - --progress-fill: #4ecca3; - - --status-online: #00ff00; - --status-idle: #ffd700; - --status-dnd: #ff4500; - --status-offline: #708090; - --status-streaming: #8a2be2; - - --blockquote-color: #dddddd; - --code-bg: #20232a; -} +.badges { + background-color: transparent; + box-shadow: none; +} \ No newline at end of file From 8220a3a83a9e6d232d58b698809bc46ac873460d Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 26 Apr 2025 05:35:32 +0200 Subject: [PATCH 04/15] Update css.css --- css.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css.css b/css.css index eb09238..ee5a809 100644 --- a/css.css +++ b/css.css @@ -1,4 +1,5 @@ .badges { background-color: transparent; box-shadow: none; + border-color: none; } \ No newline at end of file From 34f7f2bc978bc3559edb99bf8d202b9a54b8f7d8 Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 26 Apr 2025 05:35:56 +0200 Subject: [PATCH 05/15] Update css.css --- css.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css.css b/css.css index ee5a809..382a02b 100644 --- a/css.css +++ b/css.css @@ -1,5 +1,5 @@ .badges { background-color: transparent; box-shadow: none; - border-color: none; + border-color: transparent; } \ No newline at end of file From f63bbafa62e8c0a30e62bc3b654f7c5270c43efd Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 26 Apr 2025 05:36:33 +0200 Subject: [PATCH 06/15] Update css.css --- css.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css.css b/css.css index 382a02b..67b5385 100644 --- a/css.css +++ b/css.css @@ -2,4 +2,5 @@ background-color: transparent; box-shadow: none; border-color: transparent; + max-width: 100%; } \ No newline at end of file From d2151c181274f37487d972dad94a36714e37bb7e Mon Sep 17 00:00:00 2001 From: creations Date: Sat, 26 Apr 2025 16:18:01 +0200 Subject: [PATCH 07/15] Upload files to "/" --- forgejo.png | Bin 0 -> 6747 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 forgejo.png diff --git a/forgejo.png b/forgejo.png new file mode 100644 index 0000000000000000000000000000000000000000..1b2d9b4023427395448912e39a9883c279dc1618 GIT binary patch literal 6747 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 yox+U;9_d=qPhd|d8=p;?J#1|3xTc!uOU Date: Thu, 1 May 2025 17:36:09 +0200 Subject: [PATCH 08/15] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d18b8a..33eab26 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ - **Discord**: creations - **Discord Server**: [Atums World](https://discord.gg/DxFhhbr2pm) -- **Github** : [Creationsss](https://github.com/Creationsss) +- **Forgejo**: [creations](https://git.creations.works/creations) +- **Github** : [Creationsss](https://github.com/Creationsss) I only use github if forced --- From c0238fb87d2ef0bad7b2d81724a84ab378ad6534 Mon Sep 17 00:00:00 2001 From: creations Date: Thu, 1 May 2025 17:44:11 +0200 Subject: [PATCH 09/15] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 33eab26..66c5567 100644 --- a/README.md +++ b/README.md @@ -51,4 +51,6 @@ ![stats](https://github-readme-stats.vercel.app/api/wakatime?username=creations&api_domain=wakapi.creations.works&bg_color=1A202C&title_color=2F855A&icon_color=2F855A&text_color=ffffff&custom_title=Wakapi+Stats+%28All+Time%29&layout=compact) --- -![](https://media1.tenor.com/m/5ibxr0zb3HcAAAAd/i-use-arch-btw-use.gif) \ No newline at end of file + + AbuseIPDB Contributor Badge + \ No newline at end of file From 6faa616437127270a7e082da92213f69b768b8d6 Mon Sep 17 00:00:00 2001 From: creations Date: Sun, 4 May 2025 17:30:43 +0200 Subject: [PATCH 10/15] Update css.css --- css.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css.css b/css.css index 67b5385..09a0e6b 100644 --- a/css.css +++ b/css.css @@ -3,4 +3,8 @@ box-shadow: none; border-color: transparent; max-width: 100%; +} + +.activity-block-header { + display: none !important; } \ No newline at end of file From 148427441fad2cf9caaf46c148314ee9216c3f78 Mon Sep 17 00:00:00 2001 From: creations Date: Sun, 4 May 2025 17:36:14 +0200 Subject: [PATCH 11/15] Update css.css --- css.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css.css b/css.css index 09a0e6b..2d60f15 100644 --- a/css.css +++ b/css.css @@ -3,6 +3,7 @@ box-shadow: none; border-color: transparent; max-width: 100%; + margin-bottom: 2rem; } .activity-block-header { From 4f464e15f70c0c89ef3696c11787d60bb0fc1158 Mon Sep 17 00:00:00 2001 From: creations Date: Thu, 8 May 2025 01:56:12 +0200 Subject: [PATCH 12/15] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 66c5567..25a037d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ - **Discord**: creations - **Discord Server**: [Atums World](https://discord.gg/DxFhhbr2pm) - **Forgejo**: [creations](https://git.creations.works/creations) -- **Github** : [Creationsss](https://github.com/Creationsss) I only use github if forced +- **Github**: [Creationsss](https://github.com/Creationsss) I only use github if forced +- **BlueSky**:[creations.works](https://bsky.app/profile/creations.works) --- From 9b51a3f003614e3238e29a3abe3d447f43bbeb56 Mon Sep 17 00:00:00 2001 From: creations Date: Thu, 8 May 2025 01:56:25 +0200 Subject: [PATCH 13/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 25a037d..0870d16 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ - **Discord Server**: [Atums World](https://discord.gg/DxFhhbr2pm) - **Forgejo**: [creations](https://git.creations.works/creations) - **Github**: [Creationsss](https://github.com/Creationsss) I only use github if forced -- **BlueSky**:[creations.works](https://bsky.app/profile/creations.works) +- **BlueSky**: [creations.works](https://bsky.app/profile/creations.works) --- From 0e0bde07a75644e3a9739c722ed5c564f3daaea7 Mon Sep 17 00:00:00 2001 From: creations Date: Sun, 11 May 2025 17:20:07 +0200 Subject: [PATCH 14/15] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0870d16..2a05a77 100644 --- a/README.md +++ b/README.md @@ -46,10 +46,10 @@ ![EJS](https://img.shields.io/badge/EJS-8A2BE2?style=for-the-badge&logo=ejs&logoColor=white) --- -![Last 30days](https://wakapi.creations.works/api/badge/creations/creations/interval:30_days?label=last%2030d) -![All Time](https://img.shields.io/endpoint?url=https://wakapi.creations.works/api/compat/shields/v1/creations/interval:all_time&label=All%20time&color=blue) +![Last 30days](https://wakapi.atums.world/api/badge/creations/creations/interval:30_days?label=last%2030d) +![All Time](https://img.shields.io/endpoint?url=https://wakapi.atums.world/api/compat/shields/v1/creations/interval:all_time&label=All%20time&color=blue) -![stats](https://github-readme-stats.vercel.app/api/wakatime?username=creations&api_domain=wakapi.creations.works&bg_color=1A202C&title_color=2F855A&icon_color=2F855A&text_color=ffffff&custom_title=Wakapi+Stats+%28All+Time%29&layout=compact) +![stats](https://github-readme-stats.vercel.app/api/wakatime?username=creations&api_domain=wakapi.atums.world&bg_color=1A202C&title_color=2F855A&icon_color=2F855A&text_color=ffffff&custom_title=Wakapi+Stats+%28All+Time%29&layout=compact) --- From 6a7dadb4b515ee76f807682c5b633e44f8b40bae Mon Sep 17 00:00:00 2001 From: creations Date: Mon, 26 May 2025 23:10:28 +0200 Subject: [PATCH 15/15] Update README.md --- README.md | 63 +++++++++++++++++++------------------------------------ 1 file changed, 22 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index 2a05a77..feb2e7d 100644 --- a/README.md +++ b/README.md @@ -1,57 +1,38 @@ # Contact Me - **Email**: [creations@creations.works](mailto:creations@creations.works) -- **SSH Public Key**: [creations.keys](https://git.creations.works/creations/.profile/raw/branch/main/public_key) -- **GPG Public Key**: [creations.gpg](https://git.creations.works/creations/.profile/raw/branch/main/public_key.asc) -# Socials - -- **Discord**: creations +- **Discord**: [creations](https://discord.com/users/209830981060788225) - **Discord Server**: [Atums World](https://discord.gg/DxFhhbr2pm) -- **Forgejo**: [creations](https://git.creations.works/creations) -- **Github**: [Creationsss](https://github.com/Creationsss) I only use github if forced - **BlueSky**: [creations.works](https://bsky.app/profile/creations.works) --- -## Languages +# Developer Identity +- **SSH Public Key**: [creations.keys](https://git.creations.works/creations/.profile/raw/branch/main/public_key) +- **GPG Public Key**: [creations.gpg](https://git.creations.works/creations/.profile/raw/branch/main/public_key.asc) +- **Forgejo**: [creations](https://git.creations.works/creations) -### Scripting & Web Development: -![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white) -![JavaScript](https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black) -![Lua](https://img.shields.io/badge/Lua-2C2D72?style=for-the-badge&logo=lua&logoColor=white) -![SQL](https://img.shields.io/badge/SQL-336791?style=for-the-badge&logo=postgresql&logoColor=white) -![HTML](https://img.shields.io/badge/HTML-E34F26?style=for-the-badge&logo=html5&logoColor=white) -![CSS](https://img.shields.io/badge/CSS-1572B6?style=for-the-badge&logo=css3&logoColor=white) -![Bash](https://img.shields.io/badge/Bash-121011?style=for-the-badge&logo=gnubash&logoColor=white) - -### Systems & General Programming: -![C](https://img.shields.io/badge/C-00599C?style=for-the-badge&logo=c&logoColor=white) -![C++](https://img.shields.io/badge/C++-00599C?style=for-the-badge&logo=c%2B%2B&logoColor=white) -![C#](https://img.shields.io/badge/C%23-239120?style=for-the-badge&logo=c-sharp&logoColor=white) -![Python](https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white) -![Java](https://img.shields.io/badge/Java-ED8B00?style=for-the-badge&logo=openjdk&logoColor=white) -![Rust](https://img.shields.io/badge/Rust-000000?style=for-the-badge&logo=rust&logoColor=white) -![Go](https://img.shields.io/badge/Go-00ADD8?style=for-the-badge&logo=go&logoColor=white) - -## Frameworks & Tools - -### Databases: -![PostgreSQL](https://img.shields.io/badge/PostgreSQL-336791?style=for-the-badge&logo=postgresql&logoColor=white) -![Redis](https://img.shields.io/badge/Redis-DC382D?style=for-the-badge&logo=redis&logoColor=white) - -### S3 -![MinIO](https://img.shields.io/badge/MinIO-990000?style=for-the-badge&logo=minio&logoColor=white) - -### Favorites: -![Bun](https://img.shields.io/badge/Bun-000000?style=for-the-badge&logo=bun&logoColor=white) -![EJS](https://img.shields.io/badge/EJS-8A2BE2?style=for-the-badge&logo=ejs&logoColor=white) +**GitHub**: [Creationsss](https://github.com/Creationsss) (only if forced) --- -![Last 30days](https://wakapi.atums.world/api/badge/creations/creations/interval:30_days?label=last%2030d) -![All Time](https://img.shields.io/endpoint?url=https://wakapi.atums.world/api/compat/shields/v1/creations/interval:all_time&label=All%20time&color=blue) + +# Favorite things to use + +[![Bun](https://img.shields.io/badge/Bun-000000?style=for-the-badge&logo=bun&logoColor=white)](https://bun.sh) +[![Biome](https://img.shields.io/badge/Biome-1A202C?style=for-the-badge&labelColor=1A202C&color=4ADE80)](https://biomejs.dev) +[![TypeScript](https://img.shields.io/badge/TypeScript-3178C6?style=for-the-badge&logo=typescript&logoColor=white)](https://www.typescriptlang.org) +[![Dragonfly](https://img.shields.io/badge/Dragonfly-FF3366?style=for-the-badge)](https://www.dragonflydb.io/) +[![Docker](https://img.shields.io/badge/Docker-2496ED?style=for-the-badge&logo=docker&logoColor=white)](https://www.docker.com) +[![Rust](https://img.shields.io/badge/Rust-000000?style=for-the-badge&logo=rust&logoColor=white)](https://www.rust-lang.org) +[![Forgejo](https://img.shields.io/badge/Forgejo-171717?style=for-the-badge&logo=forgejo&logoColor=orange)](https://forgejo.org) + +--- + +![All Time](https://img.shields.io/endpoint?url=https://wakapi.atums.world/api/compat/shields/v1/creations/interval:all_time&label=All%20time&color=blue) ![Last 30days](https://wakapi.atums.world/api/badge/creations/creations/interval:30_days?label=last%2030d) ![stats](https://github-readme-stats.vercel.app/api/wakatime?username=creations&api_domain=wakapi.atums.world&bg_color=1A202C&title_color=2F855A&icon_color=2F855A&text_color=ffffff&custom_title=Wakapi+Stats+%28All+Time%29&layout=compact) --- + AbuseIPDB Contributor Badge - \ No newline at end of file +