Urgent.News

650+ sources. One page. See who else covered it.

Editions

Tech

Frontend DevOps: mi mapa de recursos

Pasar de Frontend Engineer a DevOps Engineer implica aprender un montón de cosas nuevas: infraestructura, redes, contenedores, CI/CD, y una forma distinta de pensar los sistemas. En este post recopilo los links, cursos y artículos que más me ayudaron durante mi transición, organizados para que no tengas que perder tiempo buscando por tu cuenta como me pasó a mí. Links de recursos 🆓 Gratis 90…

Original Spanish Read in English

Transitions from a Frontend Engineer role to a DevOps Engineer position require acquiring a substantial amount of new knowledge, including infrastructure, networking, containers, CI/CD practices, and a different way of thinking about systems. This article compiles the links, courses, and articles that helped the most during my own transition, organized to save you time from searching on your own like I did.

Resources:

- Roxs YouTube channel (AWS Hero) with a 90-day DevOps course

- TechWorld with Nana Pelado

- The Cloud Resume Challenge

- DevOps Projects course

- Introduction to Linux course (LinuxFoundationX)

- AWS Builder Center

- AWS Skill Builder

- Michael Cade's 90 Days of DevOps course

- KodeKloud Academy Cloud Practitioner Course by Stéphane Maarek

- AWS Cloud Quest: Cloud Practitioner course

Communities:

- Join LATAM communities focused on Cloud and DevOps, especially those for women. These communities provide free or affordable courses shared by members, as well as people going through the same journey, offering support, sharing experiences, and learning together. This makes the process easier and more motivating compared to learning alone.

Communities in LATAM:

- AWS Girls UY meetup

- AWS Women In Cloud Buenos Aires meetup

- AWS User Group Montevideo

- AWS Women In Cloud Buenos Aires meetup

- Mujeres IT (Uruguay)

- Chicas En Tecnología (Argentina)

- AWS Women Colombia

- AWS Security Argentina

- AWS Girls User Group Chile

- AWS User Group Buenos Aires

- AWS Girls Perú

- AWS Security Users Group Latam

- Mujeres en Tech (Latam)

The author thanks the reader for their time and encourages them to continue learning, connecting, and sharing resources. They invite feedback and additional resources that were not included in the list.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

Writing the code is no longer the bottleneck

The industry's currently obsessed with how fast we can generate code. Every morning in our engineering general channel on Microsoft Teams, someone's posting a link to a new agent or a model that can…

  • Implementation of code is mostly solved with AI-generated scaffolding.
  • Evaluation of generated code becomes the most challenging bottleneck.
  • Robust testing frameworks needed to detect logical errors before production.

YOUTHTREND-Beyond the group chat

https://youthtrend-frontend.vercel.app https://youtu.be/aMLlWtQF9SI The Problem Cameroonian university life runs on scattered WhatsApp groups, Telegram channels, and email lists — no single source of…

  • YouthTrend is a national social network for Cameroonian students.
  • Features include unified feed, smart matchmaking, and cross-school networking.
  • Developed as a modular monolith with React, Node.js, PostgreSQL, and JWT.

The Matrix of Tree Traversals: Recursive vs Iterative Explained

The Quest Begins (The "Why") I still remember the first time I was asked to validate a binary search tree in an interview. My brain went into panic mode: “Do I write recursion?

  • Recursion in tree traversals follows a "visit left, node, right" pattern.
  • Iterative approach uses an explicit stack to mimic recursive call stack.
  • Iterative method avoids recursion depth limits and stack overflow issues.

Understand Pointers, simple and easy with Go

Lidar com ponteiros pela primeira vez assusta quem vem de linguagens como JavaScript, Python ou Java, onde a gestão de memória é automática Mas a ideia é mais simples do que parece.

  • Pointers are variables holding memory addresses of other variables, not their values.
  • In Go, pointers are declared using the & operator, e.g., &x for a variable x.

More from Saturday 15 August →