Adithya Dsilva
Adithya Dsilva
Is it possible to add a feature to flip a table, such that the rows and columns are interchanged? For example, table ``` ----------------------- | Header 1 | Header 2...
Make selectors a type (rather than a function) of a polymorphic interface `Selector`. Something along the lines as this: ```golang type Selector interface { Eval() (*Element, error) } type ElementSelectorR...
Currently, SSE responses are printed as is, without any formatting or highlighting ``` data:{...} ``` I'd like if a `sse` toggle is provided, splitting the response data by event name.
Hey @xalanq I wanted to contribute to this project, but upon inspection, I noticed a lot of repetitions and redundancies in the code. Also, lack of comments and disorganized code...
In the latest update, cf parse creates the following directory structure `$currdirectory/cf/contest//`. I liked the previous format much better, where the problem would be parsed to `$currdirectory//`. The new update...
Instead of linking the template file, making a copy of the template to the .cf folder would prove beneficial, as even if the original file got deleted, cf gen would...
The diff tool is a major inconvenience as it's not very useful to determine **where** our answer is wrong. You could instead try implementing a side-by-side comparison of the output/expected...
How would I create a kernel with a non-square/rectangular shape? Something like: ``` Conv2D ```
Currently, headers are by default set for columns. Can they be set rows instead of columns? Something like this ``` H 1 || R 1 | R 2 -----+-----+------ H...