Switch to hugo-bearblog theme
This commit is contained in:
3
content/_index.md
Normal file
3
content/_index.md
Normal file
@ -0,0 +1,3 @@
|
||||
This is my website.
|
||||
|
||||
https://boba.best is also my website.
|
@ -1,18 +1,19 @@
|
||||
+++
|
||||
title = "Allow Non Root Processes to Bind to Privileged Ports"
|
||||
date = "2021-03-28T20:03:16-05:00"
|
||||
author = "bbaovanc"
|
||||
tags = ["guide", "linux"]
|
||||
keywords = ["linux", "privileged", "ports", "tutorial", "guide", "gitea",
|
||||
"systemd"]
|
||||
date = "2021-03-28"
|
||||
aliases = [
|
||||
"posts/allow-non-root-processes-to-bind-to-privileged-ports/",
|
||||
]
|
||||
|
||||
description = """
|
||||
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.
|
||||
"""
|
||||
|
||||
showFullContent = false
|
||||
toc = true
|
||||
tags = [
|
||||
"guide",
|
||||
"linux",
|
||||
]
|
||||
+++
|
||||
|
||||
## Introduction
|
@ -1,19 +1,25 @@
|
||||
+++
|
||||
title = "Checkra1n GUI on Other Distros"
|
||||
date = "2021-03-25T21:19:51-05:00"
|
||||
author = "bbaovanc"
|
||||
cover = "media/checkra1n-gui-on-arch-linux.webp"
|
||||
tags = ["guide", "linux", "archlinux", "jailbreak", "checkra1n"]
|
||||
keywords = ["checkra1n", "gui", "linux", "arch linux"]
|
||||
date = "2021-03-25"
|
||||
aliases = [
|
||||
"posts/checkra1n-gui-on-other-distros/",
|
||||
]
|
||||
|
||||
description = """
|
||||
You can run the GUI version of checkra1n on non Debian-based distributions.
|
||||
"""
|
||||
|
||||
showFullContent = false
|
||||
toc = true
|
||||
tags = [
|
||||
"guide",
|
||||
"linux",
|
||||
"archlinux",
|
||||
"jailbreak",
|
||||
"checkra1n",
|
||||
]
|
||||
+++
|
||||
|
||||

|
||||
|
||||
## Introduction
|
||||
|
||||
The official cross-distribution build of checkra1n only contains a CLI and TUI.
|
@ -1,19 +1,24 @@
|
||||
+++
|
||||
title = "Put (edited) in the middle of a message in Discord"
|
||||
date = "2021-03-25T18:48:34-05:00"
|
||||
author = "bbaovanc"
|
||||
cover = "media/discord-tricks/edited-in-middle-of-message.webp"
|
||||
tags = ["tutorial", "discord", "discord-tricks"]
|
||||
keywords = ["discord", "edited"]
|
||||
date = "2021-03-25"
|
||||
aliases = [
|
||||
"posts/edited-in-middle-of-message-discord/",
|
||||
]
|
||||
|
||||
description = """
|
||||
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 message.
|
||||
"""
|
||||
|
||||
showFullContent = false
|
||||
tags = [
|
||||
"tutorial",
|
||||
"discord",
|
||||
"discord-tricks",
|
||||
]
|
||||
+++
|
||||
|
||||

|
||||
|
||||
## Tutorial
|
||||
|
||||
1. Copy the "right-to-left embedding" character (U+202A) to your clipboard.
|
@ -1,16 +1,20 @@
|
||||
+++
|
||||
title = "New Comment System (again)"
|
||||
date = "2021-04-17T00:08:30-05:00"
|
||||
author = "bbaovanc"
|
||||
tags = ["announcement", "hugo", "blog"]
|
||||
keywords = ["hugo", "comment system", "blog", "commento"]
|
||||
date = "2021-04-17"
|
||||
aliases = [
|
||||
"posts/new-comment-system-again/",
|
||||
]
|
||||
|
||||
description = """
|
||||
I decided to switch my comment system from Isso to
|
||||
[Commento](https://www.commento.io/)
|
||||
"""
|
||||
|
||||
showFullContent = false
|
||||
tags = [
|
||||
"announcement",
|
||||
"hugo",
|
||||
"blog",
|
||||
]
|
||||
+++
|
||||
|
||||
## Isso vs Commento
|
||||
@ -24,10 +28,10 @@ this working on Isso), and a nicer design. I also was able to write some
|
||||
supports SSO, so I might add support for signing up with GitHub, and possibly
|
||||
GitLab.
|
||||
|
||||
## Summary of the [first post]({{< ref "/posts/new-comment-system" >}})
|
||||
## Summary of the [first post]({{< ref "/blog/new-comment-system" >}})
|
||||
|
||||
If you haven't read the
|
||||
[New Comment System]({{< ref "/posts/new-comment-system" >}}) post, here's the
|
||||
[New Comment System]({{< ref "/blog/new-comment-system" >}}) post, here's the
|
||||
most important information. There's a comment section at the bottom of each post
|
||||
where you can view and post comments. You can post anonymously, or create an
|
||||
account so you can show your username and get email notifications. You can also
|
@ -1,16 +1,19 @@
|
||||
+++
|
||||
title = "New Comment System"
|
||||
date = "2021-04-11T00:17:13-05:00"
|
||||
author = "bbaovanc"
|
||||
tags = ["announcement", "hugo", "blog"]
|
||||
keywords = ["hugo", "comment system", "blog", "isso"]
|
||||
date = "2021-04-11"
|
||||
aliases = [
|
||||
"posts/new-comment-system/",
|
||||
]
|
||||
|
||||
description = """
|
||||
I added a comment system to my blog, using [Isso](https://posativ.org/isso/).
|
||||
"""
|
||||
|
||||
showFullContent = false
|
||||
toc = true
|
||||
tags = [
|
||||
"announcement",
|
||||
"hugo",
|
||||
"blog",
|
||||
]
|
||||
+++
|
||||
|
||||
## About
|
@ -1,15 +1,19 @@
|
||||
+++
|
||||
title = "Text Substitution in Discord using `sed`"
|
||||
date = "2021-03-25T18:48:15-05:00"
|
||||
author = "bbaovanc"
|
||||
tags = ["tutorial", "discord", "discord-tricks"]
|
||||
keywords = ["discord", "sed", "text", "replacement"]
|
||||
date = "2021-03-25"
|
||||
aliases = [
|
||||
"posts/text-substitution-in-discord-using-sed/",
|
||||
]
|
||||
|
||||
description = """
|
||||
Discord has (very primitive) support for text replacement using `sed` syntax.
|
||||
"""
|
||||
|
||||
showFullContent = false
|
||||
tags = [
|
||||
"tutorial",
|
||||
"discord",
|
||||
"discord-tricks",
|
||||
]
|
||||
+++
|
||||
|
||||
## Tutorial
|
10
content/contact.md
Normal file
10
content/contact.md
Normal file
@ -0,0 +1,10 @@
|
||||
+++
|
||||
title = "Contact"
|
||||
menu = "main"
|
||||
|
||||
description = """
|
||||
List of ways to contact me
|
||||
"""
|
||||
+++
|
||||
|
||||
- [Email me](mailto:contact@bbaovanc.com)
|
18
content/donate.md
Normal file
18
content/donate.md
Normal file
@ -0,0 +1,18 @@
|
||||
+++
|
||||
title = "Donate"
|
||||
menu = "main"
|
||||
|
||||
description = """
|
||||
How to donate to me
|
||||
"""
|
||||
+++
|
||||
|
||||
## Cryptocurrency Links
|
||||
|
||||
Nano: `nano_1ewtme68x5gia1bjq3jx1ku5pcxzayipdxjmjrc3x8qjjpat4ria8ajhjoxd`
|
||||
|
||||
Bitcoin: `bc1qj6h8z2tg9nxcl9ddnv9k798cru6asr6cpmj84m`
|
||||
|
||||
Ethereum: `0x80DaED7e2BEF5d894b37fBd79d0609aa17c8Cabc`
|
||||
|
||||
Monero: `45gGauNcWLNSobRMzk3rtfEpad7gGcEvegxCbEm6QYENdG4vag3fCVuFoKfdKSESeSEKyUNRGwAJyLaCQ6MC5AQ79DGcaRq`
|
17
content/gpg-fingerprints.md
Normal file
17
content/gpg-fingerprints.md
Normal file
@ -0,0 +1,17 @@
|
||||
+++
|
||||
title = "GPG Fingerprints"
|
||||
menu = "main"
|
||||
|
||||
description = """
|
||||
Fingerprint of my GPG key
|
||||
"""
|
||||
+++
|
||||
|
||||
```
|
||||
sec rsa4096 2020-08-31 [SC]
|
||||
CB7CCED9209E47B9B99B8E1D18089E4E3CCF1D3A
|
||||
uid [ultimate] BBaoVanC <bbaovanc@bbaovanc.com>
|
||||
uid [ultimate] BBaoVanC <github@bbaovanc.com>
|
||||
uid [ultimate] BBaoVanC <bbaovanc@boba.best>
|
||||
ssb rsa4096 2020-08-31 [E]
|
||||
```
|
@ -1,9 +1,14 @@
|
||||
---
|
||||
title: "Links"
|
||||
toc: true
|
||||
---
|
||||
+++
|
||||
title = "Links"
|
||||
menu = "main"
|
||||
aliases = [
|
||||
"/blog/links/",
|
||||
]
|
||||
|
||||
---
|
||||
description = """
|
||||
Various links to my stuff
|
||||
"""
|
||||
+++
|
||||
|
||||
## Other
|
||||
|
||||
|
15
content/referral-codes.md
Normal file
15
content/referral-codes.md
Normal file
@ -0,0 +1,15 @@
|
||||
+++
|
||||
title = "Referral Codes"
|
||||
menu = "main"
|
||||
aliases = [
|
||||
"/referrals/",
|
||||
]
|
||||
|
||||
description = """
|
||||
Referral codes for various services that I use/have used
|
||||
"""
|
||||
+++
|
||||
|
||||
- [Vultr](https://www.vultr.com/?ref=8643438-6G)
|
||||
- You get $100 to try out the service for a month
|
||||
- I get $25 if you stay.
|
Reference in New Issue
Block a user