Hello, I'm

Pinak Dhabu

Developer • System enthusiast • Lifelong learner

View my work About me

🚀 Tech Zone

🐧 Linux Commands

# Find all files modified in the last 24 hours
find . -mtime -1
					

⚙️ C++ Logic

// Simple factorial function
int factorial(int n) {
    return (n == 1 || n == 0) ? 1 : n * factorial(n - 1);
}
					

📚 Java Libraries

// Using Apache Commons Lang
import org.apache.commons.lang3.StringUtils;

StringUtils.isNotBlank("Hello, World!"); // true
					

😂 Just for Laughs

Why do programmers prefer dark mode? Because light attracts bugs!