Sam Hocevar

Results 69 issues of Sam Hocevar

This a thread for screenshots.

wontfix

The attached patch adds support for libcaca: http://zoy.org/~sam/patches/0002-First-go-at-a-libcaca-input-output-driver.patch The patch causes libcaca to take precedence over ncurses if the CACA macro is defined. I am not familiar with SCons so...

Hello. I am not (yet) a CLI11 user but I am growing frustrated with the bugs in [clipp](https://github.com/muellan/clipp) and CLI11 seems like a very mature alternative. The README states that...

On Windows, “scp C:/foo/bar remotehost:” will attempt to connect to a remote host “C” and access file “/foo/bar”. There is currently no syntax or flag to allow copying files that...

When showing page X of an online gallery and clicking “next”, instead of performing one HTTP query with *e.g.* `$skip=Z&$top=30` (with Z = 30×(X-1)), the GUI also does 2X-1 more...

# Bug report ## Fiddle https://jsfiddle.net/azqoxptd/ ```js data = ` ` var canvas = SVG().addTo('#canvas').size('100%', '100%') canvas.svg(data); let do_something = function(e) { for (let child of e.children()) do_something(child); if (e.position()...

# Bug report ## Fiddle https://jsfiddle.net/3rof824w/ ```js var canvas = SVG().addTo('#canvas').size('100%', '100%') g = canvas.group() g.add(canvas.rect(100, 100).move(50,50).fill('red')) canvas.rect(100, 100).move(100, 100).fill('blue') g.ungroup() ``` ## Explanation Ungrouping `g` brings the red square...

Using the following: ```cpp auto dither = ( command("dither").set(run_mode, mode::dither), option("--palette") & value("palette", palette), option("--hicolor").set(hicolor, true), option("--error-diffusion").set(error_diffusion, true), value("image").set(in) ); ``` Help string looks OK: tool dither [--palette ] [--hicolor]...

**Describe the bug** When integrating a more recent version of Zep, I was hit by a bug where my whole editor went black. This did not happen when compiling in...

Hi, I plan to work on a few features / changes and I’d like to know your opinion about which ones would have a chance to land in your project,...

enhancement :sparkles:
question