7 Cool Computer/Windows Tricks To Smarten Your Computing Life

  While you might have several years of experience using computers, there are yet numerous ways to sharpen your skills on the PC and boost your productivity. These small yet impactful tips and tricks can not only help you streamline your tasks but also save you considerable time and efforts hence significantly enhance your productivity. […]

Continue Reading

Windows Tricks: Three Under-Recognized Features of Window 10

  In the vast landscape of feature-rich Windows 10, there exist numerous features and functionalities that often go unnoticed or underutilized by the users. Despite a zillion of tools and features at our disposal, certain gems remain hidden, waiting to be discovered for enhanced productivity and unique functionality. In this article, we shed a spotlight […]

Continue Reading

Some Quick-Access Tricks For Windows Users

  In the realm of Windows navigation and efficiency, a few simple tricks can make a world of difference in how users interact with their computers. With the provision of zillions of features and tools by the operating system, discovering quick-access shortcuts to commonly used ones can enhance productivity. In this article, we delve into […]

Continue Reading
commonly used abbreviations

Commonly Used Abbreviations

WiFi – Wireless FidelityWWW – World Wide WebHTTP – Hyper Text Transfer ProtocolGIF – Graphics Interchange FormatJPEG – Joint Photographic Experts GroupHTML – Hyper Text Markup LanguageURL – Uniform Resource Locator ISP – Internet Service ProviderGPS – Global Positioning SystemSQL – Structured Query LanguageSMS – Short Message ServicePDF – Portable Document FormatCCTV – Closed Circuit […]

Continue Reading

HCL Notes Trick: Retrieve Details Rows From Embedded View

  HCL Notes doesn’t provide a direct way of working with a master-details scenario, may be because it’s not a relational database system where Primary-Foreign-Key relationship entails the designer platform to provide some efficient mechanism to entertain this particular scenario. So we need to devise some alternate methodology to achieve it. So in order to […]

Continue Reading

T-SQL Trick: Use Recursive CTE To Get Hierarchical Data

  In a previous article we learnt how to use CTE (Common Table Expression) to render dates in a date range. In this example we’ll use somewhat advance technique to show a data in a heirarchical form. Using the regular T-SQL query this is almost impossible to achieve it without coding in a strored procedure […]

Continue Reading

T-SQL Trick: Use CTE to Render Dates In The Specified Date Range

  Using a traditional programming language like C# or Python you can use “for” and “while” loop constructs to generate a sequence of numbers, dates, string values or anything else super-easily. But here we’ll learn how to generate date values in a specific range using Transact-SQL query. We’ll not use any SQL stored procedure. Let’s […]

Continue Reading

T-SQL Technique: Get Running Total Right From The Query

  There are occasions when it is required to reveal running totals before rendering the grand total in a report. Usually calculating and providing running total is the job of a report designer software module. But if you’re using SQL Server database then Transact-SQL (a.k.a T-SQL) provides this facility right in the query. Let’s assume […]

Continue Reading