Kasper Mikiewicz

Results 67 comments of Kasper Mikiewicz

@epresi Hey, sorry but all tasks are on hold now. I have rewritten app into https://www.electronjs.org and https://vuejs.org . Writing in C# is too much troublesome. I've already reimplemented most...

@epresi sure :) I just don't know if it should be released in new repository or overwrite this full of shame C# code

![app-with-images](https://user-images.githubusercontent.com/230404/94481901-c5524900-01d8-11eb-90d7-9837eab7e31d.png) Possible enhancements: - copy image as base64 string - copy image width/height - rotate image - `Alt+Left arrow` or `Alt+Right arrow` - save as file

Importing one by one fixed this for me: ```ts import maxSatisfying from "semver/ranges/max-satisfying"; import minSatisfying from "semver/ranges/min-satisfying"; import coerce from "semver/functions/coerce"; ```

`ctx.args.file.size` would also be helpful // Edit: `ctx.args.file.length` is available

@23doors any idea how to build query for that? For whereBetween this works: ```js whereBetween(column, min, max) { return this.where([ [column, 'gte', min], [column, 'lte', max] ]) } ``` For...

@23doors okey, thanks!

@mkucharz Maybe we should always forward user key if it's detected in current request, what do you think?

@mkucharz can you write at least one example? That sub request is still a part of main request which have user data.

@mkucharz should I also add alias `inc`? ``` data.posts.inc('votes') data.posts.increment('votes') ```