Posts by naomijub • 36 points
3 posts
-
1
votes2
answers75
viewsA: With calling a file in Clojure?
First I created an app for example lein new app hello In src/hello/ created the file inicio.clj: ;;inicio.clj (ns hello.inicio) (defn hello [request] (let [name (get-in request [:route-params…
-
1
votes1
answer112
viewsA: Best Backend Platform for Microservices
I’ve never used Haskell for Microservices, but I really like Clojure with Pedestal. If your benefit is performance, I strongly suggest actix-web Rust, it has had the best benchmarks among all web…
-
0
votes1
answer442
viewsA: C# - How to make an orbital camera around the player?
Before explaining how I made the Camera rotate, I will show you the script I made for my player to move. Depending on how the player moves things can drive quaternions crazy. My motion script…