Jean Mertz
Jean Mertz
Unsure why, but Safari returns an error when installing the latest version of the plugin: Safari version: 10.0.1 (12602.2.14.0.7) macOS version: 10.12.1 (16B2657)
These two work fine: ``` $ pxctest boot-simulators --destination "name=iPhone 7,os=iOS 10.3 --deviceset /tmp/test-simulators" $ pxctest boot-simulators --destination "name=iPhone 6s,os=iOS 9.3 --deviceset /tmp/test-simulators" ``` These two don't: ``` $ pxctest...
This change exports the functions `GetJSONRaw`, `SetJSONRaw`, and `DelJSONRaw`. When writing your own custom transformers, these functions greatly reduce your own boilerplate.
I think it would be a good idea to move the table buttons outside the toolbar, as they take up almost 33% of the space in the toolbar and are...
It would be nice if a double click on an image doesn't show the `insert media` model, but instead introduces a new modal in which the user can edit the...
Zap has support for [`Stringer`](https://github.com/uber-go/zap/pull/32), which indeed makes the log entries a bit more simple to construct. However, the real power to me would be if it also had a...
I'd like to take an existing logger, use `WithOptions` to clone/extend it, and also switch the `LevelEnabler` to `zap.AtomicLevel` (and keep a reference, to support log level switching on the...
I noticed the chapter on [unsafe code](https://github.com/ANSSI-FR/rust-guide/blob/master/src/03_libraries.md#unsafe-code-in-libraries). There's a TODO mentioning: > check that no unsafe blocks appear in the imported dependencies You can do that without tools, if you...
With this change, the first argument to the command is parsed as a regular expression and matched against the list of available log groups. For each matched log group, the...
I'm learning how to use `syn`, and after starting with some simple examples, I'm now running into issues that relate to blocks, specifically, how to: * store the `TokenStream` of...