
Hunter Henrichsen
He/Him. CodingCoach mentor. Software Engineer. I like to write, whether that's code, fiction, or somewhere in between.
Education
B.S. in Computer Science (with Minors in English and Math)
Work
Software Engineer at Lucid Software
Recent comments
[Python] Find the Largest Number From a Array.
numbers = [1, 3, 4, 2] print(max(numbers)) Enter full...
5 Lessons from Writing a Compiler
It was called CS5300 at Utah State University; the course was...
Java didn't update?
You can run echo %JAVA_HOME% to check the variable. I normall...
Java didn't update?
I'd check where your JAVA_HOME path variable points, as well ...
Functional Programming in JavaScript
The currentSum is meant to be the accumulator, so I think the...
Functional Programming in JavaScript
We could, but for someone who is not familiar with functional...
Functional Programming in JavaScript
I started with Java, and definitely experienced that. I heard...
Explain Async/Await Like I'm Five
I'll throw my hat into the ring. Let's say you're running...