Coding ASMR Lo-Fi | word search puzzle generator + keyboard noises (Part 1)
This is a lo-fi ASMR coding video with typing noises and indoor speaking.
This is part 1 of a multi-part coding series where I attempt to code a word search program (text-based) in Java. In part 1, I define a Java class for the puzzle grid itself as well as an application class to run the program and creating an object to hold a puzzle. My goal is to generate a 20x20 grid of random letters and printing them on the screen. This involves me making a 2d arrays to store all the random letters
Note that the code you see is not the final version, where I will implement more code and fix errors to get a fully working word search with actual words hidden in them in subsequent parts.
I make typing noises as well as speak in a quiet room voice for ASMR triggers. I do not have a high tech mic unfortunately so I just use my built-in microphone on my device to start with.
Stay tuned for part 2!
[0:00] Intro
[0:55] creating a class for the puzzle itself (WordSearch)
[2:00] adding constructor for WordSearch
[8:38] toString() method to print the grid for an object of WordSearch
[12:40] creating an application class to run the program. making object of type WordSearch
[14:45] testing my program...
[16:33] End