Results 59 issues of nomennescio

When trying to scale Cropper to select a larger screen area, Cropper (1.11) will NOT go beyond 1492 pixels. This makes Cropper useless for larger captures.

Currently the Inspector shows a list of values for container objects. Typically each entry for nested structures show a short prettyprinted representation of the element only. It would be nice...

Maybe it's just me, but I find myself resorting to bit operators quite often, and am longing for a more terse representation, such as in C. However, some symbols are...

The math.bits library creates virtual sequences of bits, where each bit is either `f` of `t`. When working with binary numbers, it's very useful to treat them as `math.vectors`. However,...

Currently, the Factor syntax for character literals is very verbose when compared to other languages; `CHAR: a` where typically `'a'` is sufficient in many other languages. Can we introduce a...

By default, Emacs on Windows registers the path to its binary in the registry. Use that as first choice to find Emacsclient. Extended `windows.registry` with `query-registry` to read actual values...

Would it make sense to have an "unlimited" precision floating point library? It could be build on top of bignum primitives. I think that would be quite a unique feature....

Factor : "d188c1b87f4d0e2d84450919e59dd09a226836ea" Running on Windows 10 When launching the Listener, the mouse icon shows a "busy wheel/circle" every second, even when not hovering over the Listener area. I also...

ui
windows
mouse
hang
input-methods

Forth had `(` - `)` pairs for block comment, and `\` for until-EOL comments. These inline comments were so commonly used to annotate stack effects of words, using `--` to...

Currently, the documentation for `ERROR:` incorrectly states: ``` The following two snippets are equivalent: ERROR: invalid-values x y ; TUPLE: invalid-values x y ; : invalid-values ( x y --...