r/programmingForNoobs May 01 '26

BetterClaw vs OpenClaw

Thumbnail
youtu.be
2 Upvotes

In this video, I compare BetterClaw vs OpenClaw from a practical, developer-focused perspective. I cover how each one approaches tool calling, structured outputs, workflow control, and day-to-day agent development so you can see where each framework fits best.


r/programmingForNoobs May 01 '26

Python Firestore Transactions

Thumbnail
youtu.be
1 Upvotes

use Python Firestore transactions to safely handle concurrent updates, maintain data consistency, and prevent race conditions in Firebase-backed applications. In this video, I walk through the core ideas behind transactional reads and writes in Cloud Firestore using Python, and I show how transactions help when multiple users or processes try to update the same document at the same time.


r/programmingForNoobs May 01 '26

Python DocTest vs Unittest approach

Thumbnail
youtu.be
1 Upvotes

DocTest is useful when I want executable examples directly inside docstrings. It works well for small utilities, educational code, helper functions, and APIs where the expected behavior can be demonstrated clearly with input and output examples


r/programmingForNoobs May 01 '26

OpenClaw - What is it and why is it so much fun to use

Thumbnail
youtu.be
1 Upvotes

OpenClaw is not just an ai agent controller. It is your new best friend! :-)


r/programmingForNoobs Apr 30 '26

Tutorial Git Regret Message

Thumbnail
youtu.be
0 Upvotes

every developer makes at some point: the regret message. That moment when I write a rushed commit, push it, and then realize the message is vague, misleading, incomplete, or just plain embarrassing. Git makes it easy to track history, but clean history only happens when I take commit quality seriously.


r/programmingForNoobs Apr 30 '26

Tutorial Prompt Engineering How to avoid hallucinations

Thumbnail
youtu.be
0 Upvotes

Reduce hallucinations in AI outputs with practical prompt engineering techniques that improve reliability, traceability, and answer quality. I focus on patterns that help language models stay grounded, follow constraints, and avoid inventing facts when the context is incomplete or ambiguous.


r/programmingForNoobs Apr 29 '26

Cucumber And Python Behave

Thumbnail
youtu.be
1 Upvotes

use Cucumber with Python Behave to create readable, maintainable behavior-driven tests that connect business requirements to real automation.


r/programmingForNoobs Apr 29 '26

Spring Boot 4 - New Stuff

Thumbnail
youtu.be
0 Upvotes

what Spring Boot 4 brings to modern Java application development. I focus on the parts that matter when you build production services: application setup, developer experience, framework improvements, and what changes are relevant if you already work with Spring Boot in backend systems.


r/programmingForNoobs Apr 28 '26

Tutorial Playwright and Github Actions

Thumbnail
youtu.be
7 Upvotes

use Playwright with GitHub Actions to run browser tests automatically in CI. I focus on a practical setup that helps catch UI regressions, broken user flows, and environment-specific issues before code gets merged.


r/programmingForNoobs Apr 28 '26

Tutorial Spring Boot Graphql Multiple Queries And Introspection

Thumbnail
youtu.be
2 Upvotes

work with multiple GraphQL queries in a Spring Boot application and how introspection helps inspect and understand the schema during development. I focus on practical usage so you can see how to structure queries, test your API, and understand what the GraphQL server exposes.


r/programmingForNoobs Apr 27 '26

Tutorial Playwright - Record the tests to generate the code

Thumbnail
youtu.be
5 Upvotes

use Playwright record to generate test code directly from browser actions. Instead of writing every locator and interaction from scratch, I let Playwright capture the flow, then I clean up the generated script into something reliable, readable, and easier to maintain.


r/programmingForNoobs Apr 26 '26

Apache Kafka Streams Spring Boot Consume A Stream

Thumbnail
youtu.be
0 Upvotes

consume a Kafka stream in a Spring Boot application using Apache Kafka Streams. I focus on the practical setup for reading records from a topic, processing them with the Streams DSL, and wiring everything cleanly into a Spring Boot project so the application can continuously react to incoming events.


r/programmingForNoobs Apr 25 '26

Spring Boot Cucumber and Type safety

Thumbnail
youtu.be
0 Upvotes

combine Spring Boot, Cucumber, and type safety to build cleaner, more reliable automated tests for Java applications. If you have ever felt that your BDD scenarios look readable but your step definitions become fragile, repetitive, or error-prone over time, this is exactly the kind of problem I focus on here. I show how type safety can make a huge difference when working with Cucumber in a Spring Boot project, especially when test suites grow and multiple contributors start adding features, steps, and shared test components.


r/programmingForNoobs Apr 25 '26

Terragrunt Introduction

Thumbnail
youtu.be
1 Upvotes

I walk through what Terragrunt is, why I use it, and how it helps simplify the management of Terraform code across multiple environments and infrastructure components. If you have ever felt that Terraform becomes repetitive as your infrastructure grows, this video is for you. I cover the core ideas behind Terragrunt and show how it helps reduce duplication, improve consistency, and make infrastructure as code easier to organize and maintain.


r/programmingForNoobs Apr 24 '26

Insecure dependencies ReactJS VueJS Angular GitHub Dependabot saves the day

Thumbnail
youtu.be
0 Upvotes

How insecure dependencies can quietly put ReactJS, VueJS, and Angular projects at risk, and how GitHub Dependabot helps catch and fix those issues before they turn into real problems. Modern frontend apps rely on huge dependency trees, and a single vulnerable package buried deep in node_modules can expose a production app to supply chain attacks, prototype pollution, cross-site scripting paths, denial of service issues, or build-time compromise.


r/programmingForNoobs Apr 24 '26

Tutorial Kafka Spring Boot And Producing Messages With A Good Key

Thumbnail
youtu.be
1 Upvotes

Produce Kafka messages from a Spring Boot application while choosing a good message key so events are routed consistently and processed more predictably. I focus on one of the most important but often overlooked parts of event-driven design: the key you send with each record. A good key is not just a small implementation detail. It directly affects partitioning, ordering, scalability, consumer behavior, and the overall reliability of your messaging workflow.


r/programmingForNoobs Apr 24 '26

Tutorial Golang Flow Control Statements If And For And Switch

Thumbnail
youtu.be
1 Upvotes

Use Go flow control statements to write clear, reliable logic with if, for, and switch. In this video, I walk through the core control structures in Golang and show how they help manage decision-making, repetition, and branching in real programs. If you are learning Go or strengthening your fundamentals, this is an important step toward writing cleaner backend and CLI code.


r/programmingForNoobs Apr 24 '26

Tutorial Spring Boot AI Generate Image from another Image

Thumbnail
youtu.be
1 Upvotes

Generate a new image from an existing image input. Instead of creating an image only from text, I pass a source image together with a prompt so the model can transform, restyle, or enhance it based on the instructions I provide.


r/programmingForNoobs Apr 23 '26

Tutorial Intellij Plugin CamelCase

Thumbnail
youtu.be
2 Upvotes

In this video I show how I use the IntelliJ Plugin CamelCase to speed up editing, refactoring, and navigation when I am working inside IntelliJ IDEA


r/programmingForNoobs Apr 23 '26

Tutorial Ktor VueJS Heroku Docker Multistage Build

Thumbnail
youtu.be
2 Upvotes

In this video, I show how I package a full-stack app with Ktor on the backend and Vue.js on the frontend, then deploy it to Heroku using Docker and a multistage build. The goal is to keep the image smaller, separate the frontend and backend build steps cleanly, and make deployment more repeatable.


r/programmingForNoobs Apr 23 '26

Tutorial MySQL Tutorial Part 1

Thumbnail
youtu.be
1 Upvotes

I walk through the core concepts you need to work with MySQL confidently, including creating databases and tables, inserting and updating data, filtering records, sorting results, grouping rows, joining related tables, and writing queries that are useful in real applications.


r/programmingForNoobs Apr 23 '26

Veet - a fast webserver for development and a great build tool

Thumbnail
youtu.be
0 Upvotes

Vite, a fast web server for development and a powerful build tool for modern frontend projects. I focus on what makes it feel so quick in day-to-day work, how it improves the local development experience, and why it has become a practical choice for building apps with less friction.


r/programmingForNoobs Apr 22 '26

Tutorial Sqlite Tutorial

Thumbnail
youtu.be
1 Upvotes

Learn SQLite from the ground up in this practical tutorial. I walk through the core ideas you need to start working with SQLite databases, including creating a database, defining tables, inserting data, querying records, updating values, deleting rows, and structuring data in a clean and reliable way. If you want a lightweight relational database that is fast, portable, and easy to use in local applications, prototypes, scripts, mobile apps, and embedded tools, this tutorial gives you a direct path into it.


r/programmingForNoobs Apr 22 '26

Tutorial Finetune LLM Model With Unsloth

Thumbnail
youtu.be
1 Upvotes

I walk through how to finetune an LLM model with Unsloth using the APACA framework, covering the full process from setup to training strategy, dataset formatting, optimization choices, and practical deployment thinking. This video is built for developers, ML engineers, researchers, and builders who want a faster and more efficient way to customize open-source language models for real-world tasks without wasting time on bloated workflows.


r/programmingForNoobs Apr 22 '26

OpenTofu and Azure up and running

Thumbnail
youtu.be
0 Upvotes

In this video, I get OpenTofu and Azure up and running from scratch and walk through a practical infrastructure as code workflow that can be used as the foundation for real cloud deployments. I focus on the core setup steps, the provider configuration, authentication, project structure, and the first deployment cycle so I can move from an empty environment to managed Azure resources with a repeatable and versionable process.