Chris Wood
Chris Wood
I've recently been using Flask-Mobility for a project or two (so thank you!) and quickly reached the point where I (a) needed more power, but (b) wanted to keep using...
https://en.wikipedia.org/wiki/Rule_of_three_(computer_programming) could be a useful counterpoint to the current explanation of [DRY](https://github.com/dwmkerr/hacker-laws/blob/master/README.md#the-dry-principle): > In practice, if you have the same piece of information in **two (or more)** different places, you...
[`IconBadge`](https://github.com/GetStream/react-native-activity-feed/blob/master/src/components/IconBadge.js#L34) defines ``` showNumber: PropTypes.number, ``` yet its default is `false`, at https://github.com/GetStream/react-native-activity-feed/blob/master/src/components/IconBadge.js#L16 and treated like a boolean at https://github.com/GetStream/react-native-activity-feed/blob/master/src/components/IconBadge.js#L53 Should be `PropTypes.bool` ?
Using v1.3.5, calling `sparkpost_client.transmissions.send(**message)` with `message` containing `... 'recipients': [ u'REDACTED Hernández ' ], ... ` results in this stacktrace: ``` UnicodeEncodeError: 'ascii' codec can't encode character u'\xe1' in position...
See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base Rare in the wild, I think, but possible.
as a complement to `max_requests` param, allow controlling how deep the crawler goes. The depth of a `Node` should be its shortest path back to a root/source-less `Node`
Should be able to say `Rule("form.my-class", ...` and similar.
Splinter: https://github.com/cobrateam/splinter As per https://splinter.readthedocs.io/en/latest/index.html , Splinter support multiple web drivers, inc JS-executing browsers like Chrome and Firefox as well as the test clients (Flask, Django) we currently support.
**Syntax:** [HEEx](https://github.com/phoenixframework/phoenix_live_view/pull/1440) is a/the successor to the LEEx template language for HTML in Elixir Phoenix, released in 2021. HEEx is already supported by [the Sublime syntax definitions currently in use...