Cozy News Corner for Week 48 – Your source for Open Source news

2025-11-30 10:11:21 - No Comments

The video discusses various open-source news, including KDE’s transition to Wayland as the default display server, the Pebble …

Read more →

FireCrawl: Efficient Web Crawling and Information Retrieval

2025-11-26 11:11:24 - No Comments

First we need to install some dependencies. sudo apt install -y postgresql git curl wget postgresql-15-cron Next we need to do a couple of small changes to the PostgreSQL configuration. sudo vi /etc/postgresql/15/main/postgresql.conf Small changes, enabling cron for PostgreSQL and also allowing cron to run in the firecrawl database. shared_preload_libraries = 'pg_cron' cron.database_name = 'firecrawl' […]

Read more →

Cozy News Corner for Week 47 – Your source for Open Source news

2025-11-23 19:11:24 - No Comments

Title: RustDesk Pulls Ahead of TeamViewer, AnyDesk with Wayland Multi-Scaled Display Support By: Sourav Rudra – It’s Foss https://itsfoss.com/news/rustdesk-multi-scaled-display-support/ Title: Blender 5.0 Released with HDR Support, Video Sequencer Overhaul, and ACES Workflows By: Sourav Rudra – It’s Foss https://itsfoss.com/news/blender-5-0-release/ Title: Enshittification of Arduino Begins? Qualcomm Starts Clamping Down By: Sourav Rudra – It’s Foss https://itsfoss.com/news/enshittification-of-arduino-begins/ […]

Read more →

How I Configure MySQL InnoDB Cluster from Scratch

2025-11-17 11:11:20 - No Comments

First we need to install some dependencies. sudo apt update sudo apt -y install wget lsb-release gnupg Next we will download and configure repositories from mysql. sudo apt-key adv –recv-keys –keyserver ha.pool.sks-keyservers.net 5072E1F5 wget https://repo.mysql.com/apt/ubuntu/pool/mysql-apt-config/m/mysql-apt-config/mysql-apt-config_0.8.36-1_all.deb sudo dpkg -i mysql-apt-config_0.8.36-1_all.deb On the MySQL servers we will install the server application and shell. sudo apt update sudo […]

Read more →

Cosy News Corner for Week 46 – Your source for Open Source news

2025-11-16 17:11:21 - No Comments

Title: Debian Mandates Rust for APT, Reshaping Ubuntu and Other Linux Distros By: Steven J. Vaughan-Nichols – TheNewstack https://thenewstack.io/debian-mandates-rust-for-apt-reshaping-ubuntu-and-other-linux-distros/ The Complexity of Simplicity Keynote given at TalosCon by Oxide Co-Founder and CTO Bryan Cantrill in Amsterdam on October 17, 2025. "He went into Rust pretty skeptical honestly and it came back realizing that there were […]

Read more →

How I Built a Self-Updating YouTube Media Kit

2025-11-10 11:11:12 - No Comments

The video explains how to create a self-contained HTML media kit using the YouTube API, covering how to fetch channel and …

Read more →

Setting Up a Fast, Self-Hosted Search Engine – Meilisearch

2025-11-03 11:11:12 - No Comments

Dependencies and building meilisearch First we need to setup some dependencies and install rust. sudo apt install git curl curl –proto '=https' –tlsv1.2 -sSf https://sh.rustup.rs | sh Downloading and compiling the large executable for meiliesearch. This can take up to 30 minutes. git clone https://github.com/meilisearch/meilisearch.git cd meilisearch cargo build –release sudo cp target/release/meilisearch /usr/local/bin/ Setup […]

Read more →

Installing SearXNG from Scratch on Debian

2025-10-23 10:10:29 - No Comments

First we ensure that our system is up to date. sudo apt update sudo apt upgrade Next we will install a couple of required packages to create the python environment, read html, xml and communicate with the internet. sudo -H apt-get install -y python3-dev python3-babel python3-venv python-is-python3 uwsgi uwsgi-plugin-python3 git build-essential libxslt-dev zlib1g-dev libffi-dev libssl-dev […]

Read more →

Building a Self-Hosted LLM Chat System Overview

2025-10-13 10:10:14 - No Comments

This video explores how to set up and run LibreChat, a locally hosted, multi-component LLM interface integrating tools like Olama, …

Read more →

Expanding My Ceph Cluster with a New Storage Node

2025-10-06 10:10:14 - No Comments

The video documents the installation of new hardware for a node in the creator’s SE cluster, detailing challenges with sourcing a …

Read more →

How I Configure Cloud-Init for Fast VM Startup

2025-09-29 10:09:14 - No Comments

This video explains how to use Cloud-Init with Debian cloud images to automate VM initialization, covering image preparation, …

Read more →

Fast Setup of an Open-Source Search Engine

2025-09-22 10:09:14 - No Comments

This video explores Marginalia, an open-source search engine built as an alternative to commercial platforms, showing how to …

Read more →