Releasing Constantine v0.1.0 - A modular cryptography stack for blockchain and proof systems

2024-07-08 Thread wwang1990
Congratulations :) I hope your Constantine will be the foundamental stones of blockchain.

Which VSCode plugin do you recommend?

2023-12-03 Thread wwang1990
Yes, please

What's stopping Nim from going mainstream? (And how to fix it?)

2023-12-02 Thread wwang1990
For myself, a (good) working sublime text plugin. I have not used the vscode plugin, but I will try.

Which tools do you use to code in Nim?

2023-11-06 Thread wwang1990
sublime + nimplus

Need help writing a helper function?

2023-09-21 Thread wwang1990
Glad to know all of those, Thank you.

Need help writing a helper function?

2023-09-21 Thread wwang1990
Thanks for the suggestions, I am honoured to hear from you. I will try to familiarise myself with the std documentation.

Need help writing a helper function?

2023-09-21 Thread wwang1990
The reason for this is that scanning through the std documentation seems to take too much time. I just want to set up some basic data and move on from the data, find the associated function, select the possible function, then see the function docstring and examples.

Need help writing a helper function?

2023-09-21 Thread wwang1990
Thank you! I use python and julia as my main language. In python, I find the following snippet very helpful. from rich import inspect as ri alist = [1, 2, 3] ri(alist, help=True, methods=True) Run As for nim, I want to know which function will act on alis

Need help writing a helper function?

2023-09-21 Thread wwang1990
Hi there. I am just starting to learn nim, and I am asking the GPT-3.5-turbo to write a function for me (see the following). I am impressed with the result, although it does not compile. What is the correct way to write this function? 01:user: when I write code in nimlang, how to find the functi