Doug Schallmoser·Mar 3, 2021TypeScript EssentialsThe TypeScript documentation is very good for learning and understanding how to use TypeScript. With this post I thought I would jot down…
Doug Schallmoser·Feb 24, 2021JavaScript Matrix CreationI was recently working on a coding challenge of sorts in which the goal was to create a specific-sized grid and build three useable…
Doug Schallmoser·Feb 17, 2021JavaScript String CleaningJavaScript has several built-in methods for “cleaning” strings that can be very useful for your frontend application. Since these methods…
Doug Schallmoser·Feb 10, 2021Context API + useReducer in ReactLately I have been playing around with React’s Context API and exploring its use cases. Someone recently shared a very insightful blog…A response icon2A response icon2
Doug Schallmoser·Feb 3, 2021JSON Web Token Integration in Node.jsIn my last article I went over how to integrate JSON Web Tokens into the backend of your Rails application. That article can be found:
Doug Schallmoser·Jan 27, 2021JSON Web Token Integration in RailsIn most applications you will likely have user accounts. And if you do, you certainly want to limit what a particular user has access to…
Doug Schallmoser·Jan 20, 2021Simple Context API UsageIn React there are many ways of sharing data throughout your application. You can pass data as a prop from a parent component to a child…
Doug Schallmoser·Jan 14, 2021Interview Question: Rearranged PalindromeA recent software engineer coding interview question I was given was the following:
Doug Schallmoser·Jan 8, 2021Deploy Rails ActionCable to HerokuIf you built an app utilizing Rails ActionCable and you want to deploy it to Heroku, this short walkthrough is for you.
Doug Schallmoser·Dec 30, 2020Hiding Sensitive Info in React and RailsIn order to secure sensitive information such as API keys from other people’s eyes, it is imperative that you hide them from your public…