Alessandro Pellizzari
Alessandro Pellizzari
I think `.context()` and `.with_context()` are misleading when reading code using them. They appear to add context to the operation, but they only add information to the error case. I...
Hi, whenever `WithError` is used to log a message, the cause is taken from the embedded error and the logged message gets completely lost. Example: ``` package main import (...
In this filesystem situation: ``` project/ |- app/... php stuff ... |- web/ | |- css/ | |- img/ | | |- bg.png | |- less/ | | |- main.less...
I am not sure if this is a bug or not. I tried storing a "pure" array in a Document, like this: $doc = Shanty_Mongo_Document:.create(); $doc->val = array('a','b','c'); $doc->save(); When...