2024-11-17 - 2024-11-23
« Previous | Next »
Books being read Link to heading
- (pt-BR) Conversas Cruciais - Joseph Grenny & Kerry Patterson & Ron McMillan & Al Switzler & Emily Gregory
- (pt-BR) O Clube dos Negócios Estranhos - G.K. Chesterton
Discovered tools Link to heading
Learned Link to heading
- JavaScript
fetch
restricts the headers that can be accessed.- Default exposed headers:
Cache-Control
,Content-Language
,Content-Type
,Expires
,Last-Modified
,Pragma
- If you want to access other headers, the server needs to return an
additional header:
Access-Control-Expose-Headers: <accessible-header>
- Default exposed headers:
Read articles Link to heading
- Vector Databases Are the Wrong Abstraction
- The Ultimate Guide to Implement Function Overloading in Python | PixelsTech
from functools import singledispatch @singledispatch def log(message): print(f'invalid message:{message}') @log.register def _(message: MyException): print(message.msg) @log.register def _(message: str): print(message)
- Don’t Do This - PostgreSQL wiki
Read news Link to heading
Watched Link to heading
- (in progress) DHH discusses SQLite (and Stoicism)
- Homilia Diária | Morreram para converter os indígenas (Mem. de São Roque González e comp. mártires)
Listened Link to heading
- (pt-BR) Homilia Diária | Morreram para converter os indígenas (Mem. de São Roque González e comp. mártires)
« Previous | Next »