Skip to content

Commit c55364f

Browse files
committed
update
1 parent c6ec1c0 commit c55364f

5 files changed

Lines changed: 68 additions & 67 deletions

File tree

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<div align="center">
2424

25-
<h3 align="center">Front-End Technologies</h3>
25+
<h3 align="center">Front-End</h3>
2626

2727
<div class="tech-pyramid" style="display: flex; flex-direction: column; align-items: center; gap: 15px;">
2828

@@ -94,13 +94,25 @@
9494
</a>
9595
</div>
9696

97+
<div class="icon-row" style="display: flex; justify-content: center; gap: 15px; margin-bottom: 15px;">
98+
<a href="https://github.com/qompassai/containers" class="icon-link">
99+
<img src="https://skillicons.dev/icons?i=unreal" alt="Unreal" width="40" height="40" title="Unreal"/>
100+
</a>
101+
<a href="https://github.com/qompassai/mysql" class="icon-link">
102+
<img src="https://skillicons.dev/icons?i=mysql" alt="MySQL" width="40" height="40" title="MySQL"/>
103+
</a>
104+
</div>
105+
97106
<div class="icon-row" style="display: flex; justify-content: center; gap: 15px; margin-bottom: 15px;">
98107
<a href="https://github.com/qompassai/containers" class="icon-link">
99108
<img src="https://skillicons.dev/icons?i=docker" alt="Docker" width="40" height="40" title="Docker"/>
100109
</a>
101110
<a href="https://github.com/qompassai/k8s" class="icon-link">
102111
<img src="https://skillicons.dev/icons?i=kubernetes" alt="Kubernetes" width="40" height="40" title="Kubernetes"/>
103112
</a>
113+
<a href="https://github.com/qompassai/psql" class="icon-link">
114+
<img src="https://skillicons.dev/icons?i=postgres" alt="Postgres" width="40" height="40" title="Postgres"/>
115+
</a>
104116
</div>
105117

106118
<div class="icon-row" style="display: flex; justify-content: center; gap: 15px; margin-bottom: 15px;">
@@ -113,6 +125,9 @@
113125
<a href="https://github.com/qompassai/nginx" class="icon-link">
114126
<img src="https://skillicons.dev/icons?i=nginx" alt="NGINX" width="40" height="40" title="NGINX"/>
115127
</a>
128+
<a href="https://github.com/qompassai/Diver" class="icon-link">
129+
<img src="https://skillicons.dev/icons?i=neovim" alt="Neovim" width="40" height="40" title="Neovim"/>
130+
</a>
116131
</div>
117132

118133
<div class="icon-row" style="display: flex; justify-content: center; gap: 15px; margin-bottom: 15px;">
@@ -128,6 +143,9 @@
128143
<a href="https://github.com/qompassai/qssl" class="icon-link">
129144
<img src="assets/icons/openssl.svg" alt="OpenSSL" width="40" height="40" title="OpenSSL"/>
130145
</a>
146+
<a href="https://github.com/qompassai/mojo" class="icon-link">
147+
<img src="https://cdn.iconduck.com/emojis/37553/fire.svg" alt="Flame" width="40" height="40" title="Mojo"/>
148+
</a>
131149
</div>
132150

133151
<div class="icon-row" style="display: flex; justify-content: center; gap: 15px; margin-bottom: 15px;">
@@ -143,6 +161,9 @@
143161
<a href="https://github.com/qompassai/wayland" class="icon-link">
144162
<img src="assets/icons/wayland.svg" alt="Wayland" width="40" height="40" title="Wayland"/>
145163
</a>
164+
<a href="https://github.com/qompassai/obs" class="icon-link">
165+
<img src="assets/icons/obs-studio.svg" alt="OBS" width="40" height="40" title="OBS"/>
166+
</a>
146167
<a href="https://github.com/qompassai/Hyprland" class="icon-link">
147168
<img src="assets/icons/hyprland.svg" alt="Hyprland" width="40" height="40" title="Hyprland"/>
148169
</a>

build.zig

Lines changed: 3 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,7 @@
1+
//phaedrusflow/build.zig
12
const std = @import("std");
23
const zine = @import("zine");
34

4-
pub fn build(b: *std.Build) !void {
5-
// Define configuration values directly (no options object needed)
6-
const host_url = "https://phaedrusflow.github.io";
7-
const layouts_dir = "layouts";
8-
const content_dir = "content";
9-
const output_dir = "public";
10-
const assets_dir = "assets";
11-
const site_title = "The Deep Pursuit of Quality AI";
12-
13-
// Configure Zine website
14-
try zine.website(b, .{
15-
// Required core configuration
16-
.host_url = host_url,
17-
.layouts_dir_path = layouts_dir,
18-
.content_dir_path = content_dir,
19-
.output_dir_path = output_dir,
20-
.assets_dir_path = assets_dir,
21-
22-
// Metadata
23-
.site_title = site_title,
24-
.site_description = "Quality AI Adoption Solutions as a Service",
25-
.author = "Matthew A. Porter",
26-
.language = "en-US",
27-
.generate_rss = true,
28-
.rss_title = "Quantum AI Research and Developments",
29-
30-
// Features
31-
.features = .{
32-
.math = true,
33-
.mermaid = true,
34-
.code_highlighting = true,
35-
},
36-
37-
// Social links
38-
.social_links = .{
39-
.youtube = "https://www.youtube.com/@QompassAI",
40-
.twitter = "https://twitter.com/PhaedrusFlow",
41-
.github = "https://github.com/phaedrusflow",
42-
},
43-
44-
// Optional configurations
45-
.youtube_integration = .{
46-
.channel = "@QompassAI",
47-
.show_latest = 3,
48-
},
49-
.tooltips = .{
50-
.enable = true,
51-
.tech_version_info = true,
52-
},
53-
.theme = .{
54-
.primary_color = "#76B900",
55-
.secondary_color = "#0668E1",
56-
.dark_mode = true,
57-
},
58-
});
5+
pub fn build(b: *std.Build) void {
6+
_ = zine.website(b, .{});
597
}

build.zig.zon

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
//phaedrusflow/build.zig.zon
12
.{
23
.name = .phaedrusflow,
34
.version = "0.1.0",
45
.fingerprint = 0x2416fb0176a4e3b8,
5-
.minimum_zig_version = "0.14.0",
6+
.minimum_zig_version = "0.15.0",
67
.dependencies = .{
78
.zine = .{
89
.url = "git+https://github.com/kristoff-it/zine.git#0e7d06e3faabbfa6fe5fcf52d9b4f71694099df4",

scripts/zb.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
# scripts/zb.sh
3+
# Copyright (C) 2025 Qompass AI, All rights reserved
4+
5+
rm -rf zig-cache/ zig-out/
6+
zig build -freference-trace --fetch
7+
zig build -Doptimize=Safe

zine.ziggy

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,36 @@
11
// zine.ziggy
2-
Site {
3-
.title = "The Deep Pursuit of Quality AI",
4-
.host_url = "https://phaedrusflow.github.io",
5-
.content_dir_path = "content",
6-
.layouts_dir_path = "layouts",
7-
.assets_dir_path = "assets",
8-
.static_assets = [
9-
.{ .src = "assets", .dst = "/" },
10-
],
11-
}
2+
const zine = @import("zine");
123

4+
pub const site = zine.Site{
5+
.base_url = "https://phaedrusflow.github.io",
6+
.content_dir = "content",
7+
.layouts_dir = "layouts",
8+
.assets_dir = "assets",
9+
.output_dir = "public",
10+
11+
.site_title = "The Deep Pursuit of Quality AI",
12+
.site_description = "Quality AI Adoption Solutions as a Service",
13+
.author = "Matthew A. Porter",
14+
.language = "en-US",
15+
16+
.math = true,
17+
.mermaid = true,
18+
.code_highlighting = true,
19+
20+
.social = .{
21+
.twitter = "PhaedrusFlow",
22+
.github = "phaedrusflow"
23+
},
24+
25+
.static_assets = &.{
26+
"favicon.ico",
27+
"CNAME",
28+
.{ .src = "assets", .dst = "/" }
29+
},
30+
31+
.theme = .{
32+
.primary = "#76B900",
33+
.secondary = "#0668E1",
34+
.dark_mode = true
35+
}
36+
};

0 commit comments

Comments
 (0)