ABHINANDHAN Sthelazydeveloperwrites.hashnode.dev·Nov 29, 2024serverless uploading to AWS S3Uploading large files (up to 5TB) efficiently and securely from a React application to an AWS S3 bucket is a common use case. In this blog, I'll walk you through implementing this solution using pre-signed URLs, with AWS Lambda handling backend logic...11 likes·32 readsAWS
Bruno Faganellofaganello.dev.br·May 29, 2024async let - funções assíncronas (async) em ParaleloCom a introdução da nova maneira de realizar chamadas assíncronas no Swift podem surgir algumas duvidas em como executar chamadas em paralelo. O modo "antigo" de ser feito usando os famosos completionHandlers precisávamos utilizar uma classe chamada ...iOS
Olga Nedelcuolgaconstantina.hashnode.dev·May 22, 2024Technical Interview Challenge using React.jsIn a recent front-end interview, I was given a technical challenge involving several key concepts in React.js: Conditional rendering Managing a loading state in a React.js component Using the map() method to render elements to the UI Error handli...29 readsReact
Srisrip.hashnode.dev·Apr 30, 2024A Beginner's Guide to Project especially in Java Full Stack Development: Idea to DeploymentToday, we're embarking on an exciting journey into the world of Java full stack development. Whether you're a complete beginner or someone looking to expand their skill set, this blog will guide you through the complete end-to-end flow of a Java full...end to end development
Shikhor Royshikhorroy.hashnode.dev·Apr 14, 2024What Happens When You Hit a URL on a Browser?If you want to share resources (mp3, mp4, pdf, HTML, etc.) from one device to another then you have to use networking! In the networking world, there are two architectures we follow for that purpose: Client/Server: A device (or machine) will work as...API Basicsclient-server
olagunju oluwabukolasussanah.hashnode.dev·Apr 4, 2024History Of The InternetThe Internet came to being in 1969 accompanied by ARPANET, (Advanced Research Projects Agency Network), a network packet with the aim of solving the problem of communication between computers. It aims to solve data transferring methods from one compu...10 likesnetwork packe
Mainul Hasandev.webdevstory.com·Mar 11, 2024HTTP Requests in JavaScript: Popular Libraries for Web DevelopersJavaScript HTTP requests are a day-to-day need in web development, for example, for interaction between clients and servers, fetching data, and performing CRUD operations. In JavaScript, we can use several libraries for HTTP requests to simplify thes...10 likesJavascript library
Muhammad Haider Khanblog.haiderkhan.dev·Jan 24, 2024Simplifying HTTP API Requests with Client HTTP API Request BuilderIn the world of modern web development, making HTTP requests to RESTful APIs is a common task. It involves handling various complexities such as setting headers, dealing with different HTTP methods, and managing endpoints. The Client HTTP API Request...53 reads#HTTPRequests
Giver Kdkgiver-node.hashnode.dev·Jan 16, 2024Node.js: HTTP ModuleWhat is this HTTP all about? The 'http' that we use as a module is actually a protocol which allows data exchange between client and server. As discussed before, 'http' is a built-in module in Node.js. It has 2 types of messages: HTTP Request and HT...http
Kilian Klugepragmaticnotes.hashnode.dev·Jan 9, 2024Calling an AWS Lambda function URL with IAM authentication in PythonUsing Mangum, you can host FastAPI and other ASGI apps on AWS Lambda. If you add a Lambda function URL, you don't even need to set up an API Gateway to expose the HTTP API to other services or the outside world. Even better, the function URL allows y...1.3K readsMissing ExamplesAWS