ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

157 results

AM Channel
Repository Pattern in Golang: Step-by-Step Tutorial (Demystified!)

Struggling with the Repository Pattern in Golang? You're not alone! In this video, I break down the Repository Pattern into simple, ...

6:38
Repository Pattern in Golang: Step-by-Step Tutorial (Demystified!)

461 views

8 months ago

Mustafa Özyurt
Abstracting the Database in Go with Interfaces #golang #cleancode #backend

We touch on the repository pattern, interface-driven design, and why this kind of abstraction makes your code more flexible and ...

2:59
Abstracting the Database in Go with Interfaces #golang #cleancode #backend

485 views

6 months ago

samvcodes
How I Structure Full-Stack Golang Web-Apps with a Monorepo!?

In this video, I go over my monorepo of Full Stack Golang Webs. Specifically, I talk about how I've structured the code base with ...

7:54
How I Structure Full-Stack Golang Web-Apps with a Monorepo!?

4,801 views

8 months ago

Mario Carrion
Software Architecture in Golang: Extensibility

Welcome to another Software Architecture in Go/Golang video, in this video I cover Extensibility with a practical example using ...

9:20
Software Architecture in Golang: Extensibility

2,036 views

10 months ago

Muslim Helalee
Go REST API for Beginners - Todo App with Gin, PostgreSQL & JWT Auth

... todos ✓ PostgreSQL database integration ✓ Clean repository pattern Tech Stack: - Go + Gin Framework - PostgreSQL - JWT ...

7:40:33
Go REST API for Beginners - Todo App with Gin, PostgreSQL & JWT Auth

826 views

2 weeks ago

Mustafa Özyurt
[Task Series - 2] #GoLang Task Manager Project:  Service & Repo Layers Explained #golang #cleancode

In this video, I refactored the Tasks app to follow a cleaner project structure using service and repository layers inside the domain ...

13:15
[Task Series - 2] #GoLang Task Manager Project: Service & Repo Layers Explained #golang #cleancode

98 views

6 months ago

Coding with Patrik
Complete REST API in Go – Build an Event App (GIn, JWT, SQL, Swagger)

Build a complete REST API for an event management app in Go using Gin and SQL! This tutorial walks you through setting up the ...

2:02:41
Complete REST API in Go – Build an Event App (GIn, JWT, SQL, Swagger)

38,625 views

9 months ago

The Coding Gopher
99% of Developers Don't Get RPCs

Inquiries: thecodinggopher@gmail.com ‍ Learn to build Git, Docker, Redis, HTTP ...

9:20
99% of Developers Don't Get RPCs

91,188 views

8 months ago

Mustafa Özyurt
[Task Series – 8] – Service & Repo Refactor for Cleaner Go Code (Task Project)

In this episode, we clean up the codebase and introduce dedicated service and repository layers to better organize our Go project.

10:44
[Task Series – 8] – Service & Repo Refactor for Cleaner Go Code (Task Project)

155 views

5 months ago

Mustafa Özyurt
[Task Series - 3] #GoLang Task Manager Project: Index for Owner & Move Update to Repository

Welcome to Episode 3 of the GoLang Task Manager Project! In this episode, we: ✓ Added an index on the owner field for better ...

11:05
[Task Series - 3] #GoLang Task Manager Project: Index for Owner & Move Update to Repository

54 views

5 months ago

vlogize
Handling Conditional Repositories in Golang for MySQL and MongoDB

Learn how to manage conditional repositories in Golang to seamlessly switch between MySQL and MongoDB databases while ...

2:02
Handling Conditional Repositories in Golang for MySQL and MongoDB

6 views

10 months ago

Dhruv Shah
⚡ GoLang QR Code Generator Explained (Part 1) | Factory Pattern + Clean Architecture

Welcome to Part 1 of our GoLang Project Series! In this video, we break down a complete GoLang project step by step! ⚡ You will ...

29:03
⚡ GoLang QR Code Generator Explained (Part 1) | Factory Pattern + Clean Architecture

21 views

Streamed 3 months ago

Coding Hub
🔥 Rust Programming: The Hardest Learning Curve in Coding? 🚀#technology#programming #coding#code

Rust is known for being one of the toughest programming languages to master. But why? In this video, we break down Rust's ...

0:52
🔥 Rust Programming: The Hardest Learning Curve in Coding? 🚀#technology#programming #coding#code

277,818 views

8 months ago

Cesar Jimenez
Construye una API REST profesional en Golang con SQLite y Repository Pattern

En este video te enseño cómo construir una API REST en Golang lista para producción utilizando el Patrón Repository y una ...

1:26:18
Construye una API REST profesional en Golang con SQLite y Repository Pattern

866 views

3 months ago

ArjanCodes
Go vs Python: What Every Developer Should Know

Learn how to design great software in 7 steps: https://arjan.codes/designguide. Python is powerful but has its quirks—like imports ...

26:12
Go vs Python: What Every Developer Should Know

95,318 views

10 months ago

Conf42
Practical guide to testing Go services | Nikolay Kuznetsov | Conf42 Golang 2025

Read the abstract ➤ https://www.conf42.com/Golang_2025_Nikolay_Kuznetsov_testing_go_services Other sessions at this event ...

27:08
Practical guide to testing Go services | Nikolay Kuznetsov | Conf42 Golang 2025

127 views

5 months ago

The Linux Foundation
What we learned building a large Bazel repository

Over the years of building Uber's Go monorepo with Bazel, we accumulated many different wrappers and configurations, such as: ...

8:01
What we learned building a large Bazel repository

267 views

8 months ago

Kcode
Mastering Go Concurrency: Worker Pool with Channels & Sync.WaitGroup

SUBSCRIBE for more content like this : https://www.youtube.com/@kcode_tech?sub_confirmation=1 ------- Learn how to build ...

22:04
Mastering Go Concurrency: Worker Pool with Channels & Sync.WaitGroup

72 views

7 days ago

Sriniously
Part-2: Task Management App in Go (Repositories, Services, Handlers and OpenAPI contract)

https://github.com/sriniously/tasker https://github.com/sriniously/go-boilerplate Boilerplate at https://youtu.be/E4CSP_KixPM This is ...

1:32:20
Part-2: Task Management App in Go (Repositories, Services, Handlers and OpenAPI contract)

1,349 views

4 months ago

Sadie Mir | AI Tools + Agents
MCP vs RAG Explained in 60 Seconds (With a Dinner Analogy 🍝)

What's the difference between RAG and MCP — and why does it matter when building AI agents? In this 1-minute explainer, ...

1:02
MCP vs RAG Explained in 60 Seconds (With a Dinner Analogy 🍝)

81,254 views

6 months ago

Software Developer Diaries
Think Multi-Tenancy Is Easy? Think Again...

In this video, we're going to compare Multi-Tenant Applications with Single-Tenant Applications, as well as talk about their ...

14:59
Think Multi-Tenancy Is Easy? Think Again...

25,337 views

9 months ago

vlogize
How to Successfully Call an Interface Function in Go-Gin

Learn how to effectively call interface functions in Go-Gin by implementing the repository pattern with clear examples and ...

1:55
How to Successfully Call an Interface Function in Go-Gin

0 views

6 months ago

Code & Learn
Go 1.24 Upgrade & using the tool directive

This video will update our REST API project to use Go version 1.24. We will also use the new tool directive to install and use tools ...

3:18
Go 1.24 Upgrade & using the tool directive

1,214 views

9 months ago

Tiago
Complete Microservices course with Go and Kubernetes

... Architecture & Repository Pattern 01:52:12 Layered Architecture 02:00:14 Repository Pattern 02:23:42 Why Tilt and Kubernetes ...

3:07:57
Complete Microservices course with Go and Kubernetes

36,206 views

5 months ago

Belajar Coding
Golang Clean Architecture - 6. Entity & Repository

Dalam video ini, kita akan membahas dua komponen penting dalam Clean Architecture Golang, yaitu Entity dan Repository.

3:59
Golang Clean Architecture - 6. Entity & Repository

242 views

5 months ago