Joe Corneli

Results 33 comments of Joe Corneli

https://michel-kraemer.github.io/citeproc-java/#what-is-citeproc-java is maybe worth looking into for parity with https://github.com/andras-simonyi/citeproc-org — here's a screenshot produced using the latter and `org-html-export-to-html`: ![Screenshot from 2021-03-30 19-04-15](https://user-images.githubusercontent.com/179958/113036815-a08d5d00-918c-11eb-8e9d-658c722d8918.png)

Quick work-around ```lisp (defun delete-something-here () (interactive) (if (get-char-property (point) 'composition) (delete-region (point) (1+ (point))) (delete-forward-char 1))) (global-set-key [delete] 'delete-something-here) ```

Here's what I see when compiling: ``` figwheel_1 | [Figwheel:WARNING] Compile Warning target/public/cljs-out/admin/kixi/stats/estimate.cljc line:34 column:13 figwheel_1 | figwheel_1 | cljs.core/*, all arguments must be numbers, got [any #{js/Number clj-nil}] instead...

I notice in \*URL-DEBUG\* that if I don't hard-code the cookie (as suggested in #10) then sometimes the file seems to contain a truncated cookie: Cookie: HttpOnly=nil; NID=132=1VGl6Z2-44w9IfQFjBA3uEOTAo43GNCXcO2C3PM4fz3IkNLw0BCpM7AbJE96tPH3Xq2TWfdMVdzL0rvjH-7rqMXLjUxzGyPhiHBkEbFfoLgLra45o7d7cq_yK45JkBl- as opposed...

I seem to still get the error, despite applying the fixes that have been suggested. This is the same whether I run on the **next** or **master** branch. Context. ```...

https://tex.stackexchange.com/a/450862/4357 contains a work around that works for minted as well! It might be nice to have some way of achieving the effect that "just works" out of the box...

FYI, with a recent version of cider, I tried to connect to a server and got this message: > nrepl-connect: [nREPL] Direct connection to my.server:43681 failed; try setting ‘nrepl-use-ssh-fallback-for-remote-hosts’ to...

In particular: https://gist.github.com/politza/3f46785742e6e12ba0d1a849f853d0b9#file-scroll-other-window-el posted to that issue in 2016, along with these org-noter -specific integration steps: ```lisp (require 'scroll-other-window) (add-hook 'org-noter-notes-mode-hook #'sow-mode) (setq org-noter--inhibit-location-change-handler t) ```

How about the case of relatively simpler server-side plugins/hooks?

Caveat: programming-wise I am coming from an [Emacs](http://www.gnu.org/software/emacs/manual/html_node/emacs/Hooks.html) and [Drupal](http://api.drupal.org/api/drupal/includes!module.inc/group/hooks/7) background -- two places where hooks rule (as explained at those links... and especially for Drupal). If the right way...