ZHOST How to Develop a Custom Odoo Module from Scratch Introduction: Odoo is a powerful open-source ERP system that allows businesses to customize and extend its functionalities through modules. If you need a specific feature that Odoo doesn’t offer out-o... Odoo Odoo 18 Odoo Administrators Odoo ERP Odoo Integration Odoo Modules Odoo database
ZHOST How to clone git repo with SSH key Introduction In initial days when GitHub was allowing https based URL clone, and committing code with https with user authentication, we were using the command like: git clone https://repo_url . ... Developer Tools Developer guide Technology Comparison bitbucket git github gitlab
ZHOST Forcing Git Pull: Overwriting Local Files Safely Introduction Once, while working on a project, I had a lot of file changes in my local repository. My usual routine is to start by pulling from the git repository before diving into work. At the end o...
ZHOST JavaScript Console Methods: A Developer's Guide Introduction JavaScript is like a trusty sidekick in the world of web development, helping developers craft interactive and dynamic websites with ease. Its superpower lies in its ability to chat with ...
ZHOST Strengthening Cybersecurity: Defending Against Common Cyber Attacks Introduction In today's digital age, cybersecurity is more important than ever. With the increasing number of cyber attacks targeting businesses and individuals, it is crucial to implement strong defe...
ZHOST Exploring Email Scraping with Python Introduction: In today's digital age, email remains a pivotal communication tool for both personal and professional purposes. The ability to gather email addresses from various sources can be immensel...
ZHOST Understanding Denial-of-Service (DoS) Attacks: Exploring Different Categories Introduction: In today's interconnected digital age, cybersecurity threats are becoming increasingly sophisticated, and one of the most common forms of attack is the Denial-of-Service (DoS) attack. Un...
ZHOST The Risks of P2P File Sharing: Understanding the Threat of Viruses and Worms Introduction Peer-to-peer (P2P) file sharing has revolutionized the way we exchange digital content, allowing users to share files directly with one another without the need for centralized servers. W...
ZHOST Docker for a Nest.js App with PostgreSQL and Nginx Reverse Proxy Introduction: Here, we will guide you through the process of setting up a Dockerfile for a Nest.js application that integrates PostgreSQL as its database and Nginx as a reverse proxy. Furthermore,...
ZHOST NGINX Proxy for Odoo ERP Server: Easy Step-by-Step Guide Introduction: Recently, one of my subscribers reached out with a question about setting up NGINX for Odoo, let's see.. the question was for this odoo setup video . In this article, we will walk you th...
ZHOST Two-Factor Authentication (2FA) in NestJS: A Comprehensive Guide Introduction Adding Two-Factor Authentication (2FA) enhances the security of user accounts by mandating a secondary form of verification alongside the password. This guide will demonstrate how to inco...
Bithost Lifecycle hooks in Angular Every component in Angular has a lifecycle, different phases it goes through from the time of creation to the time it's destroyed. Angular provides hooks to tap into these phases and trigger changes a... Angular Frontend JavaScript Mobile Application TypeScript Web Application