Add heroicons in nextjs

Install library Related: howto install fortinet client on ubuntu 22.04. Related: How to Install OpenClaw on Ubuntu Server: A Step-by-Step Guide. 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

mqtt

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 TLS/SSL – Provides comprehensive security mechanisms through the AMQP framework Economics – Low bandwidth and resource consumption – Efficient for devices with limited resources – Requires more resources … Read more

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’) { steps { script { sh ‘docker-compose down’ } } } stage(‘Remove Image’) { steps { script { // Check if the Docker image exists and remove it if … Read more

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 username Group=username -> adjust with your username [Install] WantedBy=multi-user.target Related: One Markdown File Made My AI Agent 23 Points Smarter. Related: How I Built a $0/Month Blog Stack … Read more

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 none bind,create=dir and then chown 100000:100000 /dev/net/tun after that reboot the container and voila success if problem still occure change dns setting add 1.1.1.1 to the dns server … Read more

Belajar Kubernetes dengan k3s bagian 1

Susiloharjo

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 installasi k3s curl -sfL https://get.k3s.io | sh – lalu copykan config k3s ke kubectl dengan command sudo cp /etc/rancher/k3s/k3s.yaml ~/.kube/config Setelah itu pastikan node berjalan dengan mengetikkan kubectl … Read more