ritiksharmaaaritiksharmaaa.hashnode.dev·Nov 29, 2024Understanding the Role of DSA and Design Patterns in Web DevelopmentWeb development often feels straightforward: fetch data from a database, perform operations, and send the processed data to the client. However, the deeper complexities of handling data efficiently and maintaining scalable code require understanding ...DiscussData Structure And Algorithmslow level design
Denishdenish.hashnode.dev·Nov 26, 2024Boost Your Web Security with Reverse Proxies and SSL Certificates!Hello friends, gadget freaks? ✌ Now let me share with you something rather important for any Web application nowadays – security. As it seen, hackers are always coming up with new strategies and methods of penetrating through a particular system; the...Discussproxy
Alyaa Talaatalyaatalaat28.hashnode.dev·Oct 19, 2024Proxy Pattern – Head First ApproachThe Proxy Pattern is a structural design pattern that provides a placeholder or surrogate object to control access to another object, adding a level of indirection. This pattern is particularly useful for managing resource-intensive objects or for ad...Discussproxy design pattern
Victor Uzoagbavictoru.hashnode.dev·Sep 17, 2024Integration of Machine Learning into Proxy Management for Adaptive ScrapingIntroduction Web scraping has become an important source for businesses to collect data from the web for use in competitive analysis, pricing strategies, and market research. However, the increased sophistication in anti-scraping technologies has got...Discusscaptchas-solver-browser-extension
Victor Uzoagbavictoru.hashnode.dev·Sep 17, 2024How to Implement a Custom Proxy Protocol for Specialised Data Extraction TasksIntroduction In today's world, living on data, scraping and processing the vast amount of information from web sources has become crucial for almost any other industry. Everything-from market research to competitor analysis-business operations seem t...DiscussProxy Server
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Jan 21, 20242.7 Proxy Pattern - Structural Design PatternThe Proxy Pattern gives another item a stand-in or surrogate to manage access to it. This blog post will examine the Proxy Pattern, explain its composition, and look at an example of Java code that demonstrates how it is used. What is the Proxy Patte...Discuss·4 likesDesign Patterns in Software Engineeringdesign patterns
Syed Jafer Kparottasalna.hashnode.dev·Jan 17, 2024Proxy Design PatternWhen to Use ? Lazy initialization (virtual proxy). This is when you have a heavyweight service object that wastes system resources by being always up, even though you only need it from time to time. Instead of creating the object when the app launch...Discuss·60 readsLLDdesign patterns
MUKUL JHAmukuljha.hashnode.dev·Jan 11, 2024Proxy Design PatternsProxy is a structural design pattern. The proxy design pattern will help to hide implementation and expose the proxy to the client. The client doesn’t have any idea or implementation knowledge of the system. System proxy works on behalf of the Syste...Discussdesign patterns
Akash Deep Chitranshcodechitra.hashnode.dev·Oct 8, 2023Proxy Design Pattern In JavaScriptIn JavaScript, a proxy is an object that allows you to intercept and customize operations on another object (known as the target). Proxies provide a way to define custom behavior for fundamental operations like property access, function invocation, a...Discuss·1 like·31 readsJavaScript
Chetan Dattachetan77.hashnode.dev·Sep 27, 2023Proxy Design PatternIn this pattern, a middle object, generally referred to as a proxy object, will be present between every transaction involving two objects Examples: Access Restriction (Internet): If you are connected to the Wi-Fi network in your company, you will ...DiscussLow Level DesignSoftware Engineering