🎨 ✨ improve stucture of garden & add some new info
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
fd962da973
commit
490ff87c95
10 changed files with 104 additions and 29 deletions
|
@ -3,25 +3,18 @@ title: 'Digital garden'
|
|||
description: '🪴 My personal digital garden. A wild garden, filled with drafts, ideas and more.'
|
||||
layout: "../../layouts/Layout.astro"
|
||||
---
|
||||
> 🌱 *Seedlings for very rough and early ideas.*
|
||||
🌿 *Budding for work I've cleaned up and clarified.*
|
||||
🌳 *Evergreen for work that is reasonably complete.*
|
||||
#### Different types of drafts / ideas
|
||||
|
||||
#### Machines
|
||||
- 🌱 *Seedlings for very rough and early ideas.*
|
||||
- 🌿 *Budding for work I've cleaned up and clarified.*
|
||||
- 🌳 *Evergreen for work that is reasonably complete.*
|
||||
|
||||
- [kanto 🌳](/garden/machines/kanto)
|
||||
#### Pages
|
||||
|
||||
#### Instructions
|
||||
[🗒️ **Instructions**](/garden/instructions)
|
||||
|
||||
- [Wireguard 🌱](/garden/instructions/wireguard)
|
||||
- [Linux 🌱](/garden/instructions/linux)
|
||||
- [Windows 🌱](/garden/instructions/windows)
|
||||
[ℹ️ **Lifehacks**](/garden/lifehacks)
|
||||
|
||||
#### Services
|
||||
[⚙️ **Machines**](/garden/machines)
|
||||
|
||||
- [sidBot 🌱](/garden/services/sidbot)
|
||||
- [sidsIgloo Minecraft Server 🌱](/garden/services/mc_server)
|
||||
|
||||
#### Random
|
||||
|
||||
- [Wii 🌱](/garden/wii)
|
||||
[🔧 **Services**](/garden/services)
|
10
src/pages/garden/instructions/index.md
Normal file
10
src/pages/garden/instructions/index.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: '🗒️ Instructions'
|
||||
description: ''
|
||||
layout: "../../../layouts/Layout.astro"
|
||||
---
|
||||
Instructions on different topics, like Wireguard and OS-related stuff for Linux and Window.
|
||||
|
||||
- [**Wireguard** 🌱](/garden/instructions/wireguard)
|
||||
- [**Linux** 🌱](/garden/instructions/linux)
|
||||
- [**Windows** 🌱](/garden/instructions/windows)
|
|
@ -10,11 +10,19 @@ layout: "../../../layouts/Layout.astro"
|
|||
|
||||
## ❓ Random
|
||||
|
||||
### Remove .DS_Store files
|
||||
#### Remove .DS_Store files
|
||||
|
||||
`find . -name ".DS_Store" -print -delete`
|
||||
|
||||
### Get & Send files/folders from/to Linux machine
|
||||
#### Fix clock on Arch after updates
|
||||
|
||||
`sudo systemctl restart systemd-timesyncd.servicekeyboard`
|
||||
|
||||
#### Fix keyboard layout on Arch after updates
|
||||
|
||||
`setxkbmap -layout no`
|
||||
|
||||
#### Get & Send files/folders from/to Linux machine
|
||||
|
||||
```
|
||||
Get files/folder from Linux machine:
|
||||
|
@ -24,8 +32,9 @@ Send files/folder to Linux machine:
|
|||
scp pepenarutorun.png sid@10.0.0.1:~/minecraft-old
|
||||
```
|
||||
|
||||
### How to Format USB using the Terminal (link)
|
||||
#### How to Format USB using the Terminal
|
||||
|
||||
```
|
||||
**Step 1: Locate USB Drive**
|
||||
|
||||
> Open the terminal and run the following command: ***df***
|
||||
|
@ -41,4 +50,5 @@ Locate the USB in the list and find the corresponding device.
|
|||
|
||||
**Step 3: Verify USB Drive Formatting**
|
||||
|
||||
> Confirm the formatting process has completed successfully: ***sudo fsck /dev/{NAME_OF_DEVICE}***. A USB drive with no files indicates successful formatting.
|
||||
> Confirm the formatting process has completed successfully: ***sudo fsck /dev/{NAME_OF_DEVICE}***. A USB drive with no files indicates successful formatting.
|
||||
```
|
9
src/pages/garden/lifehacks/cleaning.md
Normal file
9
src/pages/garden/lifehacks/cleaning.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: 'Cleaning'
|
||||
description: '🌱 ~ Very rough notes about cleaning-related stuff'
|
||||
layout: "../../../layouts/Layout.astro"
|
||||
---
|
||||
|
||||
### ♨️ Removing stains in microwave
|
||||
|
||||
Heat a bowl of water & vinegar for 5 minutes in the microwave. The steam will dissolve stuck on stains, so you simply wipe them off after.
|
9
src/pages/garden/lifehacks/clothing.md
Normal file
9
src/pages/garden/lifehacks/clothing.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: 'Clothing'
|
||||
description: '🌱 ~ Very rough notes about clothing-related stuff'
|
||||
layout: "../../../layouts/Layout.astro"
|
||||
---
|
||||
|
||||
### 🦨 Getting rid of bad smell
|
||||
|
||||
To remove bad smell from clothing, that for example have been laying to long in the washing machine, you could use clear vinegar (5-8%)! Simply fill a bucket up with 1 part vinegar for every five parts of water, then put your clothes in and let it sit overnight. Afterwards, wash the clothing as usual with detergent.
|
9
src/pages/garden/lifehacks/index.md
Normal file
9
src/pages/garden/lifehacks/index.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: 'ℹ️ Lifehacks'
|
||||
description: ''
|
||||
layout: "../../../layouts/Layout.astro"
|
||||
---
|
||||
Info about random stuff I'd like to remember!
|
||||
|
||||
- [**Cleaning** 🌱](/garden/lifehacks/cleaning)
|
||||
- [**Clothing** 🌱](/garden/lifehacks/clothing)
|
14
src/pages/garden/machines/index.md
Normal file
14
src/pages/garden/machines/index.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: '⚙️ Machines'
|
||||
description: ''
|
||||
layout: "../../../layouts/Layout.astro"
|
||||
---
|
||||
Info about different machines I've got, all from gaming consoles to homelab stuff.
|
||||
|
||||
#### Homelab
|
||||
|
||||
- [**kanto** 🌳](/garden/machines/kanto)
|
||||
|
||||
#### Consoles
|
||||
|
||||
- [**Nintendo Wii** 🌱](/garden/machines/wii)
|
21
src/pages/garden/machines/wii.md
Normal file
21
src/pages/garden/machines/wii.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: 'Help for Nintendo Wii'
|
||||
description: '🌱 ~ Notes to remember for my modded Wii'
|
||||
layout: "../../../layouts/Layout.astro"
|
||||
---
|
||||
|
||||
## 📝 Info
|
||||
|
||||
#### 🔗 Links
|
||||
|
||||
- [**Wii Hacks Guide**](https://wii.hacks.guide/)
|
||||
|
||||
## 🧠 Stuff to know
|
||||
|
||||
#### How to split files >4GB
|
||||
|
||||
...
|
||||
|
||||
#### How to get online-function in games
|
||||
|
||||
...
|
9
src/pages/garden/services/index.md
Normal file
9
src/pages/garden/services/index.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: '🔧 Services'
|
||||
description: ''
|
||||
layout: "../../../layouts/Layout.astro"
|
||||
---
|
||||
Info about different services I've got running on my homelab.
|
||||
|
||||
- [**sidBot** 🌱](/garden/services/sidbot)
|
||||
- [**sidsIgloo Minecraft Server** 🌱](/garden/services/mc_server)
|
|
@ -1,9 +0,0 @@
|
|||
---
|
||||
title: 'Help for Nintendo Wii'
|
||||
description: '🌱 ~ Notes to remember for my modded Wii'
|
||||
layout: "../../layouts/Layout.astro"
|
||||
---
|
||||
|
||||
## How to split files >4GB
|
||||
|
||||
## How to get online-function in games
|
Loading…
Reference in a new issue