Nurullah Akkaya

Results 14 comments of Nurullah Akkaya

I just use a shebang line at the top and make the script executable. See https://github.com/nakkaya/emacs/blob/master/devops/docker/resources/bin/ob-tangle.sh

Luke Hi, Ferret has no concept of reflection. That's the show stopper for doing things like, (.glDoSomething 567) I try to embrace C++ as much as possible but Ferret targets...

Hi, Currently string support is problematic. Most embedded targets lacks `std::string`, plain C strings are also problematic due to them using continuous memory, good for performance bad for memory fragmentation....

I've modified `new-string` from a macro to a function so instead of, (str "first name: " (get-first-name p) " last name: " (get-last-name p) you can write `new-string`, it will...

I've been researching this. I've found a bunch of projects that promises a C++ REPL. But I did not have time to check them one by one and see which...

### C++ Interpreters - cling - https://github.com/root-project/cling - nbind - https://github.com/charto/nbind/blob/master/README.md - Easy::jit - https://www.reddit.com/r/cpp/comments/8xyv3n/easyjit_justintime_compilation_for_c/ - https://github.com/RuntimeCompiledCPlusPlus/RuntimeCompiledCPlusPlus/wiki/Alternatives - https://github.com/BitFunnel/NativeJIT

### Notes on Cling Prebuilt versions are available from [1]. Generated code is compatible. Ferret generated C++ code be loaded and called. ;;core.clj (defn adder [x] (fn [y] (+ x...

Having a good matrix library is on my unofficial to do list for a while. Something along the lines of core.matrix a single API with multiple back ends including a...

Hi Aaron, For reading / controlling various sensors there examples at, - https://github.com/nakkaya/clodiuno/tree/master/resources/examples - http://nakkaya.com/clodiuno.html#sec-4 as for the GPS can you give me a link?

How do you talk to it from wiring? ## Nurullah Akkaya http://nakkaya.com On Sat, Jul 28, 2012 at 8:22 AM, Aaron Crow [email protected] wrote: > Hi Nurullah, > > Thanks...