Streamlining AWS CloudFormation with cfn-modules: A Time-Saving Solution

Are you tired of wrestling with lengthy YAML or JSON scripts every time you deploy an AWS CloudFormation stack? Enter cfn-modules, a game-changer that can revolutionize your CloudFormation workflow and save you valuable time. What is cfn-modules? Cfn-modules is a productivity powerhouse designed to accelerate your AWS CloudFormation experience. It acts as a library of pre-built, reusable templates for various AWS services, eliminating the need to start from scratch with every deployment....

<span title='2023-11-23 12:14:34 -0600 -0600'>November 23, 2023</span>&nbsp;·&nbsp;2 min&nbsp;·&nbsp;Ancordss

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

Ansible | creando Playbooks

Un playbook es un archivo donde se escribiran todas las tareas que quieres que se hagan con ansible es escrito en yml y es mas facil porque solo tendremos que ejecutarlo no tendremos que escribir cada comando y recordarlo. Primer paso crearemos una archivo llamado tareas.yml segundo paso escribiremos el siguiente codigo: --- - hosts: all name: creando un playbook become: true task: - name: instala vim apt: name=vim state=present - name: comando shell shell: echo hola - name: detiene servicio service: name=nginx state=stoppeda - name: start servicio service: name=nginx state=started – [En la variable hosts podemos especificar ip/dominio igual podemos colocar el nombre de los grupos a los que queremos que se les apliquen estos cambios]...

<span title='2022-05-05 15:45:55 +0000 UTC'>May 5, 2022</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;Ancordss

Iniciando con Ansible

para instalar ansible agrega el repositoria a ubuntu y luego correo sudo apt install ansible para que funcione bien tienes que tener un servidor al cual conectarte con ssh en mi caso estoy usando uno que cree con una maquin virtual comando para probar un ping ssh usuario@ip -p puerto en mi caso es ssh anco@192.168.1.8 -p 22 si todo sale bien ahora podras controlar el servidor desde tu maquina....

<span title='2022-05-04 16:57:32 +0000 UTC'>May 4, 2022</span>&nbsp;·&nbsp;2 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