Andrii Fidria

Results 19 issues of Andrii Fidria

Add more samples, add inline keyboards section

enhancement

It would be cool to have an option to keep only N latest versions of 'package-name' and deleting other versions. It can be used in combination with date-based deletion https://github.com/actions/delete-package-versions/issues/4

It's a bit confusing that Int.random(0, 100) can return 100 as well, ranges usually exclude the second value. Lot more confusing that `Int.random(range: 0..

Using URLSearchParams() as body doesn't set content-type to `application/x-www-form-urlencoded`. https://fetch.spec.whatwg.org section 5.2 ``` const body = new URLSearchParams({ grant_type: 'client_credentials' }) fetch(url, { method: 'POST', headers: { 'accept': 'application/json', },...

Please consider marking closures in methods such as forEachRow non escaping (@noescape attribute). They aren't capturing the closure anyway, but if this attribute is absent, closure requires prefixing member references...

I think it will be more convenient if Blob will use [UInt8] too. In many situations data fetched from Blob columns will be passed to functions expecting (NS)Data.

In Perfect-SQLite lastInsertRowId is truncated to Int. In SQLite it's int64: sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);

I was thinking if it's possible to map routes directly to methods of Controller. For example: ``` router.get("/", TodosController().index) etc ``` Resources can be implemented by adopting protocols. I.e. TodosController...

**Describe the bug** According to https://www.jsonrpc.org/specification section _5 Response object_ when _there was an error in detecting the id in the Request object (e.g. Parse error/Invalid Request)_, `id` MUST be...