Daniel Bernier

Results 7 issues of Daniel Bernier

The SSN example was the motivation: I thought ignoring it would be enough, and was surprised to find values for an ignored field in the versions table. Hopefully, this saves...

Thank you for putting this together! I've been studying functional programming on and off for years, and this has reinforced some of the concepts I've learned, clarified others, and taught...

I'm thinking something like this: ``` ruby def draw_all reset_words while has_more draw_next end end def reset_words words.each(&:reset) end ``` (...except in java, not ruby.) We want a way to...

Hi, I think @treznick and I found a race condition between remotipart and jquery-ujs that is preventing buttons from being disabled ala `data-disable-with`, added in issue #31. In development, we...

`commitlint` fails auto-generated merge-commit messages; these should be allowed. ``` daniel@cracked project_dir % git merge develop → input: "Merge branch 'develop'..." Errors: ❌ parser: type: invalid character ' ' Total...

When I write a commit message in my editor, and save and close it, if the message fails `commitlint`, I have to recreate everything I wrote (re-gather reference URLs, re-copy...

`commitlint` currently fails the messages auto-generated by git for [`--fixup`](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---fixupamendrewordltcommitgt) and [`--squash`](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---squashltcommitgt) commits. I think `commitlint` should always permit these commit messages. Since the point of these commits is to...