/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.pamelafox.org
| | til.simonwillison.net
2.7 parsecs away

Travel
| | My LLM tool has a feature where you can set a LLM_OPENAI_SHOW_RESPONSES environment variable to see full debug level details of any HTTP requests it makes to the OpenAI APIs.
| | stribny.name
1.7 parsecs away

Travel
| | How to send a stream of data from FastAPI backend to a browser and display it.
| | blog.miguelgrinberg.com
1.3 parsecs away

Travel
| | miguelgrinberg.com
| | masnun.com
18.6 parsecs away

Travel
| In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...]