Beni Cherniavsky-Paskin

Results 502 comments of Beni Cherniavsky-Paskin

https://github.com/SectorLabs/heroku-buildpack-git-submodule looks promising

For CodeMirror, setting dir=rtl was definitely not enough. It does too much by itself (drawing a cursor, motion etc) for that to work... A summer-of-code project improving CodeMirror bidi to...

Some existing links that come to mind: - [Open Science Framework](https://osf.io/) are building a lot of tools for science collaboration. - Math support: - [x] GitLab already supports math in...

> `HTTP.get("https://abc.example.com/foobar", :connect => "1.2.3.4")` > > looks easier to understand than: > > `HTTP.get("https://1.2.3.4/foobar", :host => "abc.example.com")` I want to second this :100: Semantically, when I have a URL...

AFAIK pandoc/latex image already contains everything you need for beamer presentations. Unless you mean to narrow down the /latex image to not contain beamer? I'm not sure how much that...

(There is by the way another way, to pre-process with KaTeX or MathJax generating the output HTML, without even needing JS when viewing. The resulting file is also smaller. Originally...

pushd/popd are inferior because an error (or manual Ctrl+C) leaves you in the wrong dir. A `withd DIR COMMAND` (not the best name) that reliably chdirs back would be very...

> So if you want to break in the function dostuff, you `set -a fish_breakpoints dostuff`. I think that's too much work and hard to discover. Many users would just...

A note on mirroring `try..catch..`, `begin..rescue..` naming from popular programming languagues: It will be misleading if the behavior is opt-in, i.e. if a regular `begin..end` ignores errors but `begin..rescue..end` reacts...

FWIW, I see `string split0` being magical: ``` $ echo [(printf 'a\na\0b' | string split0)] [a a] [b] ``` but I don't see it in `string split`: ``` $ echo...