David Vilaçavilaca.dev·Sep 27, 2024HTTP além das abstrações: Saia do automático e entenda o protocolo fundamental da WebO HTTP (Hypertext Transfer Protocol) continua sendo o protocolo central da web moderna. Embora muitos desenvolvedores lidem com ele de forma indireta ao construir aplicativos, entender seu funcionamento detalhado é indispensável para otimizar e soluc...Discuss·1 like·66 readshttp
Adaeze Iweadinobi adaeze.hashnode.dev·Aug 14, 2024Unveiling the Backbone of Cybersecurity: The Network (1).What is a Network? A network is a collection of interconnected devices that communicate with each other to share resources and information. These devices, often referred to as nodes, can include computers, servers, printers, and other hardware. Netwo...Discussnetworking
Nimisha G JforInfraspecinfraspec.hashnode.dev·Apr 30, 2024TFTP: A Lightweight Protocol for File TransferTFTP protocol overview TFTP known as Trivial File transfer protocol is a simple file transfer protocol with features such as get or put files. Unlike FTP or SFTP which can share files across networks TFTP can only share files over a local network, TF...Discuss·1 likeFileTransferProtocol
Ganesh Tiwarigat786.hashnode.dev·Aug 31, 2023Introduction to Chainlink CCIP and a quick demoIntroduction -> Web3 as a whole brings together the idea of storing (non-)critical information in a non-mutable public registry. This means that you can be sure that the information you store can not be erased or altered or that it is not a hostage t...Discuss·10 likes·921 readsChainlink
Liaichi_Mustaphait-lounge.hashnode.dev·Apr 16, 2023ReactJS: The Ultimate Choice for High-Performance and Flexible Front-End DevelopmentIntroduction: In today's world of front-end development, choosing the right framework can make all the difference in the success of your project. While there are several popular frameworks to choose from, ReactJS, Vue.js, and AngularJS are among the ...DiscussJavaScript
Hari Krishna Anemharikrishna.hashnode.dev·Jan 18, 2022JavaScript: How to get the URL parts from a URLconst url = new URL('http://example.com:12345/blog/foo/bar?startIndex=1&pageSize=10'); const { protocol, hostname, port, pathname, search } = url; console.log('protocol =>', protocol); console.log('hostname =>', hostname); console.log('port =>', por...Discuss·61 readsurl