Published Articles

lesson

The Basics: Size & Shapes

To start working with processing, you need to be familiar with the basics: Size & Shapes. They constitute the building block to working with processing. Processing is all about commands (lines of code that tell the computer what to do). 1. Size T Read more...

lesson

Setting Up Processing

Are you ready to embark on an exciting journey where art, technology, and imagination converge? It all starts by downloading the processing software. 1. Downloading Processing To download processing, access the link https://processing.org/download/ a Read more...

subject

Unveiling the Power of Processing 4: A Dynamic Introduction

Processing is an open-source programming language and creative platform extensively used for crafting visual arts, animations, interactive graphics, and multimedia applications. Initially created by Ben Fry and Casey Reas at the MIT Media Lab, Proces Read more...

lesson

What Is Programming?

It’s easy for a computer to perform a task because someone told it exactly what to do. If the programmer (that same person) told the computer to go back to a new line every time the cursor of your Word document reaches the right end of the page Read more...

lesson

Arithmetic Operators in Java

One category of operators is arithmetic operators. They are used to perform a simple arithmetic operation on primitive data types. There are 5 arithmetic operators in Java which are listed in Table 1. Arithmetic Symbol Arithmetic Operation Numerical Read more...

lesson

Java Escape Characters

In the previous lesson, you learned about the print() and println() methods. However, there may be some restrictions towards characters you might want to include in your output. For example, if you wanted to actually print double quotes you may use t Read more...