Skip to content

Instantly share code, notes, and snippets.

@hookbil
hookbil / gist:e4e54271f06b20b41289d736876908a7
Created October 23, 2018 14:52
sql task for lesson_3
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,
@hookbil
hookbil / lesson_1
Last active October 10, 2018 11:39
- Пустой 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