Sam Hocevar

Results 189 comments of Sam Hocevar

Hi! Just wanted to point out that using Vim bindings also helps people like me avoid RSI. Fewer keystrokes for a lot of common operations. I actually see it as...

FYI, I have tested the COLR/CPAL font in [Emoji.Wpf](https://github.com/samhocevar/emoji.wpf), a library that adds emoji support to WPF applications on Windows, and they work pretty well except for the bounding box...

Same problem here. The GUI crashes because my credentials have changed, before I can go to the settings to update the password.

Another way to see the problem is that in order to browse the first 50 result pages, ChocolateyGUI makes 5000 server queries instead of the expected 50.

@gep13 I have set up an HTTP proxy and I monitor the requests. Here is what I see: - When launching Chocolatey GUI: ``` [17/Sep/2020:16:22:39 +0200] "GET /api/v2/ HTTP/1.0" 200...

I am using Apache as a proxy, with the following simple configuration: ``` RewriteEngine On RewriteRule "^(api/.*)$" "https://www.chocolatey.org/$1" [P,L] ``` Then in Chocolatey I set up my source URL to...

FYI here is my implementation: ```js function ungroup_in_place(g) { for (let e of g.children()) g.before(e); g.remove(); } ```

I realise that everything works properly if the SVG is built like this: ```js var canvas = SVG().addTo('#canvas').size('100%', '100%') canvas.id('doc'); canvas.path('M0,0').id('a'); canvas.path('M0,0').id('b'); canvas.path('M0,0').id('c'); canvas.path('M0,0').id('d'); ``` So maybe the problem lies...

This issue still happens to us once in a while, but it looks more like a problem with libtorrent. We use version 0.13.8. I reviewed the protocol code to try...

Hi, I’m really sorry for not getting back to you about this. Did you find a way to build? Here are a few pointers for you: - if you are...