Add heroicons in nextjs
Install library npm install @heroicons/react Howto use import { BeakerIcon } from ‘@heroicons/react/24/solid’ function MyComponent() { return ( <div> <BeakerIcon className=”h-6 w-6 text-blue-500″ /> <p>…</p> </div> )…

MQTT, CoAP, HTTP, and AMQP Comparison
Feature MQTT CoAP HTTP AMQP Security – Supports security through TLS/SSL – Designed for devices with limited resources, focuses on efficiency – Security can be implemented with…
Jenkins pipeline running docker
pipeline { agent { label ‘server_61’ } stages { stage(‘Checkout’) { steps { checkout scmGit(branches: [[name: ‘*/master’]], extensions: [], userRemoteConfigs: [[url: ‘[email protected]:github.git/’]]) } } stage(‘Down Docker’) {…
Running github action runner run.sh as services in ubuntu
# create file runner-services.sh #!/bin/bash # Your script commands her /home/username/actions-runner/run.sh # create file service at /etc/systemd/services/action-runner.service [Unit] Description=action-runner [Service] ExecStart=/home/username/actions-runner/runner-services.sh Restart=on-failure User=username -> adjust with your…
Enable tuneling at proxmox lxc
Noted for me adding tuneling at proxmox lxc. Open proxmox host shell and open /etc/pve/lxcnumber/lxc.conf (/etc/pve/100/100.conf) and then add this lxc.cgroup2.devices.allow: c 10:200 rwm lxc.mount.entry: /dev/net dev/net…

Belajar Kubernetes dengan k3s bagian 1
Catatan belajar kubernetes dengan k3s, semoga bermanfaat juga buat yang lain langkah pertama instalasi, saya menggunakan ubuntu server sebagai host dokumentasi k3s silahkan baca disini Langkah langkah…