Category: Web Development
Totara Custom Report: Full Team Hierarchy Under a Manager
In Totara, it’s often important to view not only the direct reports of a manager but also the entire team structure beneath them, including all indirect reports. To address this, we created a custom SQL-based report that generates a complete
Sender Address Issue through Salesforce Email Service
Salesforce offers an Email Service feature that allows you to integrate third-party applications with Salesforce for email processing. Salesforce provides several APIs (Application Programming Interfaces) that developers can use to integrate email functionality with third-party applications. These APIs allow you
RAID Device Name Issue During Mounting
During the setup of RAID 1 for our server, I encountered an issue where the RAID array did not mount properly after a reboot. The key problem was related to the RAID device name, which affected how it was referenced
Page Controller pattern with an example in C#
The Page Controller pattern in C# is a design pattern used in web application development where each web page has its own controller to handle requests. This pattern is particularly useful in frameworks like ASP.NET MVC where the application is
Unveiling the Benefits of Design Patterns in React.js Development
React.js has revolutionized the way developers build user interfaces by introducing a component-based architecture. However, as applications grow in complexity, maintaining code quality and scalability becomes paramount. This is where design patterns come into play, offering reusable solutions to common
Using SSL/TLS to encrypt a connection to a DB instance
To encrypt a connection to a MySQL, Oracle, MariaDB, Microsoft SQL Server, or PostgreSQL instance, your application can employ Secure Socket Layer (SSL) or Transport Layer Security (TLS). Data transferred between your client and the database instance is encrypted using
How Does jQuery Migrate Work?
In order to assist older jQuery code to work with newer versions of jQuery, the jQuery team provided a script called “jQuery Migrate”. As a result, it logs warnings about deprecated or outdated jQuery functions in the browser console. It
Git Reflog: Undo anything
Git revolutionized version control systems with its efficient tracking of code changes and collaboration capabilities. Despite its numerous advantages, at times, users may hesitate to utilize Git, fearing that it cannot rectify an issue or that they’ve made an irreversible
Async Api Calls Inside JavaScript Web workers
Web workers is a JavaScript technology for browsers to support running of the script independently in a separate thread from the main thread. It is like a background process without affecting the screen. To apply this, you will need to
