Is there any working tutorial for setting up debugging in VS Code?

2023-12-27 Thread YesDrX
cool. Also Snap is pretty bad though, you may consider using choosenim () to install nim on Ubuntu.

Is there any working tutorial for setting up debugging in VS Code?

2023-12-26 Thread YesDrX
add "\--debuginfo --linedir:on" to your compile command, and install NativeDebug in vscode. After that, change your lunch.json so that the gdb/lldb configuration is pointing to the correct executable. ref:

Wrapper for GSL - GNU Scientific Library

2021-02-26 Thread YesDrX
c2nim is powerful and mostly fine; there are some scenarios that i need python (tree sitter) to help. some functions are defined in both upper case form and lower case form, like gsl_sf_bessel_j0 and gsl_sf_bessel_J0 they will be considered redefinitions in nim some typedef are prefixed with u

Wrapper for GSL - GNU Scientific Library

2021-02-25 Thread YesDrX
Hi, I just wrote an wrapper for GSL - GNU Scientific Library (all modules). <https://github.com/YesDrX/gsl-nim> GSL: <https://www.gnu.org/software/gsl>/

onnxruntime C Api wrapped for nim

2021-02-25 Thread YesDrX
Hi, I just wrapped onnxruntime C Api for nim. <https://github.com/YesDrX/onnxruntime-nim>

A random number generating library

2020-08-09 Thread YesDrX
Hi, I wrote a random number generating library. [Doc]([https://yesdrx.github.io/randgen/distributions.html](https://yesdrx.github.io/randgen/distributions.html)) [Github]([https://github.com/YesDrX/randgen](https://github.com/YesDrX/randgen)) import randgen when isMainModule

A simple bitsarray lib

2020-08-09 Thread YesDrX
Hi, I wrote a simple bits arary library, which can be applied to larger bits sets (any length) or high precision numbers. [Doc]([https://yesdrx.github.io/bitarray/](https://yesdrx.github.io/bitarray/)) [Github]([https://github.com/YesDrX/bitarray](https://github.com/YesDrX/bitarray

numpy like library for nim

2020-07-29 Thread YesDrX
Hi, I wrote a new project which is a ndarray/dataframe library in nim-lang only ([https://github.com/YesDrX/numnim)](https://github.com/YesDrX/numnim\)). If you are familiar with numpy, you know where I'm going. # DEPENDENCIES BLAS LAPACK nimblas nimlapack # IMPORT import ./src/n