Episodes
As promised, here is the second magic trick I’ve been talking about (credit to Jim Steinmeyer). Also, for now, unless there are further questions or requests, I am closing the podcast. I appreciate all the kindness and support from all over. Thank you!!!! 😊
Published 12/16/21
Published 12/16/21
In this episode, we round out the Java portion of this podcast (for now). I appreciate all of your support!
Published 12/09/21
In this episode, we introduce try-catch statements to help give you options for when your program encounters an error (so that it doesn’t just break!). Also, I make a correction to my improper formatting that I spoke about before.
Published 12/02/21
We take a look at the difference between binary and linear searches, when to use them, and the advantages and disadvantages of each.
Published 11/18/21
First podcast-only episode! We talk about selection and insertion sorts and how to use them in your programs.
Published 11/04/21
In this lesson, we talk about ArrayLists, a highly flexible way to handle collections of objects. We also wrap up our unit on arrays!
Published 10/28/21
In this episode, we dive into tables! (Or vectors/arrays in the second dimension!!!) and how to write and read these in Java.
Published 10/14/21
A brief explanation of how to have lists containing a certain type of object but which can be of variable length
Published 09/30/21
You know the String[] args thing? Yeah, we talk about what that is all about.
Published 09/23/21
(NOTE: See Twitter for the screen capture) In this episode, we introduce object-oriented class, object, and method programming. We talk about arrays of objects and also how to access characters using the Scanner object.
Published 09/09/21
Looking at how to use arrays to hold a collection of integers. Exploring how to access and change values.
Published 09/02/21
Do While Loop reminded me of doo-wop. I heard recently from someone that music and programming are connected fields. Continuing our discussion of loops in this episode with for loops. Note that all loop types can be nested.
Published 08/26/21
In this episode, we dive into how to read text files into your software application and how to program the processing of each line, separating out the contents by delimiters. Please note that the file must be in the same directory as your Java development environment.
Published 08/12/21
Introduction to the use of while loops to keep things going if a condition is met or to stop repeating if it’s not!
Published 08/05/21
Like having a remote control, you give your users the power to easily choose between a variety of options by implementing a switch statement in your Java class bodies of code.
Published 07/29/21
We wrap up our exposé of if statements for now with touching on how to fit more content in between the logic statements with the proper use of curly braces, and also how to fit if statements inside of if statements using the concept of nesting.
Published 07/22/21
Adding on an else statement to last week’s code. These help to account for other scenarios or options not covered by just a plain if statement. Like what if you order a grilled cheese but the restaurant is out of Texas Toast, what other options are there?
Published 07/15/21
We explore how to use if statements and the logic behind how they operate (in as simple terms as I can and with practical examples to make it easier).
Published 07/08/21
As planned, we are taking a break to do a fun mathematical magic trick. Try it out with your friends or family. Mathemagic!
Published 07/01/21
In this episode, we discuss how to use enumerated types in Java. We look at two different ways to access the name and how to use it to determine the ordinality of the elements. I believe this lesson is the last of the not-so-exciting numerical Java stuffs, so hopefully next week we can do something fun like a magic trick.
Published 06/24/21
In this episode, we tackle how to format the precision of decimals down to the exact, precise number of decimal places or digits after the decimal point.
Published 06/17/21
In this lesson, we learn how to print out money and percents formatted properly using Java.
Published 06/10/21
We go to the Math Class in Java and learn how to use the various operators to perform desired calculations.
Published 06/03/21
In this episode, we explore how to generate random integers and decimals using the Random class in Java.
Published 05/27/21