- 70
- 291 676
Programming With Berns
Sweden
เข้าร่วมเมื่อ 8 ต.ค. 2011
Videos about programming and other random stuff.
OOP in C++ | Coffee Shop Simulator with Unit Testing in Catch2 | Coding and Testing the CoffeOrder
This video demonstrates the use of smart pointers in C++ and some of the std::vector methods to create the last object in the CoffeeShop Simulator program.
Watch the full playlist here
th-cam.com/play/PLFfEvAoWuPzv8a4ofix7VOy_GR5GC1-kO.html&si=X06YCAbLvL_BgDbo
Source code for this section:
github.com/programmingwithberns/coffee-shop-simulator/tree/437642aba8f9076cc17492ab20134d72a9b625df
Mastering Smart Pointers and std::vector in C++ | CoffeeShop Simulator Tutorial
smart pointers C++, std::vector methods, CoffeeShop Simulator, C++ programming, C++ smart pointers tutorial, C++ std::vector, smart pointers example, C++ coding, programming tutorial, CoffeeShop program, C++ development
Join the exclusive membership program
th-cam.com/channels/Q2erow5ReXvqbYp1JLlhmA.htmljoin
Follow or join me in any of the following media:
Website: www.blongho.com
Github: www.github.com/blongho
Discord: discord.gg/YWrSzRgyx4
Facebook Group: groups/programmingwithberns
Twitter: blongho
LinkedIn: www.linkedin.com/in/blongho/
Watch the full playlist here
th-cam.com/play/PLFfEvAoWuPzv8a4ofix7VOy_GR5GC1-kO.html&si=X06YCAbLvL_BgDbo
Source code for this section:
github.com/programmingwithberns/coffee-shop-simulator/tree/437642aba8f9076cc17492ab20134d72a9b625df
Mastering Smart Pointers and std::vector in C++ | CoffeeShop Simulator Tutorial
smart pointers C++, std::vector methods, CoffeeShop Simulator, C++ programming, C++ smart pointers tutorial, C++ std::vector, smart pointers example, C++ coding, programming tutorial, CoffeeShop program, C++ development
Join the exclusive membership program
th-cam.com/channels/Q2erow5ReXvqbYp1JLlhmA.htmljoin
Follow or join me in any of the following media:
Website: www.blongho.com
Github: www.github.com/blongho
Discord: discord.gg/YWrSzRgyx4
Facebook Group: groups/programmingwithberns
Twitter: blongho
LinkedIn: www.linkedin.com/in/blongho/
มุมมอง: 106
วีดีโอ
OOP in C++ | Coffee Shop Simulator with Unit Testing in Catch2 | Testing the Coffee Classes
มุมมอง 49หลายเดือนก่อน
This video demonstrates how we use inheritance in C to implement derived classes from a base class. This is part three of our Coffee Shop Simulator program. Watch part 1 here: th-cam.com/video/fcyKZbX0egg/w-d-xo.html Watch part 2 here: th-cam.com/video/lb4l6KT7zcw/w-d-xo.html Watch the full playlist here: th-cam.com/video/fcyKZbX0egg/w-d-xo.html&list=PLFfEvAoWuPzv8a4ofix7VOy_GR5GC1-kO Chapters ...
OOP in C++ | Coffee Shop Simulator with Unit Testing in Catch2 | Creating the Coffee Class
มุมมอง 168หลายเดือนก่อน
This video builds upon the design of the Coffee Shop Simulator program. This video covers the creation of the Base Class (Coffee). Watch the project description here th-cam.com/video/fcyKZbX0egg/w-d-xo.html Chapters 00:07 Test Cases 00:25 Compiling Failed Tests 00:31 Brief explanation of Catch2 01:00 Principles of TDD 01:25 Creating the Coffee Class Coffee Shop App Development with C and TDD: A...
OOP in C++ | Coffee Shop Simulator with Unit Testing in Catch2 | Project description
มุมมอง 193หลายเดือนก่อน
This video introduces the program description for a coffee shop simulator. Summarily, there is a coffee shop that sells coffee in different sizes: small, medium and large which have volume and cost. From this description, there is a conceptual design with associated UML which can be used to code the project in any programming language. Chapters 00:22 Project Description 02:14 Object-oriented an...
Programming With Berns - Demystifying the Art of Coding through real-world practice-based learning
มุมมอง 302 หลายเดือนก่อน
This channel is dedicated to helping you elevate your programming skills through real-world, project-based learning. Whether you are just beginning your coding journey or are an experienced developer seeking new challenges, you will find valuable guidance here to build meaningful applications. With over a decade of experience in programming, my mission is to make coding accessible, practical, a...
Master Test-Driven Development (TDD) in C++ using Catch2| Step-by-Step Tutorial for Beginners
มุมมอง 2432 หลายเดือนก่อน
Unlock the power of Test-Driven Development (TDD) in C with this comprehensive step-by-step tutorial. Learn the art of writing failing tests, implementing code to pass them, and refactoring for cleaner, more efficient designs. What you’ll learn: - How to set up your TDD environment using Visual Studio Code - Writing your first test with the Catch2 (github.com/catchorg/Catch2) framework - Debugg...
How to Use CMake for C++ with GCC and Visual Studio Code | Build Your First C++ Project with CMake
มุมมอง 8642 หลายเดือนก่อน
This beginner-friendly tutorial walks you through setting up a simple C project with CMake, from creating your project structure to compiling and running your code. Learn how to configure CMakeLists.txt, build your project, and expand it as you grow. Perfect for beginners looking to simplify their C development workflow. 🔗 Chapters: 00:00 Introduction 00:42 Prerequisites 00:58 Install GCC & ver...
How to Calculate Sales Tax | Python Beginner Tutorial | Problem Solving in Python
มุมมอง 683 หลายเดือนก่อน
In this beginner-friendly Python tutorial, you will learn how to create a simple program that calculates the total cost of a laptop, including tax. I will walk through reading the price, applying a 10% tax, and printing the final total. This is a perfect exercise for those new to coding and looking to solve practical problems using Python. Watch now to boost your coding skills and see how easy ...
How to Handle User Input Errors in Python | Robust Utility Functions for Float and Integer Inputs
มุมมอง 273 หลายเดือนก่อน
Learn how to build error-free Python programs by creating robust utility functions to handle user input. In this video, we walk through creating reusable get_int and get_float functions, which validate input within a specified range and ensure proper data entry. Whether you're dealing with grades, user entries, or any type of numerical input, these utility functions will save you time and preve...
How to Get Valid User Input in Python - Function that always returns (gets) a valid input from user
มุมมอง 893 หลายเดือนก่อน
Do you want a reliable way to get user input in Python without errors? In this video, we’ll build a robust Python function that ensures valid integer input from users, handling common errors gracefully. Perfect for beginner and intermediate Python programmers, this step-by-step tutorial will improve your code’s reliability and efficiency. Learn how to handle exceptions and create a reusable uti...
How to calculate percentage increase - Python Beginner Tutorial - Problem Solving In Python
มุมมอง 673 หลายเดือนก่อน
Ever wondered how to calculate percentage increases in real-world scenarios? In this video, we use a simple example involving Bitcoin to demonstrate how to quickly and accurately compute percentage growth. Whether you're tracking investments or just want to improve your math skills, this tutorial will guide you step-by-step. Subscribe for more problem-solving techniques in programming and beyon...
How to calculate student grade average - Python Beginner Tutorial - Problem Solving in Python
มุมมอง 593 หลายเดือนก่อน
Learn how to calculate student grade averages step-by-step in this practical tutorial! In this video, we break down a real-world example involving three subjects-geometry, algebra, and physics-and show how to compute the average grade. Whether you're a student, teacher, or someone looking to sharpen your math skills, this guide will walk you through the process and even demonstrate how to write...
How to Swap Two Variables in Python - Easy Beginner Tutorial - Problem Solving in Python
มุมมอง 333 หลายเดือนก่อน
In this beginner-friendly tutorial, I’ll walk you through the steps to swap two variables in Python. Learn two simple methods to accomplish this task and solidify your understanding of variable assignment. Whether you are just starting with Python or need a quick refresher, this video is perfect for you. Topics Covered: Swapping two variables in Python Basic variable assignment and manipulation...
Programming With Berns - Terminal Essentials - Full Course
มุมมอง 4.6K4 หลายเดือนก่อน
Programming With Berns - Terminal Essentials - Full Course
How to Easily Find or Recover a WiFi Password at Any Home | Quick Tips
มุมมอง 894 หลายเดือนก่อน
How to Easily Find or Recover a WiFi Password at Any Home | Quick Tips
How to add Country Flags to your Android App - Step by Step to adding offline flags to your app
มุมมอง 397 หลายเดือนก่อน
How to add Country Flags to your Android App - Step by Step to adding offline flags to your app
Calculate Employee Salary & Bonus - Part 8 - Exception Handling in Python
มุมมอง 1128 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 8 - Exception Handling in Python
Calculate Employee Salary & Bonus - Part 7 - Handling the outlier conditions with if-else statement
มุมมอง 298 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 7 - Handling the outlier conditions with if-else statement
Calculate Employee Salary & Bonus - Part 5 - Printing information about the bonus
มุมมอง 118 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 5 - Printing information about the bonus
Calculate Employee Salary & Bonus - Part 6 - Handling the outlier conditions
มุมมอง 248 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 6 - Handling the outlier conditions
Calculate Employee Salary & Bonus - Part 4 - Bonus Calculation
มุมมอง 198 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 4 - Bonus Calculation
Calculate Employee Salary & Bonus - Part 3 - Get Hours Worked
มุมมอง 418 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 3 - Get Hours Worked
Calculate Employee Salary & Bonus - Part 2 - File Setup
มุมมอง 448 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 2 - File Setup
Calculate Employee Salary & Bonus - Part 1- The problem and manual simulation
มุมมอง 988 หลายเดือนก่อน
Calculate Employee Salary & Bonus - Part 1- The problem and manual simulation
Conquer the Linux Command Line: Top 10 Linux Commands for Developers
มุมมอง 3310 หลายเดือนก่อน
Conquer the Linux Command Line: Top 10 Linux Commands for Developers
How to choose your field of study or profession within IT.
มุมมอง 3510 หลายเดือนก่อน
How to choose your field of study or profession within IT.
Full Stack Developer: The Mastermind Behind the Website (Everything You Need to Know!)
มุมมอง 4011 หลายเดือนก่อน
Full Stack Developer: The Mastermind Behind the Website (Everything You Need to Know!)
2025 I’m still watching
Great
Mine is saying I am an enable to do that
What do you mean?
The best that ever liveth, from the menchum. I'm not from there but I've lived there for many years and know what I'm saying
For beginners, it would be better to show some discrete code for getting a float, rather than using some obscure library. I can't approve your post on this basis.
Interesting. Thanks boss
Thanks. Please share with others
Thank you For this.
My pleasure!
Thank you for the video.
Thanks for watching!
Thanks for the update
Any time!
Thank you for the information
excellent
Thank you! Cheers!
video this so helpful
Glad you think so!
Now write a sensible function to handle the common code
Hi @mikekerry7989, Thanks for watch. This is a robust utility function that can be used to get user inputs. Watch and let me know your thoughts. th-cam.com/video/g9AtIWVbJYI/w-d-xo.html
Rip legend 😢😢
Rip legend 😢
From mankon❤❤. Been looking for this song for sometime. Memories 😊😊😅😅😅
2024 ❤
Not from menchum but I love this song so much ❤
Not from menchum but I love this song so much ❤
Not from menchum but I love this song so much ❤
Not from menchum but I love this song so much ❤
Not from menchum but I love this song so much ❤
Interesting
Thanks. Do not forget to enrol for FREE courses.benorinetechnologies.com/event/excel-for-beginners/#rsvp-now
🎉🎉🎉😢😢😢🎉🎉🎉🎉🎉🎉🎉🇨🇲🇨🇲🇨🇲🇨🇲🇨🇲🍾🍾🍾💞💞💞💞🇨🇲🇨🇲🇨🇲🇨🇲🇨🇲🇨🇲🇨🇲💞💞💞💞💞💞💞💞💞💞
May his gentle soul continue to rest in the Lord 😢
2024 who's here 😢
Rip our legend😢😢😢
😢😢😢😢
Best of all the times
Nice song ❤️❤️❤️
Nice song ❤️❤️❤️
Great boss
Of course I want to learn how to code.
You are welcome to contact us at info@benorinetechnologies.com for more information on how to enrol
we proud of who we're. mechum one people one spirit one love .
Proud to be from Fungom sub division 6:59
Who is still listening in 2024?
Keep resting in peace sir. Proud Weh
Sxxxx
❤
Proud to be a Cameroonian Big Thanks
This music from the menchum is soo amazing
Proud Bafmengnian ❤❤❤
Proud Bafmengnian❤ ❤❤
Proud Bafmengnian❤❤ ❤
Best music
Great man 😥❤️❤️❤️
Rip
Rip
For more music th-cam.com/video/nbysw6J-H7E/w-d-xo.html
rip legend