This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PRAGMA foreign_keys=on; | |
create table categories ( | |
id integer primary key autoincrement not null, | |
title text | |
); | |
create table tests ( | |
id integer primary key autoincrement not null, | |
title text, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Пустой get запрос: | |
netcat -C httpbin.org 80 | |
GET / HTTP/1.1 | |
Host: httpbin.org | |
HTTP/1.1 200 OK | |
Connection: keep-alive | |
Server: gunicorn/19.9.0 | |
Date: Tue, 09 Oct 2018 12:15:21 GMT | |
Content-Type: text/html; charset=utf-8 |