Daniel Grace

Results 17 comments of Daniel Grace

It does not. To do that, you'd need to go through and figure out remaining dV in the current stage (and subsequent stages until the burn completes) and probably do...

Probably related to krpc/krpc-core#11. My [proposed implementation there](https://github.com/krpc/krpc-core/issues/11) would handle the extension bits fairly nicely.

I think my hackish workaround checks to see if the user I'm question shares channels with us at the end of one of the relevant methods, and -- if not...

I didn't realize pydle even had a flood control model until I saw this issue -- after implementing my own solution in an IRC bot framework I'm working on. I...

Updated link with a different, cleaner implementation: https://github.com/dewiniaid/pydle-ircbot/blob/b85cb5bed4113099bab36be93a283a7daeb0088a/util.py#L34

Postgres 9.2 added native range types that largely supercedes this -- http://www.postgresql.org/docs/9.2/static/rangetypes.html Notably see tsrange and tstzrange.

I suspect `CREATE DOMAIN period AS ts[tz]range;` would have fixed most issues ;) The design for the range types in 9.2 originates from this, after all.