Compare commits
5 commits
2595b01cd1
...
37b76c7c0c
Author | SHA1 | Date | |
---|---|---|---|
37b76c7c0c | |||
7cc0788a31 | |||
8e17e5b3ef | |||
dc104a274e | |||
3061c4f491 |
6 changed files with 119 additions and 6 deletions
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
<title>{{ title }} - cheri.pink</title>
|
<title>{{ title }} - cheri.pink</title>
|
||||||
<link rel="stylesheet" href="/style.css">
|
<link rel="stylesheet" href="/style.css">
|
||||||
|
<link rel="stylesheet" href="/elements.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -29,6 +30,7 @@
|
||||||
<div class="nav-right">
|
<div class="nav-right">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/about/">about me</a></li>
|
<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="https://git.snug.moe/cheri">git</a></li>
|
||||||
<li><a href="/feed.rss">rss</a></li>
|
<li><a href="/feed.rss">rss</a></li>
|
||||||
<li><a href="/posts/">posts</a></li>
|
<li><a href="/posts/">posts</a></li>
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
<ul>
|
<ul>
|
||||||
{% for post in listposts %}
|
{% for post in listposts | reverse %}
|
||||||
<li>
|
<li>
|
||||||
<strong><a href="{{ post.url | url }}"> {{ post.data.title }}</a></strong>
|
<strong><a href="{{ post.url | url }}"> {{ post.data.title }}</a></strong>
|
||||||
-
|
-
|
||||||
<time datetime="{{ post.date | htmlDateString}}">{{ post.date | readableDate}}</time>
|
<time datetime="{{ post.date | htmlDateString}}">{{ post.date | readableDate}}</time>
|
||||||
|
<br><small>{{ post.data.description }}</small>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
24
src/contact.md
Normal file
24
src/contact.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
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
|
|
@ -1,7 +1,75 @@
|
||||||
---
|
---
|
||||||
title: How I computers - bip bup
|
title: How I computers - bip bup
|
||||||
description: Some of the hardware and software I use. How I compute.
|
description: Some of the hardware and software I use
|
||||||
layout: base.njk
|
layout: base.njk
|
||||||
---
|
---
|
||||||
|
|
||||||
# Work in progress LMAO. Come back later or something
|
# 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.
|
|
@ -28,14 +28,17 @@ 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?
|
<small> now what?
|
||||||
<br />hm.. how about this? </small>
|
<br />hm.. how about this? </small>
|
||||||
|
|
||||||
## Some other pages yay
|
## Some other pages yay
|
||||||
|
|
||||||
[Some stuffs I do on the interwebs!](/things-i-do/)
|
<div class="link-btn-group">
|
||||||
|
<a class="button" href="/things-i-do/">Some stuffs I do on the interwebs!</a>
|
||||||
[How I computers - bip bup](/hardware-software/)
|
<a class="button" href="/hardware-software/">Things about my computers - bip bup</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
Anyway
|
Anyway
|
||||||
|
|
||||||
|
|
15
src/resources/elements.css
Normal file
15
src/resources/elements.css
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
.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);
|
||||||
|
}
|
Loading…
Reference in a new issue