My Personal Blog

Thoughts, ideas, and random musings

Latest Posts

Discover my latest thoughts and ideas

Kotlin_advanced

August 21, 2025

# Kotlin Advanced ## 1. Higher Order Functions & Lambdas ```kotlin fun operateOnNumbers(a: Int, b: Int, operation: (Int, Int) -> Int): Int { retu...

Read more

Kotlin_basic

August 21, 2025

# Kotlin Basics ## 1. Introduction - Kotlin is a modern, concise, safe, and interoperable language developed by JetBrains. - Fully compatible with Ja...

Read more

Kotlin_intermediate

August 21, 2025

# Kotlin Intermediate ## 1. Functions ```kotlin fun add(a: Int, b: Int): Int { return a + b } fun greet(name: String) = "Hello, $name" ``` ## 2...

Read more