Home

Vinod Kotagiri

Full stack developer

My Latest Posts


  • JavaScript Objects
    Objects in JavaScript are used to store keyed collection of various data and more complex entities. An object can be created with {..} with an optional list of properties. A property is a “key: value” pair, where key is a string(also called as property name) and value can be anything. An empty object can beContinue reading “JavaScript Objects”
  • HTTP/1.1 vs HTTP/2.0
    Before continuing, to understand the working of HTTP follow the post https://techfsd.tech.blog/2022/04/16/the-http/ HTTP/1.1 HTTP/2.0 Release Year 1997 2015 Key Features It supports connection reuse i.e. for every TCP connection there could be multiple requests and responses, and pipelining where the client can request several resources from the server at once. However, pipelining was hard toContinue reading “HTTP/1.1 vs HTTP/2.0”
  • The HTTP
    What is HTTP? The Hyper Text Transfer Protocol (HTTP) is an application layer protocol designed to transfer information between network devices and runs on the top of other layers of the network protocol stack. HTTP is the foundation of web, and used to load webpages using hypertext links. Typical Flow of HTTP A typical flowContinue reading “The HTTP”