Nathan Reynolds

Results 53 comments of Nathan Reynolds

Here is another use case. Automate calls the HTTP server on my laptop to see if I am working on my laptop. If so, Automate sends an intent for `Working...

Typically during the night, I have PPP set a silent profile. If a priority person calls during the night, PPP sets a loud profile so I will wake up and...

There were a few typos but I hopefully interpreted correctly what you are saying. I think you understand correctly.

I just hit this exception with the following query: ``` update City city set city.country = ( select country from State state, Country country where city.state = state and state.country...

The following steps did not help... 1. Close Eclipse IDE 1. Open the folder ...\\.metadata\.plugins 1. Delete the PMD related folders 1. Run `eclipse.exe -clean`

There is no `.pmd` file in the project folder. I fixed the error message problem but hit another. To fix the error message, I went into my PMD ruleset XML...

PMD Eclipse plugin does reload the ruleset. The problem is that it would fail to load the ruleset because of this relative path. `` If I give the full path...

Both of these methods have to do at least 1 pass at the entire stream before it can know which elements to skip or limit. So, neither of these methods...

Oh, I miss read the requirements. I thought `skipSorted()` had to return a sorted stream. If it doesn't, then this is definitely doable with an internal buffer.

I think if you document that duplicate Lists will be generated if duplicate elements are in the source list. Once could always do the following to eliminate duplicates... ``` ofPermutations(asList(1,1,2))....