Justin Mimbs
Justin Mimbs
Thanks for the report; that's intentional though. I like the consistency of having each level start with the same asteroids every time, and I don't find it detracts from gameplay....
Thanks for the feedback! Indeed, this was an exercise in learning Rust. But I don't play many games, and that's probably why I prefer the same starting conditions every time,...
Cool! The game is implemented as a library exposing a small interface, so should someone want to connect an AI to it, I would think it's already feasible, though I...
Here is more info about the expected clock times for those three minutes: ``` UTC | America/New_York ----- | --------------------------------------- 06:59 | 01:59 Eastern Standard Time (UTC-05:00) 07:00 | 03:00...
Hi Richard, I have a [date package][date] that parses all manner of ISO *date* strings (`YYYY-MM-DD`, `YYYY-Www-D`, `YYYY-DDD`, and their truncated forms, etc.), but not ISO *date-time* strings as this...
> @justinmimbs are you still maintaining your date package? Hi @jamesrweb, yes, I am.
@jamesrweb The `Date` package still doesn't expose [its ISO date parser](https://github.com/justinmimbs/date/blob/3.2.1/src/Date.elm#L965), but if it did (via, say, `Date.isoParser : Parser Date`), then it could be composed with [the ISO time...
Hi Coury, Despite a handful of requests to expose these functions, I've been reluctant to, because so far we've always found simpler solutions using the existing higher-level functions. Would you...
Hi Stephen, I agree; it would be useful to expose something for date validation. There are currently three create-date functions that don't fail on out-of-range values (`from[Calendar|Week|Ordinal]Date`), and it seems...
Thanks for the feedback, Stephen. That sounds good to me. Justin