Welcome to my blog with some of my work in progress. I’ve been planning to keep notes of things which interests me. Hope this sparks joy in your mind as well.
Recent Posts
Part 2: Beyond grep: Turbocharging Text Search with Command-Line Wizards
Introduction to Other Tools: Let’s get familiarized with a few tools that can augment and enhance grep’s functionalities.
tr: Character Transformation: tr is a command-line utility used for translating or deleting characters in a text stream. It operates on a per-character basis, allowing you to replace or remove specific characters from input text. With its simple syntax and powerful functionality, tr is commonly used for tasks such as character set conversion, text normalization, and line-ending conversion.
read morePart 1: Mastering grep: Unleashing the Power of Text Search
Introduction to grep: grep is a handy command-line tool that allows you to search for specific words or patterns within text files. Whether you’re looking for a particular phrase in a document, hunting for errors in a log file, or even trying to find a specific line in a long list, grep can quickly pinpoint the information you need. It’s like having a powerful search engine for your computer’s files, helping you find needles in haystacks with ease.
read moreUnderstanding Java Generics: An In-Depth Guide
Introduction: In the realm of Java programming, ensuring type safety and crafting reusable code profoundly influence software reliability. Consider an ArrayList intended for integers but lacking generics; it permits various object types, leading to runtime errors when unintended types are retrieved. This absence of strict type checking often results in elusive errors, complicating code stability. However, Java’s introduction of generics offers a solution, infusing type safety into classes and collections.
read more