specify lib dir by `--passL` can not work

2023-12-31 Thread galaxyDragon
Why don't you copy libssl-1_1-x64.dll to code/me/test-nim ?

specify lib dir by `--passL` can not work

2023-12-30 Thread galaxyDragon
You should copy dll file to the code/me/test-nim at least.

ccal: Calendar with local holidays via ip location

2023-12-24 Thread galaxyDragon
How can we know a correct 'country code' ?

ImPlot library

2023-10-03 Thread galaxyDragon
Now all demo (over 50) programs have been implemented in Nim language [nim_implot](https://github.com/dinau/nim_implot#example-gallery-written-in-nim-language)

ImPlot library

2023-09-29 Thread galaxyDragon
I know Futhark is an excellent tool in tranlating header files from C language to Nim lang. Original ImPlot lib actually has been written in C++ language. In this case Futhark translates to Nim lang through CImGui lib written in C language, so Futhark can't generate the functions that have, 1

ImPlot library

2023-09-27 Thread galaxyDragon
I don't know yet all functionality of ImPlot so far, if you have any questions it would be better ask to [authour of ImPlot lib](https://github.com/epezent/implot) . Live demo is here please try it, [ImPlot Live Demo](https://traineq.org/implot_demo/src/implot_demo.html) [ImGui Live Demo](http

ImPlot library

2023-09-27 Thread galaxyDragon
> Do you intend to write a high level interface for it at some point? This library is just FFI library to ImPlot lib so I will not make high level interface. Perfomance of large amount of data might not be high because ImPlot is based on [ImGui](https://github.com/ocornut/imgui) . Live demo is

ImPlot library

2023-09-27 Thread galaxyDragon
Signetures of Plot functions imported just have pointer arguments at this moment, for instance, proc ipPlotLine*(label_id: cstring , xs: ptr float32 , ys: ptr float32 , count: int

ImPlot library

2023-09-26 Thread galaxyDragon
I'v made [ImPlot library binding](https://github.com/dinau/nim_implot) for Nim. [ImPlot](https://github.com/epezent/implot) is an immediate mode, GPU accelerated plotting library for [Dear ImGui](https://github.com/ocornut/imgui) . Running examples: nimble install https://github.c

GUI app with nim

2023-07-05 Thread galaxyDragon
Just FYI. I've made ImGui example for showing and input my local country language with UTF-8 strings. [Github page is here](https://github.com/dinau/imguin) [My private app demo](https://www.youtube.com/watch?v=Ea0t7b9Kmq4) at this moment. (Sorry you could'nt read the strings of labels :-)

`--os:standalone` gives `Error: system module needs: getCurrentException`

2023-01-20 Thread galaxyDragon
This is just information. I've added Serial class to nim-platformio project. Repository is here, Compiling: $ git clone $ cd nimPioArduino $ pio

`--os:standalone` gives `Error: system module needs: getCurrentException`

2023-01-20 Thread galaxyDragon
Try this ? $ pio run -t clean $ rm -fr src/nimcache $ pio run

`--os:standalone` gives `Error: system module needs: getCurrentException`

2023-01-20 Thread galaxyDragon
Try these options ? , `--os:any --gc:arc -d:useMalloc --exceptions:goto` `-d:noSignalHandler`

Nimv : Simple CUI wrapper for Choosenim command

2023-01-14 Thread galaxyDragon
I've uploaded [Nimv : Simple CUI wrapper for Choosenim command](https://github.com/dinau/nimv) on Github page. Nimv is just very simple CUI wrapper for Choosenim.

noob: getch giving AssertionDefect etc

2022-12-08 Thread galaxyDragon
This code works well on my Windows10 PC. # test.nim import terminal echo "press a key" let a = getch() echo a Run This can compile and run on command line, > nim c -r -d:release test.nim Run

Pegs?

2022-12-08 Thread galaxyDragon
This is for peg definition. #this also works well let p = peg""" exp <- {orbi} {data}+ orbi <- \d+ '-' \d+ ':' \d+ '.' \d+ '.' \d+ data <- '(' [0-9a-zA-Z:.*\-]* ')' """ Run

Nim On AVR

2021-11-26 Thread galaxyDragon
I've uploaded [Nim On AVR](https://github.com/dinau/nimOnAVR) on Github page. **Nim On AVR** has some examples to use Arduino Uno/Nano board with Nim language.