hobovsky

Results 58 issues of hobovsky

Create a description of leaderboards concept. Point to possible leaderboards: - "Leaderboards" page, - Dashboard, - "Social" tab - Rank leaderboards API endpoint (`/api/v1/leaders/ranks/${lang}?page=${page}`)

documentation
kind/concept

Sometimes users complain about missing possibility of controlling the trainer editor. Its possible to change behavior of the editor, but UI does not expose this function. Maybe it would be...

```java import java.util.*; import java.util.stream.*; import java.util.function.*; import org.junit.jupiter.api.*; import org.junit.jupiter.params.*; import org.junit.jupiter.params.provider.*; import static org.junit.jupiter.api.Assertions.*; // Values source @ParameterizedTest @ValueSource(strings = {"", " "}) void isBlank_ShouldReturnTrueForNullOrBlankStrings(String input) { assertTrue(Strings.isBlank(input));...

kind/recipe
language/java

Show how to set up local environment to create C++ kata or train on them.

documentation
kind/tutorial
lancuage/cpp

Create a howto on fixing kata issues. Current workflow for fixing bugs and problems with kata is somewhat messy and not easy to grasp. Improvements are planned, but until we...

documentation

Examples of test suites: - JUnit 5 Parametrized tests: https://www.codewars.com/kumite/5f27d39d3ec3ea00247dd917?sel=610927453c76bb0032bac272 - JUnit 5, jqwik, AssertJ: https://www.codewars.com/kumite/5c7fda4597757616ec9344ab

documentation
kind/tutorial
language/java

Create a tutorial explaining to authors why restrictions related to code are a bad idea. Point out possible pitfalls: - blocking things is an arms race - dynamic evaluation -...

documentation
kind/tutorial

I can't do this right now, and I don't want to forget: Troubleshooting FAQ could use some additional bullet points in "confusing tests output" section: - mismatched line numbers (numbers...

documentation
enhancement

Motivated by #233 Create a HOWTO on how to write performance kata and how to verify them. JohanWiltink here: https://github.com/codewars/docs/issues/233#issue-783792614 > I would like to see a little more technical...

documentation
kind/recipe

There's a stub of [Criterion reference](https://docs.codewars.com/languages/c/criterion), but it needs to be improved. Online documentation of Criterion is to be found here: https://criterion.readthedocs.io/en/master/intro.html Codewars docs could use some small excerpt of...

documentation
kind/reference
language/c