Skip to content

Commit fb154d3

Browse files
committed
Tags adjustment. Minor CSS fixes.
1 parent b4245e8 commit fb154d3

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

_includes/partials/post-meta.njk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
background-color: var(--bg-color-secondary);
1515
padding: 0 0.25rem;
1616
transition: background-color 0.3s, border-color 0.3s;
17+
white-space: nowrap;
1718
}
1819

1920
.post-metadata svg {

content/blog/2025/20250121_ulid-announcement/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Announcing ByteAether.Ulid v1.0.0: A High-Performance .NET ULID Library for Modern Applications"
33
date: 2025-01-21
44
image: header.png
5-
tags: ["ulid", "uuid", "guid", "id"]
5+
tags: ["ByteAether.Ulid", "ULID", "UUID", "GUID", "ID"]
66
---
77

88
Frustrated with GUIDs that aren’t sortable or human-readable? Meet ByteAether.Ulid - a ULID library designed to simplify your .NET development.

content/blog/2025/20250128_ulid-intro/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "An Introduction to ULIDs: A Modern Identifier for Software Systems"
33
date: 2025-01-28
4-
tags: ["uuid", "ulid", "guid", "id"]
4+
tags: ["ByteAether.Ulid", "UUID", "ULID", "GUID", "ID"]
55
image: header.png
66
---
77
In the world of software development, identifiers are a cornerstone of data storage and retrieval. Whether you are designing a database, an API, or a distributed system, choosing the right identifier scheme is critical to ensuring performance, scalability, and reliability. Two widely used options are auto-incrementing integers and UUIDs (Universally Unique Identifiers). While each has its strengths, they also come with significant trade-offs. ULIDs (Universally Unique Lexicographically Sortable Identifiers) have emerged as a modern alternative that combines the best of both worlds. This article introduces ULIDs by first exploring the strengths and limitations of traditional identifier schemes and then delving into the advantages of ULIDs.

content/blog/2025/20250204_uuid-vs-ulid-vs-intid/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "UUID vs ULID vs Integer IDs: A Technical Guide for Modern Systems"
33
date: 2025-02-04
4-
tags: ["ulid", "uuid", "guid", "id", "entity-framework", "database", "sql", "performance"]
4+
tags: ["ByteAether.Ulid", "ULID", "UUID", "GUID", "ID", "Entity Framework", "Database", "SQL", "Performance"]
55
image: header.png
66
---
77

content/blog/2025/20250211_shopify/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "ULIDs as the Default Choice for Modern Systems: Lessons from Shopify's Payment Infrastructure"
33
date: 2025-02-11
4-
tags: ["ulid", "uuid", "id", "database", "sql", "shopify", "performance"]
4+
tags: ["ULID", "UUID", "ID", "Database", "SQL", "Shopify", "Performance"]
55
image: header.png
66
---
77

content/blog/2025/20250218_front-back-glue-logic-querylink/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Seamlessly Connecting Frontend and Backend Data in .NET Applications: A New Paradigm for Effortless Integration"
33
date: 2025-02-18
4-
tags: ["querylink", "integration", "entity-framework", "linq", "sql", "fullstack", "database"]
4+
tags: ["ByteAether.QueryLink", "QueryLink", "Integration", "Entity Framework", "LINQ", "SQL", "Fullstack", "Database", "Blazor"]
55
image: header.png
66
---
77
In today's fast‐paced software development world, engineers are often forced to write repetitive integration logic to connect user interfaces - especially data grids and tables - to their backend data sources. Every project, every new feature, and every iteration seems to reintroduce the same challenges: how do we reliably filter, sort, and display data without reinventing the wheel each time? The answer lies in automating these common tasks, thereby freeing developers to focus on business logic rather than boilerplate code.

public/css/index.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,11 @@ h4 {
123123
font-size: 1rem;
124124
}
125125

126+
blockquote {
127+
border-left: 4px solid var(--accent-color);
128+
padding-left: 1rem;
129+
}
130+
126131
.content-wrapper {
127132
display: grid;
128133
grid-auto-flow: column;
@@ -152,9 +157,9 @@ aside {
152157
pre,
153158
code {
154159
font-family: var(--font-family-monospace);
155-
overflow: auto;
156-
max-width: 100%;
160+
white-space: break-spaces !important;
157161
}
162+
158163
pre:not([class*="language-"]),
159164
code:not([class*="language-"]) {
160165
margin: 0;

0 commit comments

Comments
 (0)