How to set up my Yelposhere data engineering project on GCP?Data Engineering Zoom Camp 2023Apr 16, 2023·13 min read·341
SSH Simplified: Aliasing Credentials with Config FilesIntroduction SSH (Secure Shell) is a protocol that allows users to securely connect to remote servers and perform various tasks, such as executing commands and transferring files. One of the most common uses of SSH is connecting to a remote server vi...Jan 23, 2023·3 min read·217
Creating and Importing Documents in MongoDBI've already written about the basic CRUD operations in MongoDB in a previous blog post. In this blog post, I'll discuss some important aspects of insert commands in MongoDB. 1. Introduction to insert commands insertOne and insertMany commands are u...Dec 29, 2021·4 min read·39
Difference between def and val in ScalaOftentimes, val and def can get confusing in Scala. Especially when there are no parameters to a function. Let me explain with an example: object HelloWorld { val total: Int = 123 def totalDef: Int = { println("Inside def") 4...Dec 7, 2021·2 min read·63