{"id":15588063,"url":"https://github.com/jodosha/hall_of_fame","last_synced_at":"2026-05-03T19:31:41.448Z","repository":{"id":66312180,"uuid":"110269777","full_name":"jodosha/hall_of_fame","owner":"jodosha","description":"HTTP 103 (Early Hints) with Hanami","archived":false,"fork":false,"pushed_at":"2018-04-10T08:15:42.000Z","size":71,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-29T09:22:45.742Z","etag":null,"topics":["early-hints","hanami","http2","ruby","web"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jodosha.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-10T16:44:31.000Z","updated_at":"2022-10-12T15:33:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"d2481602-6ce8-4a1e-84e9-ed21360da2cf","html_url":"https://github.com/jodosha/hall_of_fame","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"132831d475290ae1ab95114ac2733fb401146d01"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jodosha/hall_of_fame","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jodosha%2Fhall_of_fame","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jodosha%2Fhall_of_fame/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jodosha%2Fhall_of_fame/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jodosha%2Fhall_of_fame/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jodosha","download_url":"https://codeload.github.com/jodosha/hall_of_fame/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jodosha%2Fhall_of_fame/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32582505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["early-hints","hanami","http2","ruby","web"],"created_at":"2024-10-02T22:21:12.691Z","updated_at":"2026-05-03T19:31:41.422Z","avatar_url":"https://github.com/jodosha.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hall Of Fame\n\nThis is an experiment to run [HTTP 103 (Early Hints)](https://datatracker.ietf.org/doc/draft-ietf-httpbis-early-hints/) with [Hanami](http://hanamirb.org).\n\n## History\n\nOn November 2015, during my [keynote at Ruby Day](https://www.youtube.com/watch?v=XCgsXUKLsOc\u0026feature=youtu.be\u0026t=31m4s), I announced experimental support for HTTP/2 Push Promise with Lotus (the former name of Hanami).\nFor the sake of the demo, I created this app: [https://github.com/jodosha/instants](https://github.com/jodosha/instants).\n\nDuring that summer, I started to experiment with HTTP/2 and Ruby: Rack and all the web servers weren't ready for it.\nSo I had to write my own HTTP/2 Rack web server: [https://github.com/jodosha/panther](https://github.com/jodosha/panther).\n\nFast forwarding to today: HTTP/2 is still not supported by Ruby ecosystem, but in the meantime IETF standardized `HTTP 103 (Early Hints)` as of October 2017.\nAt the same time, [Puma](http://puma.io) started to support it.\n\n**The next Hanami release (`v1.2.0`), will include support for `HTTP 103 (Early Hints)`.**\n\n## Prerequisites\n\n  * Git\n  * Ruby 2.3+ (with OpenSSL)\n  * [h2o](https://h2o.examp1e.net/) (`brew install h2o`)\n\n## Installation\n\n```shell\n% git clone https://github.com/jodosha/hall_of_fame.git\n% cd hall_of_fame\n```\n\n## Setup\n\n```shell\n% bin/setup\n```\n\n## Run\n\nStart the project with one of the following methods, then visit [https://localhost:9090/](https://localhost:9090/).\n\n:warning: The SSL certificate is self-signed, you can safely ignore the warnings of your browser.:warning:\n\n### Foreman\n\nIf you use [foreman](https://github.com/ddollar/foreman) (or an alternative) run:\n\n```shell\n% foreman start\n```\n\n### Manually\n\nIf you don't use foreman, you can start the project manually.\nOpen two terminal windows:\n\n```shell\n% bundle exec hanami server\n```\n\n```shell\n% h2o -c config/h2o.conf\n```\n\n## cURL\n\nIf you want to debug the headers, please run:\n\n```shell\n% curl -i -v http://localhost:2300/\n```\n\nYou should see something similar to this:\n\n```shell\n*   Trying ::1...\n* TCP_NODELAY set\n* Connected to localhost (::1) port 2300 (#0)\n\u003e GET / HTTP/1.1\n\u003e Host: localhost:2300\n\u003e User-Agent: curl/7.54.0\n\u003e Accept: */*\n\u003e\n\u003c HTTP/1.1 103 Early Hints\nHTTP/1.1 103 Early Hints\n\u003c Link: \u003c/assets/hanami.png\u003e; rel=preload; as=image\nLink: \u003c/assets/hanami.png\u003e; rel=preload; as=image\n\u003c Link: \u003c/assets/application.css\u003e; rel=preload; as=style\nLink: \u003c/assets/application.css\u003e; rel=preload; as=style\n\u003c Link: \u003c/assets/jquery.min.js\u003e; rel=preload; as=script\nLink: \u003c/assets/jquery.min.js\u003e; rel=preload; as=script\n\u003c Link: \u003c/assets/mansonry.min.js\u003e; rel=preload; as=script\nLink: \u003c/assets/mansonry.min.js\u003e; rel=preload; as=script\n\u003c Link: \u003c/assets/application.js\u003e; rel=preload; as=script\nLink: \u003c/assets/application.js\u003e; rel=preload; as=script\n\n\u003c HTTP/1.1 200 OK\nHTTP/1.1 200 OK\n\n# Rest of the response headers and body..\n```\n\n## Copyright\n\n\u0026copy; 2018 - Luca Guidi https://lucaguidi.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjodosha%2Fhall_of_fame","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjodosha%2Fhall_of_fame","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjodosha%2Fhall_of_fame/lists"}