Maxim Lavrinenko
Maxim Lavrinenko
Hi! With small fix the lib can serialize array of objects to CSV: src/Visitor/Csv/CsvSerializationVisitor.php:133 ```php } elseif ($headers !== count($result)) { ``` to ```php } elseif ((is_numeric($headers) ? $headers :...
Hello! Here is an example how to implement refresh on a class component: https://github.com/ag-grid/ag-grid-react-example/blob/8aa7ab541c3c4a30f5b4867d88d8704e93b3f549/src-trader-dashboard/components/renderers/HorizontalBarComponent.jsx#L48 But we use only functional components. Is it not possible or just missing example?
Great tool! I have a feature idea how to extend its flexibility by providing ability to combine stdin input and user input with an option: ```bash sc programmer "write a...
This solves https://github.com/efugier/smartcat/issues/55 but surely introduces a BC and some bugs, but I'm not sure how to handle it. It seems like prompt_customizaton_text should not be cloned, but consumed and...