분류 전체보기 63

DjangoAPI_001_Docker Setup with GitHub and Docker Hub

Overview and Summary of StepsThis tutorial guides you through setting up a Django project for a REST API using Docker and Docker Compose, linking it to GitHub for version control, and pushing it to Docker Hub securely — all without needing Python Summary of Steps:Start a Project on GitHub: Create and clone a repository.Add Docker Hub Secrets in GitHub: Store Docker Hub credentials securely.Set U..

cpp_014: Exploring Different Types of For Loops in C++ — Range-Based and Reference-Based Loops

IntroductionIn one of the previous lessons (cpp_008: for Loops in C++), we covered the basics of for loops, including their syntax and common use cases. In this lesson, we’ll explore different types of for loops in C++, specifically focusing on range-based for loops and reference-based for loops. These loops provide cleaner, more efficient, and safer ways to iterate over collections like arrays,..

C++ Beginner 2025.03.01

cpp_013: Arrays vs. Vectors in C++ - Understanding the Differences with Examples

IntroductionIn C++, both arrays and vectors allow us to store multiple values in a structured format. However, they have fundamental differences in memory management, flexibility, and ease of use. This lesson will compare C++ arrays and vectors, highlight their key differences, and provide two example problems demonstrating when to use each.🔹 Comparing the Syntax of Arrays and VectorsHere, T is..

C++ Beginner 2025.02.26

Graph_Convolutional_Networks (GCN)_001 _ Understanding the GCN Formula Step by Step

IntroductionIn this post, we will break down the fundamental Graph Convolutional Network (GCN) formula with a simple example. We will walk through each component, including the adjacency matrix, degree matrix, normalization, and feature transformations. By the end of this lesson, you’ll have a clear understanding of the basic mathematical operations behind GCNs. In a Graph Convolutional Network ..

Deep Learning 2025.02.17