What I'm Thinking
GraphQL Subscriptions with Go (gqlgen) Example
28 March 2021
GraphQL subscriptions are extremely useful in situations when a server needs to update its clients. A chat application is a great example to demonstrate this, as when new messages arrive we want to distribute them among all chat participants as quickly as possible without polling. When I first started looking at implementing GraphQL subscriptions in Go it took me a bit before I had my aha moment and everything clicked together. Also, at that time there were not a whole lot of examples that I could look at or reference. This post will go over a concrete chat application example using GraphQL subscriptions and a backend built in Go with gqlgen.
... Read More
Pragmatic Programmer Tips
6 September 2020
One of my favorite software engineering books recently released a new edition and has been an absolute pleasure to read again. The Pragmatic Programmer is back with a 20th-anniversary edition and a fresh look at the modern software development landscape.
... Read More
Prevent your Apple ID from constantly getting locked
25 March 2020
If you are like me, and have all of your Apple devices constantly prompt you for your Apple ID password only to inform you that your Apple ID is locked, here is something that you could do to prevent it.
... Read MoreMy SiriusXM tracker for ‘The Heat’ radio station has now been running since the summer of 2016 and has collected a good amount of data. It seemed like a great opportunity to make use of this data for getting some insight into what songs/artists/albums have been popular throughout the months, and also get some Spark practice under my belt.
... Read More
Using Apache Spark with MongoDB
17 July 2017
This example will go over setting up a simple Scala project in which we will access a Mongo Database and perform read/write operations. In order to access MongoDB from spark we will need the MongoDB Connector for Spark.
... Read More
Vaadin Spring and Spring Boot - Reload UI changes without server restarts in IntelliJ IDEA
16 March 2017
Host your own Heroku with Dokku on DreamHost's Cloud
14 December 2016
After hosting a few of my apps on Heroku I quickly became a fan of the platform, and saw why it gets such high praise. The ease of deploying an application straight through Git is amazing. Not having to worry about managing servers, or managing the environment is perfect–it allows a developer to go straight into developing and deploying their apps with minimal hassle.
... Read More
Control your Homebrew package upgrades
5 December 2016
I have always upgraded my installed homebrew packages whenever updates became available. Recently however, I ran into a situation where I did not want to upgrade a specific package while also upgrading the rest. Loved how incredibly easy Homebrew made this.
... Read More