Noah11012

Noah11012 @noah11012

Joined:
Dec 15, 2017

Noah11012
articles - 38 total

Using SDL2: Events

Games by definition need the quality of being interactive in order to be considered one. A video game...

Learn More 8 0Aug 18 '20

String Internalization

Many modern interpreted programming languages like Python and Lua have a builti...

Learn More 9 0Feb 24 '19

C++ References

C++ is backward compatible with C so it inherited pointers. A quick recap if yo...

Learn More 25 6Feb 5 '19

Socket Programming in C: Communication Styles

Being there are multiple different types of sockets available for our use, we w...

Learn More 18 0Jan 26 '19

Small Patterns and Idioms in C

Patterns are constructs that programmers use to solve a general recurring probl...

Learn More 14 0Jan 20 '19

Socket Programming in C: What is a Socket?

This is the post that marks the beginning of this series. A journey, when arriv...

Learn More 12 0Jan 16 '19

Socket Programming in C: Introduction

Today I am announcing a new series that is underway. The series will teach sock...

Learn More 24 0Jan 15 '19

Reading and Writing Files in C: Part 5

Just as I promised, we will write and subsequently read back a C structure! One...

Learn More 15 0Jan 14 '19

Reading and Writing Files in C: Part 4

For the last three posts, we have only handled text and nothing more. But now w...

Learn More 14 1Jan 14 '19

Function Pointers in C

My last article was about a topic that most beginners found challenging when fi...

Learn More 35 0Jan 13 '19

Double Pointers in C/C++

One source of confusion among new C programmers is pointers. At first glance, t...

Learn More 81 15Jan 12 '19

Reading and Writing Files in C: Part 3

In the last section of the previous article, I promised that we would discuss s...

Learn More 12 0Jan 10 '19

Reading and Writing Files in C: Part 2

The last article in this series dealt with characters and using loops with fget...

Learn More 11 0Jan 7 '19

Reading and Writing Files in C

If you've ever used a higher level language's file I/O capabilities like that o...

Learn More 22 0Jan 6 '19

Using SDL2: Viewports

When rendering a scene or world not everything will be inside the boundaries of the window. Only a pa...

Learn More 15 0Jan 5 '19

Start using asserts!

I've seen people code the way they do because they didn't know an important det...

Learn More 9 0Dec 8 '18

Using SDL2: Drawing Rectangles

Along with the new 2D hardware accelerated API in SDL2, we can draw primitive shapes like rectangles....

Learn More 24 1Dec 7 '18

Using SDL2: Update for Pong

Sorry for not updating sooner. I was busy with several things including building my own PC, installin...

Learn More 3 0Dec 6 '18

Headers for Structs in C

What do I mean by "headers" in structures? It's the same notation in other prog...

Learn More 8 0Dec 2 '18

Arrays vs. Linked List

One of the first things you learn how to do in a programming language is how to...

Learn More 21 0Dec 1 '18

CLibs: A Package Manager for C

Many modern-day languages like Python and Rust have their own standard package ...

Learn More 7 18Nov 29 '18

Using SDL: Pong 4

Our game is almost done. We have our Ball on the screen and it moves. But, the motion of the ball is...

Learn More 8 0Nov 27 '18

Bitwise Operations in C/C++

Maybe you've stumbled across a perplexing and scary looking line of code: (...

Learn More 93 8Nov 24 '18

Using SDL2: Pong 3

For this post, we'll get the ball on the screen. First thing I did was to create a ball class called,...

Learn More 7 1Nov 24 '18

Iterators in C

Consider this article a companion piece to my article on containers: https://de...

Learn More 8 0Nov 21 '18

Using SDL2: Pong 2

Continuing from where we left off, the Paddle class was created to handle several aspects of a paddle...

Learn More 12 0Nov 19 '18

What I would like to see in containers for C

Unlike C++ which has a rich assortment of containers for basic and more demandi...

Learn More 10 2Nov 18 '18

SDL2 Update

Where have I been? It makes me glad when people enjoy my articles and it makes me frustrat...

Learn More 8 3Nov 16 '18

Using SDL2: Pong

We're going to jump straight in and make a Pong clone in SDL2 and C++. I've already created three fil...

Learn More 9 1Nov 9 '18

Using SDL2: 2D Accelerated Renderering

Psst! Do you want to know a way to get your SDL2 applications running faster? Sweet! Sounds awesome....

Learn More 25 2Nov 5 '18