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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <title>forEach vs. map</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
| <script src="./suite.js"></script> | |
| </head> | |
| <body> | |
| <h1>Open the console to view the results</h1> |
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
| {"fileData": {"/tmp/http-proxy-server/spec.md": {"file_path": "/tmp/http-proxy-server/spec.md", "rel_path": "http-proxy-server/spec.md", "content": "# HTTP Proxy Server Specification\n\n## Overview\nBuild a uvicorn-based HTTP proxy server that proxies requests to simonwillison.net, adding custom headers for identification and performance monitoring.\n\n## Requirements\n\n### Core Functionality\n- [x] Accept HTTP requests on localhost:8000\n- [x] Proxy all requests to simonwillison.net at the same path\n- [x] Preserve HTTP method (GET, POST, etc.)\n- [x] Preserve request headers (except Host)\n- [x] Preserve request body for POST/PUT/PATCH requests\n- [x] Return proxied response with original status code and headers\n\n### Headers\n- [x] Add `x-proxied-by: uvicorn` header to proxied response\n- [x] Add `x-response-time-microseconds` header with the time taken to proxy the request (in microseconds)\n- [x] Measure only the upstream request time, not the whole request cycle\n\n### Implementation\n- [x] Use httpx |
This file has been truncated, but you can view the full file.
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
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <script>window.DATA_GIST_ID = "61e520bb9dea7beae31cd9d494284256";</script> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Claude Code transcript - Code</title> | |
| <link rel="stylesheet" href="styles.css"> | |
| </head> |
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
| KJoK5Ntfr7/7flNg5AdjU17u/TWjhryv2sDtTec4n2fPig8SZhDgxqAFf2KRSCGXmiw23p2DZ49AZFFuOsz8VMYzgunmZvrmf/u/ssuCbIIw/Me/e7Ngzfox9T1Nja336jRxyYGVwwM9N08dcU95hPHogI6FEoE/PjNF4PHDP+EHAMRjJy0pzul0hpY73zymbd3FE0RmRBM4M0KRaLxJEwhF3kjOEyB3b+By+qJFcIa0/uTQ2jnVb15Mb6iKcap44hiiWCJ1j3v7BWV7xuld6NM7RxBzy/TkLpVIQ7z/l0jFznFy935TMoh1FwpEJHdirpmeMwNPZhLrPs6fEYqFoy9jAoDWBcIn4nvwBFNMV+5S8cTfT8BS13jrLgjmzHgh607MNdOTO6KNId7/SzFaHe+7i4SCca8ABbDtAkrpSsw107TuYvgyIXx3aRDfXSQa/2OTEL9+IohHx/TkDt02V1WJJxitDvZ02xxuy9BD78ntVqt5SC8SPvReyY0XM/TChZhzpv2aiSDmIzN8zUQQ8xeSO8EQJHeCIUjuBEOQ3AmGILkTDEFyJxiC5E4wBMmdYAiSO8EQJHeCIUjuBEOQ3AmGILkTDEFyJxiC5E4wBMmdYAiSO8EQJHeCIUjuBEOQ3AmGILkTDEFyJxiC5E4wBMmdYAiSO8EQJHeCIUjuBEOQ3AmGILkTDEFyJxiC5E4wBMmdYAiSO8EQJHeCIUjuBEOQ3AmGILkTDEFyJxiC5E4wRPjlLhAIREKh0+XinnhEvkT1LrebI6aAXCbNz0qRSEJpxm531jS2jdgd3BNJOOUOoRfnpsdq1WKxyGS21jS2Dw4ZBRy3bV1FS0cPPvKrbV61qHfAcLe2mf8ok0rWLy/FtuevV2IrvnJZWZ5Grbp6uxZ7wMei3HSdJurzy3emssh/PlgBq2mjVUtL825WNuCg/kWRCnlpQaYqUoGy2WK7W9c8bLRwREh0WnWEXFZ9/zkGpSArBQJo7+7nnkjCKffCnNSEWE1nz4DBaE5Liisr |
OlderNewer