workstations and light theme

This commit is contained in:
2026-04-16 16:33:48 +03:00
parent 555e920c18
commit bbfaf5ccc5
37 changed files with 1015 additions and 106 deletions
+5 -1
View File
@@ -2,6 +2,10 @@
{
"description": "A personal page for projects, stack notes, and developer work.",
"key": "web",
"links": {
"homepage": "https://scuroneko.dev",
"sources": "https://git.scuroneko.dev/ScuroNeko/scuroneko.dev"
},
"name": "ScuroNeko.dev",
"stack": ["html", "css", "js"],
"status": "active",
@@ -16,6 +20,6 @@
"name": "Laniakea",
"stack": ["go", "tg"],
"status": "active",
"tone": "purple"
"tone": "rose"
}
]
+32
View File
@@ -0,0 +1,32 @@
{
"$id": "https://scuroneko.dev/schemas/links.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"additionalProperties": false,
"properties": {
"key": {
"minLength": 1,
"type": "string"
},
"label": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"tone": {
"$ref": "./shared.schema.json#/$defs/tone"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": ["key", "name", "label", "url", "tone"],
"type": "object"
},
"title": "Links",
"type": "array"
}
+47
View File
@@ -0,0 +1,47 @@
{
"$id": "https://scuroneko.dev/schemas/projects.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"additionalProperties": false,
"properties": {
"description": {
"minLength": 1,
"type": "string"
},
"key": {
"minLength": 1,
"type": "string"
},
"links": {
"additionalProperties": {
"format": "uri",
"type": "string"
},
"type": "object"
},
"name": {
"minLength": 1,
"type": "string"
},
"stack": {
"items": {
"minLength": 1,
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"status": {
"enum": ["active", "archive", "wip", "paused"],
"type": "string"
},
"tone": {
"$ref": "./shared.schema.json#/$defs/tone"
}
},
"required": ["key", "name", "description", "stack", "status", "tone"],
"type": "object"
},
"title": "Projects",
"type": "array"
}
+23
View File
@@ -0,0 +1,23 @@
{
"$defs": {
"tone": {
"enum": [
"blue",
"gold",
"mint",
"purple",
"red",
"cyan",
"green",
"pink",
"teal",
"lime",
"rose"
],
"type": "string"
}
},
"$id": "https://scuroneko.dev/schemas/shared.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Shared schema definitions"
}
+39
View File
@@ -0,0 +1,39 @@
{
"$id": "https://scuroneko.dev/schemas/stack.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"additionalProperties": false,
"properties": {
"hide": {
"type": "boolean"
},
"key": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"tags": {
"items": {
"minLength": 1,
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"tone": {
"$ref": "./shared.schema.json#/$defs/tone"
},
"years": {
"minimum": 0,
"type": "number"
}
},
"required": ["key", "name", "tone", "years"],
"type": "object"
},
"title": "Stack",
"type": "array"
}
+87
View File
@@ -0,0 +1,87 @@
{
"$id": "https://scuroneko.dev/schemas/workstations.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"additionalProperties": false,
"properties": {
"actual": {
"type": "boolean"
},
"devices": {
"items": {
"additionalProperties": false,
"properties": {
"key": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
}
},
"required": ["key", "name"],
"type": "object"
},
"type": "array"
},
"key": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"specs": {
"properties": {
"cpu": {
"minLength": 1,
"type": "string"
},
"gpu": {
"minLength": 1,
"type": "string"
},
"os": {
"type": "string"
},
"ram": {
"minLength": 1,
"type": "string"
},
"storage": {
"items": {
"additionalProperties": false,
"properties": {
"capacity": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"type": {
"minLength": 1,
"type": "string"
}
},
"required": ["name", "capacity"],
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"tone": {
"$ref": "./shared.schema.json#/$defs/tone"
}
},
"required": ["key", "name", "tone"],
"type": "object"
},
"title": "Workstations",
"type": "array"
}
+21
View File
@@ -45,6 +45,20 @@
"tone": "blue",
"years": 2
},
{
"key": "jetbrains",
"name": "JetBrains IDE",
"tags": ["tools"],
"tone": "purple",
"years": 10
},
{
"key": "vscode",
"name": "Visual Studio Code",
"tags": ["tools"],
"tone": "purple",
"years": 7
},
{
"hide": true,
"key": "html",
@@ -65,5 +79,12 @@
"name": "JavaScript",
"tone": "gold",
"years": 7
},
{
"hide": true,
"key": "sass",
"name": "Sass",
"tone": "rose",
"years": 5
}
]
+110
View File
@@ -0,0 +1,110 @@
[
{
"actual": true,
"devices": [
{
"key": "monitor1",
"name": "AOC 24G2SPU"
},
{
"key": "monitor2",
"name": "AOC 24E1Q"
},
{
"key": "keyboard",
"name": "Ardor Wakizashi"
},
{
"key": "mouse",
"name": "Ardor Immortaliry PRO"
},
{
"key": "microphone",
"name": "Fifine AM8"
}
],
"key": "pc",
"name": "PC",
"specs": {
"cpu": "AMD Ryzen 7 7700",
"gpu": "NVIDIA GeForce RTX 5070",
"os": "Windows 11 Pro",
"ram": "32GB DDR5",
"storage": [
{
"capacity": "1TB",
"name": "Adata XPG GAMMIX S11 Pro",
"type": "M2 PCI-E 3.0"
},
{
"capacity": "1TB",
"name": "WD Blue",
"type": "SATA HDD"
}
]
},
"tone": "rose"
},
{
"actual": true,
"key": "notebook",
"name": "Notebook",
"specs": {
"cpu": "Intel Core i3-8470U",
"gpu": "Intel UHD Graphics 620",
"os": "Windows 10 LTSC 2021",
"ram": "16GB DDR4",
"storage": [
{
"capacity": "256GB",
"name": "WD Blue SN550",
"type": "M2 PCI-E 3.0"
},
{
"capacity": "256GB",
"name": "Neo Forza NFS12",
"type": "SATA SSD"
}
]
},
"tone": "blue"
},
{
"actual": true,
"key": "vps",
"name": "VPS",
"specs": {
"cpu": "2 vCore (AMD EPYC 7763)",
"gpu": "N/A",
"os": "Arch Linux",
"ram": "4GB",
"storage": [
{
"capacity": "60GB",
"name": "NVMe SSD",
"type": "NVMe"
}
]
},
"tone": "green"
},
{
"actual": false,
"key": "pc",
"name": "PC",
"specs": {
"cpu": "Intel Core i7-6700",
"gpu": "AMD Radeon RX580",
"os": "Windows 11 Pro",
"ram": "16GB DDR4",
"storage": [
{
"capacity": "256GB",
"name": "Samsung 850 EVO",
"type": "SATA SSD"
}
]
},
"tone": "teal"
}
]