Giter Club home page Giter Club logo

know-your-http's People

Contributors

aubergene avatar jfhbrook avatar mercutiodesign avatar mynamewastaken avatar nimpo avatar tedyoung avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

know-your-http's Issues

A1 sized posters

A0 is very large, which means the prints are expensive, and the size is probably overkill for the amount of data on these posters. We should attempt to produce readable posters at size A1 in order to be more manageable.

Transfer-Encoding description incorrect

Here's the description on the poster:

Transfer-Encoding The method of encoding used to transfer the response (defined methods: chunked, compress, deflate, gzip, identity)

compress, deflate, gzip are all possible values of the Content-Encoding header, not Transfer-Encoding. The only possible values for Transfer-Encoding are chunked or identity.

PATCH is not idempotent.

It was my understanding that patch was idempotent, however a colleague just noted that the RFC states...

PATCH is neither safe nor idempotent as defined by [RFC2616], Section 9.1.

methods.tex does not reflect this.

I really like these pdfs as a cheat sheet, would love it if you could update them.

Simplify makefile

Just to DRY up the current one a bit.
Tested only on OSX.

posters := headers.tex methods.tex status-codes.tex
postersPDF := $(posters:.tex=.pdf)
postersPNG := $(posters:.tex=.png)

.PHONY: all pdfs pngs clean %.pdf %.png

all: pdfs

pdfs: $(postersPDF)

pngs: $(postersPNG)

clean:
    @git clean -xfd
    @rm -f $(postersPDF) $(postersPNG)

$(postersPDF): $(1)

$(postersPNG): $(1)

%.pdf: %.tex
    @$(eval input := $<)
    @$(eval output := $@)
    @pdflatex -shell-escape -interaction=nonstopmode -halt-on-error $(input)

%.png: %.pdf
    @$(eval input := $<)
    @$(eval output := $@)
    @convert $(input) -resize 20208x $(output)

Include posters as images

There should be an easily viewable image of the posters available. png seems fine. Should be part of the build process.

This will be useful when we have the posters on a website so that people without adobe can still see.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.