Nathan Reynolds

Results 32 issues of Nathan Reynolds

Please implement `toString()` in all classes. This will help when debugging since the programmer can see what the state of the object is.

Bitbucket Server has [rate limiting](https://confluence.atlassian.com/bitbucketserver/improving-instance-stability-with-rate-limiting-976171954.html). The rate limit starts with a bucket of say 50 requests and the bucket refills at 4 requests per second. I setup a smooth rate...

enhancement
rate limiter

Please add a way to send an intent for a custom sensor. Here is the "documentation" on such an event. ``` Send Intent [ Action: sk.henrichg.phoneprofilesplus.ACTION_SET_SENSOR_VALUE Extra: sensor_name:sensor name Extra:...

enhancement

**Is your feature request related to a problem? Please describe.** I would like != / = to be replaced with ≠ ÷ ≤ ≥ in most applications except for Eclipse...

feature request
low priority

Let's say I have the following code: ``` FluentRe. match('a'). optional(). possessive(); ``` Currently, it makes this regular expression: `(?:\Q$\E)?+`. Please simplify to `\$?+`. This will make it easier for...

Let's say I have the following code `CharClass.union(CharClass.digit(), ',')`. Currently, it makes this regular expression: `[\d[,]]`. Please simplify to `[\d,]`. This will make it easier for humans to read the...

Currently, `Fluent.match(char)` will take the character (e.g. `$`) and wrap it with `\Q` and `\E` (e.g. `\Q$\E`). This is harder to read than `\` (e.g. `\$`). Please make `Fluent.match(char)` smart...

Please add toString() to all classes and return the current regular expression. This will help when stepping through code that is building a regular expression.

I would like APIs added to FluentRe to handle positive/negative lookahead/lookbehind. Currently, I think the only way is to use Re.

How do I force the PMD Eclipse plugin to use the latest version of the ruleset? The ruleset is in a file on the local disk. I am not sure...