Modular Design Good software is almost always decomposed into modules that are relatively independent of each other. Independent modules makes congitive load easier on the developer working on the software. In an ideal scenario this independence is hard to achive. A good guiding principle to create best modules is to write deep modules. Deep Modules Shallow Modules
The word 'hypertext' appears almost always among Web jargon that is abbreviated such as HTTP, and HTML. What is it? How significant is Hypertext to the Internet? 🔦 Background A lot of us will never be able to fully appreciate the effects of implementing Hypertext as an Information Management System on the Internet. Before hypertext became popular the Internet was just a vast repo of scattered & isolated information items(or objects) that was hard to search & navigate. Hypertext brought order & organization to an Internet that was difficult to use and disorganized due to its distributed & decentralized nature. P.S Hypertext comes under the field of Information Mapping which then comes under the field of Information Management. 💡What was the necessity for Hypertext? The first 'browser' was developed to combat information loss at an org due to people leaving & make information discovery possible for new people joining the org. The org here was CE...
The IP address for localhost is traditionally 127.0.0.1, so you’d expect http://localhost:9999 and http://127.0.0.1:9999 to be the same origin. BUT. The origin comparison only compares the string values of the scheme, host, and port, and knows nothing about what host an IP address maps to. In my example, “localhost” and “127.0.0.1” are different strings, and therefore the request isn’t a same-origin request.