Daniel Krizian

Results 19 issues of Daniel Krizian

I have started emacs (v26.1) server: ```shell $ emacs --daemon ``` I connected using ``` $ emacsclient -t ``` From within emacs, well spacemacs, I restarted the daemon `SPC q...

Mocking the data namespace (without the leading dot): ```q $ cat test.q .tst.desc["Mocking"]{ should["support data namespace within the global namespace"]{ `myns.a mock `foo; `myns.b mock `bar; }; }; ``` throws...

In a lean package with just a single file, there is no need for the boilerplate overhead of `init.q`. At least, `init.q` should be optional, not mandatory. ```shell $ ls...

I'd propose that `weighted.median` function returns `NA_real_` instead of `logical(0)`, when all `x` are NAs: ``` R weighted.median(NA, 1, na.rm=T) # returns `logical(0)` ``` The problem with `logical(0)` output is...

This is just an enhancement/feature request to implement existing JavaScript `visibility` option: From http://dygraphs.com/tests/visibility.html : ``` new Dygraph( document.getElementById("div_g"), NoisyDataABC, { rollPeriod: 7, errorBars: true, visibility: [false, true, true] }...

Hi, I just wanted to report/share an observation that when `request-backend` is set to `'curl`, following error is thrown every time I move up/down the c++-mode buffer and Emacs freezes...

Would debugging tool such as https://github.com/martomo/SublimeTextXdebug work with `sublime-q`? Poor man's method of setting breakpoints [such as this one](http://www.kdbfaq.com/kdb-faq/how-do-i-set-a-breakpoint-inside-a-q-function.html) with `\e 1` toggle will freeze the Sublime Text session so...

enhancement

The timings for https://a.kx.com/q/state.q are interesting. State transition matrix is the fastest ``` \t 0b{$[x;y>6;y>11]}\p 151 \t 0 m\p 5 \t 0(0 0 1;0 1 1)\1+(p>11)-p11;1;x

performance