Mark Stosberg

Results 527 comments of Mark Stosberg
trafficstars

They are common when all the numbers are allocated on a block, then a residence is split, as with an upstairs apartment. On May 20, 2015 7:50 PM, "Damon Oehlman"...

I've never seen a US street address with a street number with letters in like that. However, I searched for this address and it appears to be real. Strange. This...

I looked at the code and saw that there was some explicitly support for "apt" and "apartment", so I thought perhaps a "suite" should be treated like an apartment, since...

@lelandcope feel free to speed up the process with a pull request. You could also try [contact-parser](https://www.npmjs.com/package/contact-parser). I switched to using that instead a while ago.

Thanks. There is an open source postal code regex project here in ::zip : http://search.cpan.org/~abigail/Regexp-Common-2013031301/ You can also follow the Browse link and look in ./t/zip/ ...for tests. In the...

To specifically answer your question about US postal codes. There are only two valid formats: 5 digits and 5 digits followed a dash and then 4 more digits. Some of...

To be clear, I recommend preventing overwriting definitions for all of `action`, `role` and `entity`. Any of these could lead to a hard to spot security vulnerability when the a...

The project ships with a test suite which shows some examples.

The workaround is to use a container which provides the `aws` binary: ```yaml - name: Sync to S3 run: > aws s3 sync ./docs s3://${{ secrets.DOC_AWS_S3_BUCKET }}/ --acl public-read --follow-symlinks...