mirror of
https://github.com/BBaoVanC/bbaovanc.com.git
synced 2025-08-02 23:11:37 -05:00
Use yaml front matter instead of toml
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
+++
|
||||
title = "Home"
|
||||
---
|
||||
|
||||
description = """
|
||||
This is my website.
|
||||
"""
|
||||
+++
|
||||
title: Home
|
||||
|
||||
description: |
|
||||
This is my website.
|
||||
|
||||
---
|
||||
|
||||
## My Website
|
||||
|
||||
|
@@ -1,8 +1,9 @@
|
||||
+++
|
||||
title = "Archivo"
|
||||
icon = "archive"
|
||||
---
|
||||
|
||||
description = """
|
||||
Entradas archivos de blog
|
||||
"""
|
||||
+++
|
||||
title: Archivo
|
||||
icon: archive
|
||||
|
||||
description: |
|
||||
Entradas archivos de blog
|
||||
|
||||
---
|
||||
|
@@ -1,8 +1,9 @@
|
||||
+++
|
||||
title = "Archive"
|
||||
icon = "archive"
|
||||
---
|
||||
|
||||
description = """
|
||||
Archived blog posts
|
||||
"""
|
||||
+++
|
||||
title: Archive
|
||||
icon: archive
|
||||
|
||||
description: |
|
||||
Archived blog posts
|
||||
|
||||
---
|
||||
|
@@ -1,20 +1,20 @@
|
||||
+++
|
||||
title = "New Comment System (again)"
|
||||
date = "2021-04-17"
|
||||
toc = true
|
||||
---
|
||||
|
||||
aliases = [
|
||||
"/blog/posts/new-comment-system-again/",
|
||||
"/blog/new-comment-system-again/",
|
||||
"/archive/new-comment-system-again/",
|
||||
]
|
||||
title: New Comment System (again)
|
||||
date: "2021-04-17"
|
||||
toc: true
|
||||
|
||||
tags = [
|
||||
"announcement",
|
||||
"hugo",
|
||||
"blog",
|
||||
]
|
||||
+++
|
||||
aliases:
|
||||
- /blog/posts/new-comment-system-again/
|
||||
- /blog/new-comment-system-again/
|
||||
- /archive/new-comment-system-again/
|
||||
|
||||
tags:
|
||||
- announcement
|
||||
- hugo
|
||||
- blog
|
||||
|
||||
---
|
||||
|
||||
I decided to switch my comment system from Isso to
|
||||
[Commento](https://www.commento.io/).
|
||||
|
@@ -1,20 +1,20 @@
|
||||
+++
|
||||
title = "New Comment System"
|
||||
date = "2021-04-11"
|
||||
toc = true
|
||||
---
|
||||
|
||||
aliases = [
|
||||
"/blog/posts/new-comment-system/",
|
||||
"/blog/new-comment-system/",
|
||||
"/archive/new-comment-system/",
|
||||
]
|
||||
title: New Comment System
|
||||
date: "2021-04-11"
|
||||
toc: true
|
||||
|
||||
tags = [
|
||||
"announcement",
|
||||
"hugo",
|
||||
"blog",
|
||||
]
|
||||
+++
|
||||
aliases:
|
||||
- /blog/posts/new-comment-system/
|
||||
- /blog/new-comment-system/
|
||||
- /archive/new-comment-system/
|
||||
|
||||
tags:
|
||||
- announcement
|
||||
- hugo
|
||||
- blog
|
||||
|
||||
---
|
||||
|
||||
I added a comment system to my blog, using [Isso](https://posativ.org/isso/).
|
||||
|
||||
|
@@ -1,7 +1,8 @@
|
||||
+++
|
||||
title = "Blog"
|
||||
---
|
||||
|
||||
description = """
|
||||
Mis entradas de blog
|
||||
"""
|
||||
+++
|
||||
title: Blog
|
||||
|
||||
description: |
|
||||
Mis entradas de blog
|
||||
|
||||
---
|
||||
|
@@ -1,7 +1,8 @@
|
||||
+++
|
||||
title = "Blog"
|
||||
---
|
||||
|
||||
description = """
|
||||
My blog posts
|
||||
"""
|
||||
+++
|
||||
title: Blog
|
||||
|
||||
description: |
|
||||
My blog posts
|
||||
|
||||
---
|
||||
|
@@ -1,17 +1,17 @@
|
||||
+++
|
||||
title = "Allow Non Root Processes to Bind to Privileged Ports"
|
||||
date = "2021-03-28"
|
||||
toc = true
|
||||
---
|
||||
|
||||
aliases = [
|
||||
"posts/allow-non-root-processes-to-bind-to-privileged-ports/",
|
||||
]
|
||||
title: Allow Non Root Processes to Bind to Privileged Ports
|
||||
date: "2021-03-28"
|
||||
toc: true
|
||||
|
||||
tags = [
|
||||
"guide",
|
||||
"linux",
|
||||
]
|
||||
+++
|
||||
aliases:
|
||||
- posts/allow-non-root-processes-to-bind-to-privileged-ports/
|
||||
|
||||
tags:
|
||||
- guide
|
||||
- linux
|
||||
|
||||
---
|
||||
|
||||
In Linux, processes cannot bind to privileged ports (<=1024) unless they are
|
||||
running as root. Here's how to allow any process to bind to privileged ports.
|
||||
|
@@ -1,25 +1,25 @@
|
||||
+++
|
||||
title = "Checkra1n GUI on Other Distros"
|
||||
date = "2021-03-25"
|
||||
toc = true
|
||||
---
|
||||
|
||||
aliases = [
|
||||
"posts/checkra1n-gui-on-other-distros/",
|
||||
]
|
||||
title: Checkra1n GUI on Other Distros
|
||||
date: "2021-03-25"
|
||||
toc: true
|
||||
|
||||
tags = [
|
||||
"guide",
|
||||
"linux",
|
||||
"archlinux",
|
||||
"jailbreak",
|
||||
"checkra1n",
|
||||
]
|
||||
aliases:
|
||||
- posts/checkra1n-gui-on-other-distros/
|
||||
|
||||
[[resources]]
|
||||
name = "feature"
|
||||
src = "gui.webp"
|
||||
title = "Checkra1n GUI running on Arch Linux"
|
||||
+++
|
||||
tags:
|
||||
- guide
|
||||
- linux
|
||||
- archlinux
|
||||
- jailbreak
|
||||
- checkra1n
|
||||
|
||||
resources:
|
||||
- name: feature
|
||||
src: gui.webp
|
||||
title: Checkra1n GUI running on Arch Linux
|
||||
|
||||
---
|
||||
|
||||
You can run the GUI version of checkra1n on non Debian-based distributions.
|
||||
|
||||
|
@@ -1,23 +1,23 @@
|
||||
+++
|
||||
title = "Put `(edited)` in the middle of a message in Discord"
|
||||
date = "2021-03-25"
|
||||
toc = false
|
||||
---
|
||||
|
||||
aliases = [
|
||||
"posts/edited-in-middle-of-message-discord/",
|
||||
]
|
||||
title: Put `(edited)` in the middle of a message in Discord
|
||||
date: "2021-03-25"
|
||||
toc: false
|
||||
|
||||
tags = [
|
||||
"tutorial",
|
||||
"discord",
|
||||
"discord-tricks",
|
||||
]
|
||||
aliases:
|
||||
- posts/edited-in-middle-of-message-discord/
|
||||
|
||||
[[resources]]
|
||||
name = "feature"
|
||||
src = "example.webp"
|
||||
title = "Example image"
|
||||
+++
|
||||
tags:
|
||||
- tutorial
|
||||
- discord
|
||||
- discord-tricks
|
||||
|
||||
resources:
|
||||
- name: feature
|
||||
src: example.webp
|
||||
title: Example image
|
||||
|
||||
---
|
||||
|
||||
With a bit of trickery using the RLE character (U+202B), you can get the
|
||||
`(edited)` text on a message to be somewhere other than at the end of the
|
||||
|
@@ -1,24 +1,24 @@
|
||||
+++
|
||||
title = "Text Substitution in Discord using `sed`"
|
||||
date = "2021-03-25"
|
||||
toc = false
|
||||
---
|
||||
|
||||
aliases = [
|
||||
"/blog/posts/sed-text-substitution-in-discord/",
|
||||
"/blog/posts/text-substitution-in-discord-using-sed/",
|
||||
]
|
||||
title: Text Substitution in Discord using `sed`
|
||||
date: "2021-03-25"
|
||||
toc: false
|
||||
|
||||
tags = [
|
||||
"tutorial",
|
||||
"discord",
|
||||
"discord-tricks",
|
||||
]
|
||||
aliases:
|
||||
- /blog/posts/sed-text-substitution-in-discord/
|
||||
- /blog/posts/text-substitution-in-discord-using-sed/
|
||||
|
||||
[[resources]]
|
||||
name = "feature"
|
||||
src = "example.mov"
|
||||
title = "Example Video"
|
||||
+++
|
||||
tags:
|
||||
- tutorial
|
||||
- discord
|
||||
- discord-tricks
|
||||
|
||||
resources:
|
||||
- name: feature
|
||||
src: example.mov
|
||||
title: Example Video
|
||||
|
||||
---
|
||||
|
||||
Discord has (very primitive) support for text replacement using `sed` syntax.
|
||||
|
||||
|
@@ -1,12 +1,13 @@
|
||||
+++
|
||||
title = "Contact"
|
||||
menu = "main"
|
||||
toc = false
|
||||
---
|
||||
|
||||
description = """
|
||||
Want to contact me? Here's how you can.
|
||||
"""
|
||||
+++
|
||||
title: Contact
|
||||
menu: main
|
||||
toc: false
|
||||
|
||||
description: |
|
||||
Want to contact me? Here's how you can.
|
||||
|
||||
---
|
||||
|
||||
- Email: [contact@bbaovanc.com](mailto:contact@bbaovanc.com)
|
||||
- Matrix: [@bbaovanc:boba.best](https://matrix.to/#/@bbaovanc:boba.best)
|
||||
|
@@ -1,13 +1,14 @@
|
||||
+++
|
||||
title = "Donate"
|
||||
menu = "main"
|
||||
toc = false
|
||||
---
|
||||
|
||||
description = """
|
||||
I have a few cryptocurrency addresses that you can use if you want to donate to
|
||||
me.
|
||||
"""
|
||||
+++
|
||||
title: Donate
|
||||
menu: main
|
||||
toc: false
|
||||
|
||||
description: |
|
||||
I have a few cryptocurrency addresses that you can use if you want to donate to
|
||||
me.
|
||||
|
||||
---
|
||||
|
||||
## Cryptocurrency Addresses
|
||||
|
||||
|
@@ -1,15 +1,16 @@
|
||||
+++
|
||||
title = "Links"
|
||||
menu = "main"
|
||||
toc = true
|
||||
aliases = [
|
||||
"/blog/links/",
|
||||
]
|
||||
---
|
||||
|
||||
description = """
|
||||
A page with links to a lot of my different projects.
|
||||
"""
|
||||
+++
|
||||
title: Links
|
||||
menu: main
|
||||
toc: true
|
||||
|
||||
aliases:
|
||||
- /blog/links/
|
||||
|
||||
description: |
|
||||
A page with links to a lot of my different projects.
|
||||
|
||||
---
|
||||
|
||||
## Other
|
||||
|
||||
|
Reference in New Issue
Block a user