Kasper Mikiewicz

Results 62 issues of Kasper Mikiewicz

Search input should handle use this [algorithm](https://en.wikipedia.org/wiki/Approximate_string_matching)

enhancement
on hold

Implement theming system

enhancement
on hold

``` vscode.commands.executeCommand("browse-lite.setSize", { width: 320, height: 640, }); ```

```js data.posts.decrement('votes') // Decrement by 1 data.posts.where('id', 10).decrement('votes', 13) // Decrement by 13 ```

FEATURE
CORE
PRIORITY: HIGH
Hacktoberfest

```js data.posts.increment('votes') // Increment by 1 data.posts.where('id', 10).increment('votes', 13) // Increment by 13 ```

FEATURE
CORE
PRIORITY: HIGH
Hacktoberfest

```js // Get posts in random order data.posts .inRandomOrder() .list() ```

FEATURE
CORE
PRIORITY: LOW
Hacktoberfest

```js // Get posts created in 2017 data.posts .whereYear('created_at', 2017) .list() ```

FEATURE
CORE
PRIORITY: LOW
Hacktoberfest

```js // Get posts created in March data.posts .whereMonth('created_at', 3) .list() ```

FEATURE
CORE
PRIORITY: LOW
Hacktoberfest

```js // Get posts where created at day is 22 data.posts .whereDay('created_at', 22) .list() ```

FEATURE
CORE
PRIORITY: LOW
Hacktoberfest

```js // Get posts with given date data.posts .whereDate('created_at', '2017-06-22') .list() ```

FEATURE
CORE
PRIORITY: MEDIUM
Hacktoberfest