Simon Brooke
Simon Brooke
Hi Excellent project, congratulations. I am an enormous fan of structure editors; I cannot understand why anyone should prefer a text editor. I've OCRed the editor documentation for Portable Standard...
Given this input data row: ``` Aldershot;Leo Docherty;12;Hampshire;76205;26955;15477;3637;1796;1090;0;0;0 ``` (from [here](https://www.electoralcalculus.co.uk/electdata_2017.txt)) I get this output: ``` ["Aldershot" "Leo Docherty" "12" "Hampshire" "76205" "26955" "15477" "3637" "1796" "1090" "0" "0" "0"]...
Hi, this includes: 1. Optional recognition of numbers in data; 2. Optional recognition of dates/times in data; 3. Optional recognition of first row as field names; 4. Option to supply...
Specifically, do you envisage your stack as a fixed-size vector as Clojure, or as a linked list in heap space as in most other Lisp implementations? Do you intend to...
Hi, Dali is beautiful, and I love it; however, the performance on render is very poor. Rendering a 46Mb SVG file too eight hours fifteen minutes, vs 16.7 seconds with...
You just saved me a WORLD of grief.
As you know I'm working on parsing Migratus migrations and using that parse-tree to build a complete application skeleton wrapping the database. Obviously also there is information required to build...
If you're building a project which may be delivered as an executable jar file, it's obvious that parameters can (and should) be supplied as environment variables. However, if you're delivering...
Hi folks I tend to use Codox and Cloverage together to document my projects, and this leads to two trees of HTML documents, one containing the documentation and one containing...
It's fairly common in Clojure documentation to have the following snippet: ```markdown ## Usage To use this library in your project, add the following leiningen dependency: [org.clojars.simon_brooke/html-to-md "0.3.0"] ``` In...