Anjanesh LekshminarayananforAnjanesh's Perception on Cloudanjanesh.cloud·Sep 28, 2023How to connect to a Google Cloud PostgreSQL 15.2 SQL instance remotely from WindowsI had previously .installed PostgreSQL 15.2 on my Windows 11 machine Stop a running instance of PostgreSQL on locahost:5432 net stop postgresql-x64-15 Create a new SQL instance at https://console.cloud.google.com/sql/ I choose PostgreSQL, it's simil...Discussgoogle cloud
Bhavesh Yadavcodezera.hashnode.dev·Sep 26, 2023NGINX Reverse Proxy: Streamlining Your Full Stack Web App DeploymentIn this blog, we will discuss how to configure Nginx as a reverse proxy for a full-stack web application with a frontend on React and a backend on Node.js. We will cover the following topics: Introduction to Nginx Setting up a React frontend and No...DiscussNGINXnginx
An Vovotanlean.hashnode.dev·Sep 24, 2023Create An OpenAI Proxy Server using Express and HttpsIntroduction OpenAI API does not support some countries. That is the barrier for some third-country developers to access and explore this technology. In this article, we will make OpenAI API more accessible using a proxy to transport back and forth t...Discuss·26 readsopenai
Raja Khanraja1234.hashnode.dev·Sep 7, 2023Why we should use a Database proxyIn this article, I will discuss the following points: What is a database proxy A little introduction to a proxyless architecture The bottlenecks caused by databases even with rich system resources and their impact on the overall throughput lead t...DiscussRDBMS
Paras kaushikparaskaushik.hashnode.dev·Aug 31, 2023What is a Proxy sever ?What is a Proxy Server? At its core, a proxy server is a middleman between a client (which could be a user or a device) and a server. It serves several key functions: Privacy and Anonymity: A proxy server hides the client's IP address from the outsi...Discussproxy
Rajan Lagahrajanlagah.hashnode.dev·Aug 17, 2023"Proxy" a way to optimize your codeUsing proxy you can intercept the fundamental functions for objects. Ever wanted to add an event listener or callback whenever a specific function or value from an object is called? Maybe you are doing recursion and want to check how many times the ...DiscussJavascriptJavaScript
Vinit Guptathevinitgupta.hashnode.dev·Aug 17, 2023Day 7 : What are Proxies and how do they work?Proxy is simply a server or machine that does something on your behalf. In the tech world, proxies are used to handle requests and responses. They can either work on the clients' behalf to send requests to servers or on the server's to handle the inc...Discuss·1 like100 Days of Learning proxy
Tom X NguyenPromonotykamary.hashnode.dev·Aug 10, 2023Implementing Elixir-like protocols in TypeScript using ProxiesIntroduction In this part of experimenting with proxies, we'll explore an alternative approach to polymorphism by leveraging the power of proxies available in JavaScript and TypeScript. Our main goal is to compose a solution similar to Elixir Protoco...Discuss·26 readsExperimenting with Proxies in TypeScriptTypeScript
Amish KohliforWiz4host Blogs - DevOpswiki.wiz4host.com·Aug 4, 2023Nginx - Location DirectiveThe 'location' directive is a fundamental concept in web server configuration that allows you to specify different settings and behaviors for specific URL paths or patterns within your server. It plays a crucial role in defining how the server handle...Discuss·53 readsnginx
Oyinbo David Bayodedavexoyinbo.hashnode.dev·Aug 3, 2023Overview of The Proxy Design PatternThe proxy design pattern is a structural design pattern that provides a surrogate or placeholder for another object. A proxy controls access to the original object, allowing you to perform something either before or after the request gets through to ...Discussproxy