Ankit Jainankitjain.hashnode.net·Apr 29, 2021HTTP PrefetchingPrefetch is downloading content in the background based on certain kind of assumption. Might be that you will visit that page, or could be the next step is to go to that page. Why prefetch the content ? Faster load times results in higher conversion...Discuss·47 likes·132 readsjs
Ilija BoshkovforCodeChemvisible-pets-embarrass-94.hashnode.net·May 30, 2020Fixing the AddTrust External CA Root ExpirationIf you’re like me, you probably woke up on Monday, June 1st, and found some of your services suddenly failing, whether it’s your mobile app failing to connect to your API or your images suddenly failing to load. In my case, some of our mobile apps (A...Discuss·46 likes·312 readsDevops
KaviiSurikavii.hashnode.net·Aug 30, 2021How to setup a https server in Elastic Beanstalk (The Cheap Way)?Yeah.. I know, the title is a mouth full. To be honest, this is a very specific and niche usecase I faced and found no condensed resources. So, here is my attempt making one!! I hope this article helps you in the journey towards learning new things!!...Discuss·42 likes·992 readsHow to deploy web application to AWS Elastic Beanstalk(The Cheap Way)?AWS
Blessing Nwakwuotheblessedcoder.hashnode.net·Apr 22, 2023What happens when you type "https://www.google.com" in your browser and press Enter.Have you ever wondered what happens when you type the URL "https://www.google.com" in your browser and press Enter? Well, let me explain it to you in simple terms. A Uniform Resource Locator (URL) is a web address that you can type into a web browse...Discuss·6 likes·42 readsip addressThis was really an awesome read. I loved how explanatory it was, and the examples you used 💖. 3
Biraj Karkibirajkarki.hashnode.net·Apr 20, 2023Decoding SSL, TLS, and HTTPS: A Comprehensive ExplanationIn today's digital world, security is a critical concern for websites and online businesses. With cyber threats on the rise, it's essential to understand the technologies that protect sensitive information transmitted over the internet. Three commonl...DiscussSSL
Annah Nokutheza Mwanzaannahnokutheza.hashnode.net·Apr 17, 2023The Importance of HTTPS and HTML 5 for Internet Security!When browsing the web, you might come across two terms that can be confusing: HTTPS and HTML 5. Both are important for modern web browsing, but they serve different purposes. Both are designed to protect users' data and ensure that online communicati...DiscussHTML5
Samuel Oluwatobi Amureoluwatobialure.hashnode.net·Apr 16, 2023What happens when you type google.com in your browser and press Enter?So you pick up your smartphone or computer and type google.com in your browser and voila the homepage appears almost as soon as you press the Enter key and everyone's happy. But have you ever wondered what goes on between the term interval of pressin...DiscussWeb Development
Emirhan KARAHANemirhankarahan.hashnode.net·Apr 16, 2023How Internet Connection Works: Internet ProtocolsHave you ever wondered how we connect to the internet? When you send an email to your friend or teacher from your email application, how does that information reach them? In this article, we will discuss the workings of the Internet and Internet prot...Discusshttp
Mark Kibaratopsideboss2.hashnode.net·Apr 13, 2023Explain it to me like I'm 5 yrs old...Introduction In the first article of this series, we take a look at DNS. Specifically the question "What happens when you type google.com in your browser and press Enter?". This question is a classic and still a widely used interview question for man...Discuss·10 likes·35 readsCloud Conceptsdns
rrkjonnapalliforSeedseed.hashnode.net·Apr 9, 2023Creating a local https serverI'm just going to create a simple https server here to show how it works /* index.js install express to test this */ const express = require('express'); const path = require('path'); const fs = require('fs'); const https = require('https'); const a...DiscussNode.js
Soumyajyoti Mahalanobishsoumyajyoti-devops.hashnode.net·Apr 8, 2023How different types of traffic are carried over TCPLet's start with the most basic form of traffic HTTP and HTTPS, which is through the entire web system generally operates. HTTP and HTTP(S) traffic is carried over TCP using a client-server communication model. In this model, the client sends a reque...Discuss#networking for teenagers
Shivank Kapurshivankkapur.hashnode.net·Apr 7, 2023HTTP Status CodesWhat Are HTTP Status Codes? An HTTP Status Code can be defined as a message which is sent by the server when a request made by the browser is or isn't fulfilled. Status codes are included in the HTTP response when a URL is requested by a web browser ...Discuss·10 likeshttp
majd eddine ben taharmajd-coding.hashnode.net·Apr 5, 2023Understanding the Difference Between HTTP and HTTPS, and Why HTTPS is Becoming More Essential1. What are HTTP and HTTPS? HTTP and HTTPS are both protocols used to transmit data over the internet. HTTP stands for Hypertext Transfer Protocol, while HTTPS stands for Hypertext Transfer Protocol Secure. The main difference between the two is that...DiscussGeneral Programming