Kevin Renskers
Kevin Renskers
It's always been a bit weird to me that you need to remember to add the validation step yourself, like this (example from the official docs): ``` swift try CreateUser.validate(content:...
When I am parsing 64 Markdown articles with Python-Markdown, it was taking a little bit over 4 seconds, 3.1 of which was from the SmartyPants extension. It's so much slower...
When the socket server is restarted, the client socket connection gets the onclose event with code 1006. Since this isn't in `_reconnectableStatusCodes`, it never tries to reconnect again. Is there...
Currently when the connection is closed it tries to reconnect and on success calls this code: ``` $WebSocket.prototype._onOpenHandler = function _onOpenHandler(event) { this._reconnectAttempts = 0; this.notifyOpenCallbacks(event); this.fireQueue(); }; ``` A...
This code will show a message that will be dismissed when you tap on it, or slide it up: ``` [TSMessage showNotificationWithTitle:@"Test" type:TSMessageNotificationTypeWarning]; ``` This code however will execute the...
## :scroll: Description Fixes all the "Double-quoted include" warnings. You could easily trigger them by building the ObjC sample app. ## :bulb: Motivation and Context Closes #1072 ## :green_heart: How...
## :scroll: Description We're now caching the list of debug images, and invalidate the cache with the `_dyld_register_func_for_add_image` and `_dyld_register_func_for_remove_image` hooks. #skip-changelog ## :bulb: Motivation and Context Closes #1096 ##...
### Description In #1984 we added app permissions to the event payload, but we only do this when running in the main app. Let's investigate if we can remove that...
I expect the chart to fill the entire space within the white border, and that it's centered? Code: ``` swift import Reusable import TKRadarChart import UIKit final class ReportSpiderChart: UITableViewCell,...
The "media" attribute is not available for meta tags, so something like this is currently impossible: ``` ``` Would you want me to create a PR?