UE4- run projects using the command line

Special Thanks to The Frank–Ratchye STUDIO for Creative Inquiry at Carnegie Mellon University Right-click inside a folder or on your desktop, create a new text file Rename that text file to any name you’d like, but replace the “.txt” with...

Processing: Using VS Code

This tutorial is a simplified version of Tobiah Zarlez’s Processing plugin documentation. You first should download & install Visual Studio Code. During the installation, be sure to tick the box which says PATH. Next, download Processing. I extracted the...

Python: Classes

All types in Python are classes Classes define the structure and behavior of an object Class is determined when an object is created Class is fixed for the lifetime of the object Classes are defined with the “class” keyword followed by a name with...

Python: Objects

Talk = '' def create_greeting(greeting=None): global Talk Talk = greeting + ' fellow blogsters! ' return Talk create_greeting('Hello') Talk += 'How are we doing today?' def create_sign(greeting, decoration = "*"): line = decoration * len(greeting) # len(STRING) gets...

Python: Strings, Bytes, Lists, Dictionaries

Strings and Bytes Single and multi-line string quoting Adjacent string literal concatenation Universal newlines Escapes sequences for control characters Raw strings suppress the escaping mechanism Convert other types using str() Python 3 source encoding is in UTF-8...