Charl P. Botha

Results 61 comments of Charl P. Botha

We have at least one confirmed use of HTTPS_PROXY with nvpy, see this closed issue: https://github.com/cpbotha/nvpy/issues/57 nvpy is using stock-standard Python functionality for connecting to the simplenote server, and should...

Very strange. Could you post a screenshot? I'm using nvpy on 2560x1440 monitors in Linux and it all works perfectly. Could you give me steps to reproduce the issue?

I assume you're happy with the font and font size in your notes list and editor window: Those are configurable following https://github.com/cpbotha/nvpy#making-nvpy-slightly-less-ugly-on-linux With regard to the font size in the...

I have not been able to find such an approach. If you do, please let me know!

Based on this stackoverflow question: http://stackoverflow.com/a/4901653/532513 I made a benchmark comparing the different search possibilities. These are the results: ``` string.find 0.430104970932 re.search 1.78215408325 re.compile.search 0.605902910233 re.compile.search I 0.844277143478 text...

I've run more benchmarks on a text file of about 1000 words: ``` string.find 1.46725606918 re.search 3.21919608116 re.compile.search 2.47109103203 re.compile.search (case insensitive) 20.5269780159 text in string 1.30602288246 text in string...

My implementation is more or less done. Default is super fast gstyle case sensitive searching, but you can configure for case insensitive (much slower) and also for regular expression (with...

To get notifications working in Windows, I have the following bits under a windows conditional: ```emacs-lisp (setq alert-default-style 'toaster) (setq alert-toaster-command (expand-file-name "~/build/toaster/toast/bin/Release/toast.exe")) (setq alert-toaster-default-icon (expand-file-name "~/opt/emacs-26.2-x86_64/share/icons/hicolor/128x128/apps/emacs.png")) ``` - toaster...

> > If I run esbuild _without_ the `--external:...` params to exclude react (just to check!), the `define_module()` is successful, but the cell that's supposed to show the BoxWidget gives...

Thank you very much for looking into this Maarten! > running it like > > ``` > $ npm install rollup @rollup/plugin-replace @rollup/plugin-commonjs @rollup/plugin-node-resolve > $ npx rollup -c rollup.config.mjs...