Matt Basta

Results 29 issues of Matt Basta

This would allow devs to make the patterns in their strings match the patterns in their templating or formatting engines. I.e.: a developer could change the pattern to `/\{([a-zA-Z\.]+)\}/` to...

For most Mozilla web projects, we use .PO files which are a pretty mature standard (and enable us to use xgettext to extract strings from our JS. Adding support would...

Similar to https://github.com/graphql-python/graphene/blob/master/UPGRADE-v2.0.md, is there a guide to upgrading to v3 from v2? I cannot seem to find any information beyond the list of changes from the GH release: https://github.com/graphql-python/graphene/releases/tag/v3.0.0

✨ enhancement

I was looking at the docs for background workers: https://channels.readthedocs.io/en/latest/topics/worker.html These docs show a very useful example of how to configure the router for two worker channels: ```py application =...

documentation

Consider the following check: https://github.com/uber/clay/blob/master/clay/database.py#L18 This line should be written as: ``` python if dbapi_name not in ('psycopg2', 'MySQLdb', 'sqlite3'): ``` `not dbapi_name` will evaluate to a boolean, which will...

https://github.com/ecto/bleach/blob/master/filters/youtube.js#L10 This line of code is invalid in strict mode, which will prevent the library from being used with many JavaScript tools. It should be safe to just remove the...

Hi there! I started using this for a new project I'm working on and it perfectly suits my needs. One thing I'm concerned about over time is that all events...

The input `x\ny` should produce the output `x\ny`, but it instead produces `x\ny`. The inner `` is incorrect; a `` should only be inserted if the previous line ends with...

For L10n purposes. Ideally, it wouldn't require a special global, so an external script could provide something like the following: ``` js window.fortnight = {options: {months: ['Janvier', ...]}}; ``` and...

PBR fails to compile when building zrtstr due to this error: ``` error[E0283]: type annotations required: cannot resolve `std::string::String: std::convert::AsRef` --> /Users/basta/.cargo/git/checkouts/pb-06f1c94bfc11587f/a1bf8ce/src/pb.rs:334:68 | 334 | base = base + repeat!(self.bar_current.as_ref(),...