
Moodboarding Your Website
Designing with Intention and Style
Search for a command to run...

Designing with Intention and Style

Introduction A resume is often the first impression you make on recruiters, professors, or industry professionals. For a B.Tech 1st-year student, it might feel “too early” to build one, but in reality, creating a resume right from the first year has ...

Choosing a career in Computer Science or Information Technology can feel both exciting and overwhelming. The tech industry is full of opportunities, and it’s evolving faster than ever. Whether you’re a first-year student still exploring, or a final-y...

Computer science sits at a fascinating intersection between art and science, embodying elements of both. The artistic aspects are quite evident in several areas. Programming involves creative problem-solving, where developers craft elegant solutions ...

Kotlin + Jetpack Compose

Introduction Jetpack Compose has revolutionized Android UI development by introducing a modern, declarative approach to building user interfaces. Unlike traditional XML-based layouts, Jetpack Compose allows developers to define UI components directly...

Introduction When creating layouts in Jetpack Compose, two important things to understand are alignment and arrangement. These help you control where your UI elements appear on the screen — both within a container and in relation to each other. When ...

Introduction Jetpack Compose is a new way to build user interfaces (UIs) for Android apps. Instead of writing layout code in XML (which looks like HTML), developers can now create designs directly using Kotlin, a programming language. This makes the ...

Jetpack Compose is Android’s modern toolkit for building native UI with a declarative approach. Unlike traditional XML-based layouts, Compose allows developers to define UI components directly in Kotlin using composable functions. In this blog, we’ll...