Skip to content

Commit 0d547f6

Browse files
committed
Initial commit
0 parents  commit 0d547f6

File tree

12 files changed

+344
-0
lines changed

12 files changed

+344
-0
lines changed

.github/workflows/hugo.yaml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Sample workflow for building and deploying a Hugo site to GitHub Pages
2+
name: Deploy Hugo site to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches:
8+
- main
9+
10+
# Allows you to run this workflow manually from the Actions tab
11+
workflow_dispatch:
12+
13+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14+
permissions:
15+
contents: read
16+
pages: write
17+
id-token: write
18+
19+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
20+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
21+
concurrency:
22+
group: "pages"
23+
cancel-in-progress: false
24+
25+
# Default to bash
26+
defaults:
27+
run:
28+
shell: bash
29+
30+
jobs:
31+
# Build job
32+
build:
33+
runs-on: ubuntu-latest
34+
env:
35+
HUGO_VERSION: 0.147.2
36+
HUGO_ENVIRONMENT: production
37+
TZ: America/Los_Angeles
38+
steps:
39+
- name: Install Hugo CLI
40+
run: |
41+
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
42+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
43+
- name: Install Dart Sass
44+
run: sudo snap install dart-sass
45+
- name: Checkout
46+
uses: actions/checkout@v4
47+
with:
48+
submodules: recursive
49+
fetch-depth: 0
50+
- name: Setup Pages
51+
id: pages
52+
uses: actions/configure-pages@v5
53+
- name: Install Node.js dependencies
54+
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
55+
- name: Cache Restore
56+
id: cache-restore
57+
uses: actions/cache/restore@v4
58+
with:
59+
path: |
60+
${{ runner.temp }}/hugo_cache
61+
key: hugo-${{ github.run_id }}
62+
restore-keys:
63+
hugo-
64+
- name: Configure Git
65+
run: git config core.quotepath false
66+
- name: Build with Hugo
67+
run: |
68+
hugo \
69+
--gc \
70+
--minify \
71+
--baseURL "${{ steps.pages.outputs.base_url }}/" \
72+
--cacheDir "${{ runner.temp }}/hugo_cache"
73+
- name: Cache Save
74+
id: cache-save
75+
uses: actions/cache/save@v4
76+
with:
77+
path: |
78+
${{ runner.temp }}/hugo_cache
79+
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
80+
- name: Upload artifact
81+
uses: actions/upload-pages-artifact@v3
82+
with:
83+
path: ./public
84+
85+
# Deployment job
86+
deploy:
87+
environment:
88+
name: github-pages
89+
url: ${{ steps.deployment.outputs.page_url }}
90+
runs-on: ubuntu-latest
91+
needs: build
92+
steps:
93+
- name: Deploy to GitHub Pages
94+
id: deployment
95+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.hugo_build.lock
2+
public/
3+
resources/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/re-terminal"]
2+
path = themes/re-terminal
3+
url = https://github.com/mirus-ua/hugo-theme-re-terminal.git

LICENSE

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
ariadnavigo.xyz contents:
2+
3+
Copyright (c) 2025 Ariadna Vigo
4+
All rights reserved
5+
6+
re-terminal Hugo theme:
7+
8+
The MIT License (MIT)
9+
10+
Copyright (c) 2019 panr
11+
Copyright (c) 2024 Mirus
12+
13+
Permission is hereby granted, free of charge, to any person obtaining a
14+
copy of this software and associated documentation files (the
15+
"Software"), to deal in the Software without restriction, including
16+
without limitation the rights to use, copy, modify, merge, publish,
17+
distribute, sublicense, and/or sell copies of the Software, and to
18+
permit persons to whom the Software is furnished to do so, subject to
19+
the following conditions:
20+
21+
The above copyright notice and this permission notice shall be included
22+
in all copies or substantial portions of the Software.
23+
24+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
27+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
28+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
29+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# ariadnavigo.xyz - Source code for ariadnavigo.xyz
2+
3+
This is the source code repository for my website hosted at
4+
[ariadnavigo.xyz][website].
5+
6+
## License
7+
8+
See LICENSE file for the complete copyright and licensing details.
9+
10+
[website]: https://ariadnavigo.xyz/

archetypes/default.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
title = "{{ replace .TranslationBaseName "-" " " | title }}"
3+
date = "{{ .Date }}"
4+
author = "Ariadna"
5+
tags = ["", ""]
6+
keywords = ["", ""]
7+
description = ""
8+
draft = true
9+
+++

archetypes/posts.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
default.md

content/about/ari.png

446 KB
Loading

content/about/index.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
+++
2+
title = "About"
3+
date = "2025-06-04T15:56:27+02:00"
4+
author = "Ariadna"
5+
keywords = ["Ariadna Vigo", "free software", "foss", "open source"]
6+
description = "About page for ariadnavigo.xyz"
7+
+++
8+
9+
You've reached my website! I hope you'll find it cozy and a nice place to stay.
10+
My name is Ariadna, and you may know me from past projects here and there in the
11+
FOSS world. After a long hiatus, I'm back!
12+
13+
This website is meant to be a place where I share my journey back into the FOSS
14+
world, coding, commenting the latest news around FOSS, and the occasional
15+
personal or philosophical post.
16+
17+
{{< image src="/about/ari.png" alt="A photo of myself" position="center" >}}
18+
19+
# Where to Find Me
20+
21+
These are the ways you can find me on the internet:
22+
23+
1. **Email:** [[email protected]](mailto:[email protected])
24+
(You may find my OpenPGP key via WKD)
25+
3. **Sourcehut:** [~ariadna_vigo](https://sr.ht/~ariadna_vigo)
26+
4. **libera.chat IRC:** ariadnavigo

content/posts/new-beginnings.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
+++
2+
title = "New Beginnings"
3+
date = "2025-06-04T16:33:45+02:00"
4+
author = "Ariadna"
5+
tags = ["blog", "projects", "free software"]
6+
keywords = ["free software", "programming", "blog"]
7+
description = "I'm back!"
8+
+++
9+
10+
So, this is my _n-th_ attempt in writing a blog. Over the years I've been all
11+
over the place: I had a long streak blogging about FOSS-related topics, then I
12+
switched to more personal matters, bouncing from English to Spanish multiple
13+
times, and also trying my hand in more philosophical topics. Also, I had my ups
14+
and downs as an amateur programmer over the years, but some (two?) years ago I
15+
made the mistake of quitting everything related to development, even deleting
16+
all my repositories, because...
17+
18+
OK, the motives behind that are rather personal and I feel quite dumb in
19+
retrospect. I'm not getting into the details of the past, but I do want to give
20+
some hints about what my future plans.
21+
22+
I've been working on some code lately. Apart from some shell scripts, I haven't
23+
published any of it yet, because it's all way too green right now. These
24+
programs may never see the light, or maybe they will. In general, I'd like to
25+
avoid rewriting from memory old stuff I had worked in the past, except one for
26+
thing: a readline-like line editing library for terminal-based programs. I
27+
wrote one years ago and I don't have any of that code at hand, but I do want to
28+
tackle the problem again, this time getting Unicode right from the start
29+
(_libicu?_).
30+
31+
I also want to write in other languages besides C and POSIX shell. I've always
32+
felt attracted to Go, and having a taste of Rust as well. Let's say I want to
33+
know more about these new systems programming languages that are advertised as
34+
the replacement for old and venerable C. Python is a language I have worked
35+
with, but for which I may need some refresher and updating.
36+
37+
On the other hand, after many years not doing so, I have been following (some)
38+
FOSS news lately, and I miss writing commentary on what's going on in our small,
39+
little world of Free Software.
40+
41+
So this is it: I'm _back._ If you missed me, your beautiful Ariadna, these last
42+
couple of years, I hope you'll find this new beginning something to look forward
43+
to as eagerly as I do.

0 commit comments

Comments
 (0)