Русский flag Русский Español flag Español

Gitlab-Ci

2026-01-15

Have you ever wondered how experienced programmers find bugs in someone else’s code just by looking at it? They look for patterns. They know that if user data goes straight into an SQL query — that’s bad. If a password is compared with a plain == instead of a secure function — that’s a risk.

But a person can’t review 100,000 lines of code without missing something. This is where SAST (Static Application Security Testing) comes in.

Read more
2025-11-14

A Simple Guide for Beginners: Jenkins → GitLab → GitHub → GitOps


Hello!
Are you just starting your DevOps journey or tired of hearing “and we use CI/CD” in interviews? Want to finally understand why code that works on your laptop fails on the server?

This article is your first step toward automation. And it will really be easy.
We’ll break everything down, without overloaded terms and with examples.


What is CI/CD (very simple)

CI/CD is when you press git push and everything else happens automatically.

Read more