HTTP, a stateless protocol

  1. The Protocol Every Web Developer Must Know - Part 1
  2. HTTP Made Really Easy

These two links are what I read on. From requests, server make it responses.

It’s a stateless, application-layer protocol for communicating between distributed systems.

There are “verbs” such as

and “status codes”

Have a Request, three things

give a Response

check Request header. Response format. use “HTTP client” tool.

and use Chrome/webkit inspector.

 
1
Kudos
 
1
Kudos

Now read this

레일스로 코딩 배우기

나는 루비가 코딩을 배우기에 좋은 출발점이라고 생각한다 Learn To Program 이라는 책을 읽어보라 https://pine.fm/LearnToProgram/ 물론 어느 programming language 로 시작하든지 코딩을 배우는 것은 인생에서 매우 중요하다고 생각한다 그리고 루비를 배우기에는 레일스가 좋은 출발점이라고 생각한다 지금 시작해보자 rails new app_name cd app_name 레일스의... Continue →