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…

notes for jenkins-agent using ssh
This is my note for add jenkins-agent using ssh Create new node at jenkins dashboard and setting directory for root directory file for storing your deployment Choose…

The differences between on-premises, IaaS, PaaS, and FaaS
The terms “on-premises,” “IaaS” (Infrastructure as a Service), “PaaS” (Platform as a Service), and “FaaS” (Functions as a Service) refer to different deployment and service models in…
China’s Little Giant
Merics Report Nice topic how china success to fosters their Little Giant Companies The MERICS Report titled “Accelerator State: How China fosters ‘Little Giant’ companies” provides an…
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’) {…