Kevin Renskers

Results 60 issues of Kevin Renskers

Selectors (type SEL) are currently not encoded and decoded.

I have a form a in app that uses a tab bar. After dismissing the keyboard the bottom inset of the table is too small, so that the tab bar...

Super simpel test. ```swift import Malibu enum Endpoint: RequestConvertible { case fetchUsers static let baseUrl: URLStringConvertible? = "https://jsonplaceholder.typicode.com/" static var headers: [String : String] { return ["Accept" : "application/json"] }...

I've been playing around with the [CodyFire](https://github.com/MihaelIsaev/CodyFire) network library recently and while it has some flaws (and doesn't use promises), it uses Codable throughout in nifty ways. For example, it...

If I have a link (just an `a` using `use:link` for example) somewhere at the bottom of a long page, and press it to navigate to another route, that new...

I am working purely with immutable data in my Svelte app, so I figured I'd set `immutable` to `true` in my Rollup config. ``` plugins: [ svelte({ immutable: true, //...

When you take the example project in this repo, App.svelte says that everything under `blog/*` is a valid url, to be handled by the Blog component. The Blog component only...

Let's say I have an User object, and an user belongs to a group. ``` @interface User : NSObject @property (strong, nonatomic) NSString *firstName; @property (strong, nonatomic) NSString *lastName; @property...

enhancement

I have a model where one of the properties is a dictionary like this: ``` struct MyModel: Codable { let userIds: [String: Bool] } ``` This works fine, it decodes...

This seems like a great project, but I can't get simple subfolder paths to work for a static HTML website. No JS, no SPA. Start server with `lite-server --baseDir="deploy"` When...