Compare commits
58 Commits
Author | SHA1 | Date | |
---|---|---|---|
e2bdc520dd | |||
d5eeda3bab | |||
bcb10ec9ad | |||
0d760d43d6 | |||
78236841f0 | |||
b3239b9d96 | |||
6442e21ba7 | |||
7204fa7c1b | |||
8b01419070 | |||
761fbd2074 | |||
8c6d0000f9 | |||
47a6edf37e | |||
c310333396 | |||
94f980d399 | |||
dced346102 | |||
3e2f7059b5 | |||
877e2b5c5b | |||
66edc2016a | |||
08de9a59b9 | |||
e86caebaf5 | |||
88315c0b8e | |||
4a281b9502 | |||
59d47e6938 | |||
1756ef7c54 | |||
aa4b8199f6 | |||
69df8decb9 | |||
b084807eb7 | |||
ee90948a73 | |||
014d8296eb | |||
8df54d0495 | |||
c0a93ea0cc | |||
6edc7790dc | |||
f2114e001b | |||
1b715c2a8d | |||
07ca3dd3a5 | |||
a333928d39 | |||
eadcddc659 | |||
ad9b1cd38d | |||
4789bb5c03 | |||
c57c660f9f | |||
2c66d6c165 | |||
cd025a9291 | |||
4f5ff56f9e | |||
728da376f7 | |||
e87401928e | |||
aa84e6e182 | |||
d2085e2305 | |||
7fefb3d53b | |||
2304d88224 | |||
2c3c115517 | |||
64191136a2 | |||
2798b4f3bd | |||
5d4bfe05de | |||
e8daa92fba | |||
f3317ba2ac | |||
ed89f99265 | |||
278a4e57e9 | |||
6e4c44e746 |
@ -2,8 +2,6 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@ -12,43 +10,17 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
- uses: peaceiris/actions-hugo@v3
|
||||
with:
|
||||
extended: true
|
||||
- uses: actions/cache@v4
|
||||
with:
|
||||
path: resources
|
||||
key: ${{ runner.os }}-resources
|
||||
- uses: peaceiris/actions-hugo@v3
|
||||
with:
|
||||
extended: true
|
||||
- name: Build
|
||||
run: hugo --minify
|
||||
- uses: actions/cache@v4
|
||||
id: restore-build
|
||||
- uses: https://gitea.okami101.io/okami101/actions/docker@main
|
||||
with:
|
||||
path: public
|
||||
key: ${{ gitea.sha }}
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
if: startsWith(github.ref, 'refs/tags/v')
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/cache@v4
|
||||
id: restore-build
|
||||
with:
|
||||
path: public
|
||||
key: ${{ gitea.sha }}
|
||||
- uses: docker/metadata-action@v5
|
||||
id: meta
|
||||
with:
|
||||
images: ${{ vars.CONTAINER_REGISTRY_URL }}/${{ gitea.repository }}
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ vars.CONTAINER_REGISTRY_URL }}
|
||||
username: ${{ vars.CONTAINER_REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}
|
||||
- uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
gitea-token: ${{ secrets.RELEASE_TOKEN }}
|
||||
release: true
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! Congo v2.7.6 | MIT License | https://github.com/jpanther/congo */
|
||||
/*! Congo v2.9.0 | MIT License | https://github.com/jpanther/congo */
|
||||
|
||||
/*! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com */
|
||||
|
||||
@ -1115,6 +1115,12 @@ body:has(#menu-controller:checked) {
|
||||
|
||||
/* Table of Contents */
|
||||
|
||||
.toc {
|
||||
max-height: 100vh;
|
||||
overflow-y: auto;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.toc ul,
|
||||
.toc li {
|
||||
list-style-type: none;
|
||||
@ -1210,6 +1216,33 @@ body:has(#menu-controller:checked) {
|
||||
opacity: 0.05;
|
||||
}
|
||||
|
||||
/* Fix long KaTeX equations on mobile (see https://katex.org/docs/issues.html#css-customization) */
|
||||
|
||||
.katex-display {
|
||||
overflow: auto hidden;
|
||||
}
|
||||
|
||||
/* Fix long tables breaking out of article on mobile */
|
||||
|
||||
table {
|
||||
display: block;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
table {
|
||||
display: table;
|
||||
}
|
||||
}
|
||||
|
||||
/* Fix long inline code sections breaking out of article on mobile */
|
||||
|
||||
code {
|
||||
word-wrap: break-word;
|
||||
/* All browsers since IE 5.5+ */
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
/* -- Chroma Highlight -- */
|
||||
|
||||
/* Background */
|
||||
@ -1753,10 +1786,6 @@ body:has(#menu-controller:checked) {
|
||||
top: 5rem;
|
||||
}
|
||||
|
||||
.top-8 {
|
||||
top: 2rem;
|
||||
}
|
||||
|
||||
.top-\[100vh\] {
|
||||
top: 100vh;
|
||||
}
|
||||
@ -1852,14 +1881,14 @@ body:has(#menu-controller:checked) {
|
||||
margin-top: -0.75rem;
|
||||
}
|
||||
|
||||
.-mt-4 {
|
||||
margin-top: -1rem;
|
||||
}
|
||||
|
||||
.mb-1 {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.mb-10 {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.mb-12 {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
@ -1989,22 +2018,14 @@ body:has(#menu-controller:checked) {
|
||||
height: 3rem;
|
||||
}
|
||||
|
||||
.h-2 {
|
||||
height: 0.5rem;
|
||||
}
|
||||
|
||||
.h-24 {
|
||||
height: 6rem;
|
||||
}
|
||||
|
||||
.h-36 {
|
||||
height: 9rem;
|
||||
}
|
||||
|
||||
.h-8 {
|
||||
height: 2rem;
|
||||
}
|
||||
|
||||
.h-auto {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.h-full {
|
||||
height: 100%;
|
||||
}
|
||||
@ -2144,6 +2165,10 @@ body:has(#menu-controller:checked) {
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.items-end {
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.items-center {
|
||||
align-items: center;
|
||||
}
|
||||
@ -2981,6 +3006,11 @@ body:has(#menu-controller:checked) {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.group:hover .group-hover\:-translate-x-\[-2px\] {
|
||||
--tw-translate-x: 2px;
|
||||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||||
}
|
||||
|
||||
.group:hover .group-hover\:-translate-x-\[2px\] {
|
||||
--tw-translate-x: -2px;
|
||||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||||
|
@ -21,16 +21,5 @@ ignoreFiles = ['_data/*']
|
||||
[outputs]
|
||||
home = ["HTML", "RSS", "JSON"]
|
||||
|
||||
[author]
|
||||
name = "Adrien Beaudouin"
|
||||
image = "author.jpg"
|
||||
bio = "A senior web developer @janze"
|
||||
links = [
|
||||
{ email = "mailto:adrien@okami101.io" },
|
||||
{ github = "https://github.com/adr1enbe4udou1n" },
|
||||
{ linkedin = "https://linkedin.com/in/adr1enbe4udou1n" },
|
||||
{ twitter = "https://twitter.com/adr1enbe4udou1n" },
|
||||
]
|
||||
|
||||
[permalinks]
|
||||
posts = "/:year/:month/:title/"
|
||||
|
@ -61,3 +61,14 @@ excludedKinds = ["taxonomy", "term"]
|
||||
# bing = ""
|
||||
# pinterest = ""
|
||||
# yandex = ""
|
||||
|
||||
[author]
|
||||
name = "Adrien Beaudouin"
|
||||
image = "author.jpg"
|
||||
bio = "A senior web developer @janze"
|
||||
links = [
|
||||
{ email = "mailto:adrien@okami101.io" },
|
||||
{ github = "https://github.com/adr1enbe4udou1n" },
|
||||
{ linkedin = "https://linkedin.com/in/adr1enbe4udou1n" },
|
||||
{ bluesky = "https://bsky.app/profile/adr1enbe4udou1n.bsky.social" },
|
||||
]
|
||||
|
@ -4,5 +4,5 @@ description: "This is adr1enbe4udou1n blog."
|
||||
---
|
||||
|
||||
{{< lead >}}
|
||||
A 🧔🌍💻 aka senior web developer @Bretagne 🇫🇷
|
||||
A 🧔🌍💻 aka senior test web developer @Bretagne 🇫🇷
|
||||
{{< /lead >}}
|
||||
|
File diff suppressed because it is too large
Load Diff
2451
content/posts/23-web-api-benchmarks-2025/index.md
Normal file
2451
content/posts/23-web-api-benchmarks-2025/index.md
Normal file
File diff suppressed because it is too large
Load Diff
1
content/posts/23-web-api-benchmarks-2025/thumb.svg
Normal file
1
content/posts/23-web-api-benchmarks-2025/thumb.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 7.7 KiB |
@ -76,9 +76,6 @@
|
||||
<div class="flex items-center gap-4">
|
||||
<img src="/kube.png" width="30" height="30" alt="Kubernetes"
|
||||
title="Run on K3s over Hetzner Cloud" />
|
||||
<a href="https://concourse.okami101.io/teams/main/pipelines/okami-blog" target="_blank">
|
||||
<img src="https://concourse.okami101.io/api/v1/teams/main/pipelines/okami-blog/badge" alt="build" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="hidden lg:block">
|
||||
{{/* Copyright */}}
|
||||
@ -89,7 +86,7 @@
|
||||
{{- else }}
|
||||
©
|
||||
{{ now.Format "2006" }}
|
||||
{{ .Site.Author.name | markdownify | emojify }}
|
||||
{{ .Site.Params.Author.name | markdownify | emojify }}
|
||||
{{- end }}
|
||||
</p>
|
||||
{{ end }}
|
||||
|
@ -6,9 +6,9 @@
|
||||
>
|
||||
<header class="flex flex-col items-center mb-3">
|
||||
<h1 class="text-4xl font-extrabold">
|
||||
{{ .Site.Author.name | default .Site.Title }}
|
||||
{{ .Site.Params.Author.name | default .Site.Title }}
|
||||
</h1>
|
||||
{{ with .Site.Author.headline }}
|
||||
{{ with .Site.Params.Author.headline }}
|
||||
<h2 class="text-xl text-neutral-500 dark:text-neutral-400">
|
||||
{{ . | markdownify | emojify }}
|
||||
</h2>
|
||||
|
Submodule themes/congo updated: 5c8ab32b5b...475798497c
Reference in New Issue
Block a user