Carlos A Saavedra
Carlos A Saavedra
I've looked in the code, but I have not found anything useful to send TWiML messages https://www.twilio.com/docs/sms/twiml/message . Just asking before I create a PR to add the functionality.
I've been trying to get dates but instead I'm getting numbers. `1985-01-04T00:00:00Z | 1899-12-30T00:00:00Z`. The numbers are hardcoded, no formulas or anything. Only strings are returned correctly. ```go if xlFile,...
Adding support for quick pointer conversion. This is much more helpful when setting up structs with pointer fields. So that instead of: ```go v := "value" MyPointerVar = &v //...
Adding support to sort any slice type using `sort.SliceStable`.