Rick Bowen (JavaScript)

Hi, I'm Rick! I'm an accomplished Software Engineer with broad and deep expertise in Go JavaScript, TypeScript, Shell (bash/zsh), Git, SQL & NoSQL Databases, Containers + Kubernetes, Distributed Systems, Reliability Engineering, DevOps, Cloud / Network / Application Security, Identity / Access Management, Linux, macOS/Darwin, CI/CD, SaltStack, Terraform, AWS, GCP, Azure, Internet Protocols, and much more.
9 Posts

How to Create a Manifold Revolutionizing Decentralized Prediction Market Analytics with JavaScript

To build a Manifold style decentralized prediction market analytics tool with JavaScript, follow these seven steps: Set up your Node.js and React project. Connect to a...

JavaScript Why Am I Getting a Content Promise Instead of Text

TL;DR You forgot a second await. Body reading methods like .text() and .json() are async. Always await them. The Bug in One Line const text =...

How to Fix the No Such Element Exception in Java

NoSuchElementException is one of the most frequently encountered runtime exceptions in Java development. It occurs when your code attempts to retrieve an element that...

How Can I Pass a Parameter to a setTimeout() Callback in JavaScript

When working with JavaScript, setTimeout() is one of the most commonly used functions for delaying code execution. However, many developers especially beginners run into...