Docker Go-Kafka implementation

Prerequisites Before diving into Go and Kafka integration, ensure you have the following tools installed on your system: Go Docker Docker Compose Setting Up Kafka with Docker Compose To get started with Kafka, we’ll use Docker Compose to create a local Kafka environment. Below is a docker-compose.yml file that sets up Kafka with Zookeeper and Kafdrop for monitoring: yaml `version: '3' services: zookeeper: image: confluentinc/cp-zookeeper:7.3.2 container_name: zookeeper environment: ZOOKEEPER_CLIENT_PORT: 2181 ZOOKEEPER_TICK_TIME: 2000 broker: image: confluentinc/cp-kafka:7....

<span title='2023-10-09 16:52:34 -0600 -0600'>October 9, 2023</span>&nbsp;·&nbsp;4 min&nbsp;·&nbsp;Ancordss

Cli app schedule

Preview Install Clone the repository or download the package from here: https://github.com/Ancordss/CLI-HorarioAPP.git enter the folder open terminal and run this command -\.install.ps1 now run the following command - [x] Get-Variable Profile It will show something like this: go to the address shown in the terminal open the file ending with ##profile.ps1 copy and paste the following command at the end of the file - [x] Set-Alias h 'C:\schedule\schedule.exe' Close and open the terminal again to run the program place h and hit enter...

<span title='2022-08-06 01:24:33 +0000 UTC'>August 6, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Ancordss

Creating Hugo Website on Archlinux

this is the second page i make with hugo this is my blog and my website in this short post i will show you how to create a page with hugo in linux so let’s start Step 1 install Hugo - Pacman -Sy hugo Step 2 create a new site - hugo new site quickstart Step 3 Add a theme (you can go to themes.gohugo.io/ and search for one) cd quickstart git init git submodule add https://github....

<span title='2022-04-30 16:49:30 +0000 UTC'>April 30, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Ancordss