Robb Shecter

Results 126 comments of Robb Shecter

:+1: for this idea because this flow is so common and it's in line with the gitless philosophy. * I'm on master * I want to create a new branch...

Would an option similar to Ruby's `-I` CLI option be enough to fix this?

Rubocop has nice solutions for this. E.g., one can exclude certain files from a certain check. I use this to tailor the checks for specs, eliminating the false positives: ```yaml...

I use Docker Compose for my dev environment, and Solargraph running on the host machine with VS Code. I just do a `bundle install` on my host machine, and install...

> Hey! This is currently based off of your [`dogweather/master`](https://github.com/dogweather/textstat/tree/master) branch, which contains changes for #190. We can either rebase this onto [`textstat/master`](https://github.com/textstat/textstat/tree/master), or wait until [`dogweather/master`](https://github.com/dogweather/textstat/tree/master) is merged. Thanks!...

@LKirst What do you think about the idea of this PR? I realize it's not exactly what the architecture describes. Instead I wanted to make the smallest change possible and...

Note also, `difficult_words()` only returns the count of _distinct_ difficult words, not the total in the text. IMO this is a bug and has been giving wrong results: #192 #193

I believe this is a problem that [stemming](https://medium.com/@tusharsri/nlp-a-quick-guide-to-stemming-60f1ca5db49e) solves. E.g.: 1. The Dale and Chall wordlist is converted to a set of the stems of the words. 2. An input...

> Great idea. Could we separate regular inflection from irregular word formation using an NLTK stemmer? > Could you implement your solution? Totally — I'll start a PR. I'll look...