diff --git a/_posts/2021-08-03-rpi-hdmi.md b/_posts/2021-08-03-rpi-hdmi.md
index c1c7490..93f5675 100644
--- a/_posts/2021-08-03-rpi-hdmi.md
+++ b/_posts/2021-08-03-rpi-hdmi.md
@@ -1,5 +1,5 @@
---
-title: Adjust HDMI Signal
+title: Adjust Raspberry Pi HDMI Signal
author: JAlcocerT
date: 2021-08-03 00:34:00 +0800
categories: [RPi Setup]
@@ -12,6 +12,8 @@ Try connecting through SSH or to a smaller display, then:
While connecting your RPi to some displays, you might get no signal to display the desktop.
+## How to Fix no HDMI Signal?
+
Try connecting through SSH or to a smaller display, then:
```sh
@@ -32,4 +34,4 @@ And uncomment the line with: =1
> Then save the file by pressing: CTRL+O and exit with: CTRL+X
-{: .prompt-info }
+{: .prompt-info }
\ No newline at end of file
diff --git a/_posts/2022-07-25-selfhosting-with-docker.md b/_posts/2022-07-25-selfhosting-with-docker.md
index 558a9c5..40a3c16 100644
--- a/_posts/2022-07-25-selfhosting-with-docker.md
+++ b/_posts/2022-07-25-selfhosting-with-docker.md
@@ -3,7 +3,7 @@ title: Raspberry Pi - Self-Hosting anything with Docker
author: JAlcocerT
date: 2022-07-25 14:10:00 +0800
categories: [RPi Setup]
-tags: [Self-Hosting, Docker]
+tags: [Self-Hosting, Docker, RPi 101]
render_with_liquid: false
---
diff --git a/_posts/2022-08-10-youtube-video-download.md b/_posts/2022-08-10-youtube-video-download.md
new file mode 100644
index 0000000..62914f3
--- /dev/null
+++ b/_posts/2022-08-10-youtube-video-download.md
@@ -0,0 +1,78 @@
+---
+title: Youtube Alternatives
+author: JAlcocerT
+date: 2022-08-10 14:10:00 +0800
+categories: [Make your Raspberry Useful]
+tags: [Self-Hosting,Docker]
+render_with_liquid: false
+---
+
+So you have your Raspberry Pi [ready to SelfHost with Docker](https://jalcocert.github.io/RPi/posts/selfhosting-with-docker/) and you are looking for some YT alternatives.
+
+Here you have few of them - Get your RPi's to work!
+
+## Youtube-DL Material
+
+It will allow you to Download YT Videos / Music - Even to Subscribe to your favourite Channels without a Google account..
+
+```sh
+#curl -L https://github.com/Tzahi12345/YoutubeDL-Material/releases/latest/download/docker-compose.yml -o docker-compose.yml
+```
+
+```yml
+version: "2"
+services:
+ ytdl_material:
+ environment:
+ ytdl_mongodb_connection_string: 'mongodb://ytdl-mongo-db:27017'
+ ytdl_use_local_db: 'false'
+ write_ytdl_config: 'true'
+ restart: always
+ depends_on:
+ - ytdl-mongo-db
+ volumes:
+ - ./appdata:/app/appdata
+ - ./audio:/app/audio
+ - ./video:/app/video
+ - ./subscriptions:/app/subscriptions
+ - ./users:/app/users
+ ports:
+ - "8998:17442"
+ image: tzahi12345/youtubedl-material:latest
+ ytdl-mongo-db:
+ # If you are using a Raspberry Pi, use mongo:4.4.18
+ image: mongo:4
+ logging:
+ driver: "none"
+ container_name: mongo-db
+ restart: always
+ volumes:
+ - ./db/:/data/db
+```
+
+After deployment - just visit: http://localhost:8998.
+
+if you want to get to know more about the project:
+
+## Piped
+
+Another front end for Youtube:
+
+```sh
+git clone https://github.com/TeamPiped/Piped-Docker
+cd Piped-Docker
+
+./configure-instance.sh
+
+docker compose up -d
+```
+
+
+The project:
+
+
+## FAQ
+
+### How to use RSS to subscribe to YT channels?
+
+
\ No newline at end of file
diff --git a/_posts/2022-09-01-selfhosting-nextcloud.md b/_posts/2022-09-01-selfhosting-nextcloud.md
index 7f8882c..88e42e5 100644
--- a/_posts/2022-09-01-selfhosting-nextcloud.md
+++ b/_posts/2022-09-01-selfhosting-nextcloud.md
@@ -2,7 +2,7 @@
title: Raspberry Pi as your Cloud Storage - with Nextcloud & Docker
author: JAlcocerT
date: 2022-09-01 14:10:00 +0800
-categories: [RPi Setup]
+categories: [Make your Raspberry Useful]
tags: [Self-Hosting, Docker]
render_with_liquid: false
---
diff --git a/_posts/2024-01-04-rpi-ansible.md b/_posts/2024-01-04-rpi-ansible.md
index b0bc5b9..a49571b 100644
--- a/_posts/2024-01-04-rpi-ansible.md
+++ b/_posts/2024-01-04-rpi-ansible.md
@@ -3,7 +3,7 @@ title: IoT Projects with Ansible and Raspberry Pi
author: JAlcocerT
date: 2024-01-04 00:34:00 +0800
categories: [IoT & Data Analytics]
-tags: [Self-Hosting]
+tags: [Self-Hosting, Docker]
---
So you have a Raspberry Pi and want to get started with IoT Project.
diff --git a/_posts/2024-12-01-ollama-raspberry-pi.md b/_posts/2024-12-01-ollama-raspberry-pi.md
new file mode 100644
index 0000000..618d87d
--- /dev/null
+++ b/_posts/2024-12-01-ollama-raspberry-pi.md
@@ -0,0 +1,11 @@
+---
+title: Ollama with Raspberry Pi
+author: JAlcocerT
+date: 2024-12-04 00:34:00 +0800
+categories: [IoT & Data Analytics, AI]
+tags: [Self-Hosting, Docker]
+---
+
+---
+
+## FAQ
\ No newline at end of file