Compare commits

..

No commits in common. "37b76c7c0c27899384130aa233db994273a7e2c7" and "2595b01cd1fc58d2011765629322457c3e59bffd" have entirely different histories.

6 changed files with 6 additions and 119 deletions

View file

@ -12,7 +12,6 @@
<title>{{ title }} - cheri.pink</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/elements.css">
</head>
<body>
@ -30,7 +29,6 @@
<div class="nav-right">
<ul>
<li><a href="/about/">about me</a></li>
<li><a href="/contact/">contact</a></li>
<li><a href="https://git.snug.moe/cheri">git</a></li>
<li><a href="/feed.rss">rss</a></li>
<li><a href="/posts/">posts</a></li>

View file

@ -1,10 +1,9 @@
<ul>
{% for post in listposts | reverse %}
{% for post in listposts %}
<li>
<strong><a href="{{ post.url | url }}"> {{ post.data.title }}</a></strong>
-
<time datetime="{{ post.date | htmlDateString}}">{{ post.date | readableDate}}</time>
<br><small>{{ post.data.description }}</small>
</li>
{% endfor %}
</ul>

View file

@ -1,24 +0,0 @@
---
title: Contact and Socials
layout: base.njk
---
# Some ways to reach me on this word wide web,
## Some of mine accounts,
## Some of my Internet presence
***
**Fediverse**: [@cheri@snug.moe](https://snug.moe/@cheri)
**Fediverse (alt)**: [@cheri@akko.wtf](https://akko.wtf/cheri)
**Bluesky**: [cheri.pink](https://bsky.app/profile/cheri.pink)
**Newgrounds**: [cheripink](https://cheripink.newgrounds.com/)
**Forgejo** (you may have already seen this if you looked for this site's source lol): [cheri at git.snug.moe](https://git.snug.moe/cheri)
**Last.fm**: [veebb](https://www.last.fm/user/veebb)
I dunno, can't think of more that I would publicly list out :p

View file

@ -1,75 +1,7 @@
---
title: How I computers - bip bup
description: Some of the hardware and software I use
description: Some of the hardware and software I use. How I compute.
layout: base.njk
---
# What's my computers and what I run on them I guess?
### I thought I'd make a lil page that's kind of like a neofetch showcasing the stuff I be using I dunno
***
I bet this is going to be fun to keep up to date with time (not).
Anyway let's proceed
<center><h2>Hardware</h2></center>
### setsuna (desktop PC)
My lil baby~
- CPU: **Ryzen 7 5700X**
- GPU: **Sapphire Pulse Radeon 6800 XT**
- Like, **32 GB** of RAM
- A fun multitude of storage devices but none is in RAID
### yuyuko (laptop)
It's a **Thinkpad L390**.
It serves me well but it's a bit flimsy tbh...
- CPU: Intel Core **i5-8365U**
- Something like **16 GB** of RAM
- Storage: whatever **1 Tb NVMe**
### yukari (home server)
Pretty happy with how power efficient it is.
It's a **Fujitsu Esprimo-something desktop tower** that I got refurbished.
- CPU: Intel Core **i7-6700**
- Perhaps **32 gigabytes** of RAM
- Booting off some **256 GB NVMe SSD**
- Two **1 TB SATA SSDs in mirror** for most services
- Some cheeky **6 TB HDD** for taking backups and fun stuff. Not mirrored, I am living on the edge.
<br>
Also having a
- **Thinkpad W520** which was my beloved old laptop (and behated for having had an nVidia Quadro),
- And before that was rocking a **Lenovo Ideapad Z50-75** (variant with AMD FX-7500 and some annoying AMD dual-graphics setup)
### In terms of other hardware
I guess I have a **Wii** which is for now the only console I have. Fun thing to mod.
In terms of phones I'm rocking Google Pixels with Graphene OS on them because I am a nerd.
I also have like 3 VPSes that I won't mention here lol. Probably not interesting.
<center><h2>Software</h2></center>
- OS ran on personal computers generally: **Arch Linux**
- OS I fangirl for and will use more of: **Chimera Linux**
On PCs I generally use **KDE Plasma** these days, it's fine and I became too lazy of window managers or whatever.
I tend to set up my server software inside of **Incus** containers which are pretty cool,
but I'll admit it's a bit hard for a beginner to get the hang of it and its intricacies from the documentation and resources available.
But also I want to try doing things differently some time, probably have my things around OCI containers afterall.
- Filesystem of choice: **ZFS**
- Filesystem I'm fangirling for and wanting to use in the future: **bcachefs**
**ZFSBootMenu** is pretty cool.
Also for bootloaders systemd-boot is ok and let GRUB die already, it's legacy software.
This is probably one of the most set in stone software opinion I have.
umm, yeah not sure what else to write in Software section.
# Work in progress LMAO. Come back later or something

View file

@ -28,17 +28,14 @@ Depends on the season, no?
***
Personal TODO: I know stuff is a bit hard to read being same color, I want to pimp up the styles of header elements and such so pages look less bland
<small> now what?
<br />hm.. how about this? </small>
## Some other pages yay
<div class="link-btn-group">
<a class="button" href="/things-i-do/">Some stuffs I do on the interwebs!</a>
<a class="button" href="/hardware-software/">Things about my computers - bip bup</a>
</div>
[Some stuffs I do on the interwebs!](/things-i-do/)
[How I computers - bip bup](/hardware-software/)
Anyway

View file

@ -1,15 +0,0 @@
.link-btn-group .button {
border-radius: 5px;
background-color: var(--dark_grey);
color: var(--fg);
padding: 7px 16px;
margin: 4px;
text-align: center;
text-decoration: none;
cursor: pointer;
display: block;
}
.link-btn-group .button:hover {
background-color: var(--bg_grey);
}