Paula Gearon
Paula Gearon
It's only a bug in the server if the status code is in the 2xx range. If it's in the 4xx range then the body is undefined. It isn't nice...
Ah, I missed that PR #37 was doing this as well. Unfortunately, I pushed to the branch that this PR was based on with a completely separate change that I...
My first approach was to do simply translate the following: ``` (let (a (foo) b (bar)) body) ``` Into this: ``` ((fn (a) ((fn (b) body) bar) foo) ``` But...
OK, I have implementation attempt no. 1 committed. For now it's called `let`, not `let*`. It does simple var-to-value bindings. There's no unpacking (I'd like to see vector/array syntax and...
Seems that the environment array was designed with this purpose in mind. So `current_env` is now being set correctly. However, some benchmarking has shown that this doesn't actually help. Bash...
Asami would be useful as a repl-driven app, so I tried this... ```clojure (ns asami.main (:require [clojure.main :as cm] [clojure.repl :as repl] [asami.core :as asami]) (:gen-class)) (defn -main [& args]...
> @quoll > > With "after compilation" do you mean graalvm native-image compilation? > > In this case don't require at runtime, rather pull the require to the top-level. >...
No, it was just because it seemed obvious. I also need to consider adding `graph` to each pattern, since this is also a SPARQL thing
Sorry! I did not see this before now. I usually debug by interacting with the code as it goes, which may not be much help for you. The way `transact`...
I would usually do multiple inserts by either concatting the data and doing a single insert with a long timeout. The reason for that is so you don't end up...