Kodi Arfer

Results 265 comments of Kodi Arfer

I'd like to release 1.0 in about a year, but that's probably not realistic.

Not that I know. Especially with the latest Hy, since hy2py should now be 100% accurate, so you can compile your Hy code to Python and use that if you...

> Even using Hy Core or similar namespaces No. (Unless you copy the relevant bits into your own code, of course.)

Sorry I was imprecise. I'm not sure it's necessary that the value be literally returned, no. I just mean that the error message should have more clues on which iteration...

Or perhaps the failed iteration could be identified post-hoc with `traceback`, if that's possible to implement.

I see. I missed that. I guess using the GPW raster directly as weights isn't an option for value rasters that are on a grid too different from that of...

Worse than the fact that they're inconsistent is that both are fail-silent.

I, too, would appreciate directories. I want to provide a separate data file for each year of my data, because each weighs 180 MB and users should only have to...

I've found that the following Greasemonkey script, which I based on [this](https://superuser.com/a/670040), successfully undoes site-specific bindings of `C-i`, allowing Vimperator's `C-i` to work as normal. Add `@include` lines to taste....

`fileAccess` is indeed not parallel-safe. Here's an example using `R.utils` 2.12.0 and `gunzip`, which calls `fileAccess` internally: ``` options(warn = 1) library(parallel) set.seed(10) cat(file = "test", rnorm(1e6)) R.utils::gzip("test", overwrite =...