saikyun
saikyun
There are two alternatives for freja-dofile: ## Use an existing env when running dofile Benefits: - Simple due to no need to handle defonce and vars in a special way...
I've learnt that on Linux you can use `-rdynamic` to load native modules from built binaries. But when looking around this flag doesn't seem to be needed on windows. However,...
Am on `Janet 1.16.1-87f8fe14 linux/x64` `main.janet` ``` (def c (ev/chan 1)) (defn main [& args] (pp c)) ``` `project.janet` ``` (declare-project :name "chan") (declare-executable :name "chan" :entry "main.janet") ``` ```...
#### Is your feature request related to a problem? Please describe. It took me a while to realize that the slider didn't show up because of missing CSS, rather than...
Hello! I'm playing around with shadow-cljs + electron (which seems to work really nice!). dirac seems like it would benefit me greatly, so I tried adding it using electrons `BrowserWindow.addDevToolsExtension(path)`...
With this code: ```clojure (ns showcase.ghostwheel (:require [ghostwheel.tracer] [ghostwheel.core :as g :refer [>defn | =>]])) (>defn ^::g/trace ranged-rand "I was lifted straight from the clojure.spec guide" [start end] [int? int?...
Steps to reproduce: Create namespace: ``` (ns game.test) (defn add [x] (+ x x)) ``` Add it to `configuration.edn`: ``` :export-namespaces [game.test] ``` Then press `Arcadia/AOT Compile` in the unity...
Would it be possible for Arcadia to give absolute paths to clojure.core source files? Right now it gives "clojure/core.clj" which isn't very helpful. ``` (meta (resolve 'prn)) {:arglists ([& more]),...
When running ``` (def saturation-id (Shader/PropertyToID "_Saturation")) (.SetFloat mat saturation-id target) ``` where `mat` is a `UnityEngine.Material`, I get ``` InvalidProgramException: Invalid IL code in game$reactive$refresh_stamina_ui__20172:invokeStatic (object,object,object): IL_01cb: call 0x06fff620...