13 Matching Annotations
  1. Last 7 days
    1. series of tubes,” in the immortal words of the Alaska senator Ted Stevens, went online in the late nineteen-sixties, though “tubes” exaggerates its concreteness. Technically, the internet is a protocol: a set of rules that let computers send and receive data over various networks by breaking it into “packets.”

      I totally agree computer are algorithms and there are rules that come along with it.

    2. In the beginning, the internet was without form, and void, and data trickled through the ports of the routers

      Technology is definitely different and make then it was not advanced as it is today but i lowkey wish technology didn’t get so advanced!!

    3. Young people don’t understand what it took to make the web,” he said. “It took companies giving up their patent rights, it took individuals giving up their time and energy, it took bright people giving up their ideas for the sake of a common idea.

      He took a risk to give up things to make web do make Technology better and so that we can have web browsers 😝

    4. Still, his creation keeps growing, absorbing our reality in the process. If you’re reading this online, Berners-Lee wrote the hypertext markup language (HTML) that your browser is interpreting.

      Love how is Creation expanded!!! 👏🏽👏🏽

    5. the World Wide Web, in 1989, but people informed of this often respond with a joke: Wasn’t that Al Gore?

      AI is taking over and honestly it makes me MADDD ! ![(https://share.google/PsjCvwOnCoRVISoeg)

    6. In 2004, after losing a vote, a group of browser developers who wanted to keep improving HTML formed a rival standards body. Berners-Lee considered the move a power grab, describing it as “the first real blow to the integrity of the World Wide Web.”

      they though it was too strict and there was an uproar OOP-

    7. the web’s design supple amid exponential growth, even when that clashed with demands for more features. The lodestar was Berners-Lee’s “principle of least power,” which dictated a minimal architecture. “

      ALL CREDIT TO BRENERS LEE FOR WEB DESIGN and just making technology better !!!

    8. He bought domain names for everyone in the family and encouraged my early experiments in programming. At recess in middle school, while others played soccer or traded Yu-Gi-Oh! cards, I pored over tomes on HTML, JavaScript, and PHP—which paid off, socially, when I built a proxy server to let classmates access banned Flash games.

      love how he was into coding at a young age!!!

    9. at linked them together. On August 6, 1991, the web’s first page, http://info.cern.ch, went online, introducing itself as “a wide-area hypermedia information retrieval

      first web page was published on August 16th,1991 by Berners lee.

    10. HTML, the language of web pages; HTTP, the protocol that governed their transmission; and URLs, the addresses that linked them together. On August 6, 1991, the web’s first page, http://info.cern.ch, went online, introducing itself as “a wide-area hypermedia information retrieval initiative aiming to give universal access to a large universe of documents.” Soon enough, there would be porn.

      HTTP (Hyper Text Transfer Protocol) for communication between servers and clients

  2. Sep 2025
    1. When you do actions in Git, nearly all of them only add data to the Git database. It is hard to get the system to do anything that is not undoable or to make it erase data in any way. As with any VCS, you can lose or mess up changes you haven’t committed yet, but after you commit a snapshot into Git, it is very difficult to lose, especially if you regularly push your database to another repository.

      It is hard to get the system to do anything that is not undoable or to make it erase data in any way.

    2. Figure 4. Storing data as changes to a base version of each file Git doesn’t think of or store its data this way. Instead, Git thinks of its data more like a series of snapshots of a miniature filesystem. With Git, every time you commit, or save the state of your project, Git basically takes a picture of what all your files look like at that moment and stores a reference to that snapshot. To be efficient, if files have not changed, Git doesn’t store the file again, just a link to the previous identical file it has already stored. Git thinks about its data more like a stream of snapshots

      ohhh this is where the git commands come from i was so lost on this for a while!!

    3. So, what is Git in a nutshell? This is an important section to absorb, because if you understand what Git is and the fundamentals of how it works, then using Git effectively will probably be much easier for you. As you learn Git, try to clear your mind of the things you may know about other VCSs, such as CVS, Subversion or Perforce — doing so will help you avoid subtle confusion when using the tool. Even though Git’s user interface is fairly similar to these other VCSs, Git stores and thinks about information in a very different way, and understanding these differences will help you avoid becoming confused while using it.

      so Git and hub are different???