Doug Coleman

Results 101 comments of Doug Coleman
trafficstars

What about renaming `count` in sequences to `count-by`?

The reloading code isn't perfect. Usually in cases like this you would ``make-my-image`` and bootstrap to get a working image.

My bad. Prettyprint not unparse. ``` "https://schema.org/version/latest/schemaorg-current-https.jsonld" http-get nip utf8 decode json> ... Running time: 5.066405167 seconds ```

Another thing that bothers me about ERROR: is the class name and the thrower word are the same. It shouldn't be like that imo.

It's a triply-nested `STRUCT:`. This fixes it temporarily. ```factor > TYPEDEF: IP_ADDRESS_STRING* PIP_ADDRESS_STRING TYPEDEF: IP_ADDRESS_STRING IP_MASK_STRING TYPEDEF: IP_MASK_STRING* PIP_MASK_STRING > TYPEDEF: IP_ADDR_STRING* PIP_ADDR_STRING STRUCT: FIXED_INFO { HostName char[MAX_HOSTNAME_LEN+4] } {...

The parser plan is to have everything parse to top-level forms which have strings that can then be looked up and compiled. The parser will know the exact text that...

Closing https://github.com/factor/factor/issues/1200 in favor of this ticket.

64 bit: git clone the source repo, `cd tests`, ```rust // edit src/main.rs // cargo run test use std::error::Error; use std::io; use rand_core::RngCore; use pcg_mwc::Mwc256XXA64; fn main() -> () {...

```rust [email protected] tests git:(main) ✗ cat src/main.rs use std::error::Error; use std::io; use rand_core::RngCore; use pcg_mwc::Mwc256XXA64; use pcg_mwc::Mwc128XXA32; fn main() -> () { let mut mwc = Mwc128XXA32::new(1, 1); let mut...

What I've done in the past is add unit tests for the 100,000th or millionth number for each test algorithm with a couple different seeds. Whatever doesn't take too long...