In this post we’ll cover how and when to use the remember and rememberSaveable Composable functions in Jetpack Compose. If you’ve just started to learn about state in compose, chances are the functions listed above have been introduced. When I first started ramping up on Jetpack Compose a lot of the documentation that I read […]
Continue ReadingHow to Easily Add kotlinx.coroutines to Your Intellij Project
If you landed here I’m guessing you had a bit of an issue adding the kotlinx.coroutines package to you project. Or possibly are looking to add it. I’m not sure if I was doing something incorrectly or just don’t know enough about how Intellij works yet, but I ran into more difficulties than I expected. […]
Continue ReadingKotlin and Jetpack Compose Errors and Solutions
I decided to give Kotlin and Jetpack Compose a try but did not want to create a whole new project so I decided to add it to my test project. Now this project is old but like the name says its only a test project so who cares, well…. apparently Kotlin and Jetpack does because […]
Continue ReadingTrie Data Structure Implementation
Trie Data Structure Implementation using a multi-dimensional array…well really a List of Arrays. One day I was reading about the Trie data structure in one of my favorite programming books. The – “Competitive Programmer’s Handbook” by Antti Laaksonen which is available for free. This is a great book if you a preparing for a difficult […]
Continue ReadingWhy I Moved to WordPress.org
WordPress.com no fuss but limited When I first started my blog I wanted to focus on just that, blogging i.e.. writing posts. I was excited, motivated and wanted to share the knowledge I’ve gained from my career as a Software Engineer. I didn’t want to get too bogged down with the technical side of things […]
Continue ReadingC# Deserialization Cheat Sheet
A simple cheat sheet that has some examples of how to go from Xml to C# object using Xml Data Annotations. There is a simple way to do this using visual studio if you did not know you can use the “Paste Special” feature. Copy your xml so its on your clipboard. Then in VS […]
Continue Reading