Is it possible to use the haggling face model in the Nim language?

2023-09-06 Thread nnahito
@giaco Thank you for your reply. nimpy, I'll try it! Thank you

Is it possible to use the haggling face model in the Nim language?

2023-09-05 Thread nnahito
I am wondering if it is possible to use the Model published in Hagging Face in the Nim language. For example, the following translation model. Basically machine learning is strong in Python, but I would like to go with Nim if possible. Recently, ther

Continuous use of parseJson causes software crash

2021-10-20 Thread nnahito
Thank you! I'll try it

Continuous use of parseJson causes software crash

2021-10-20 Thread nnahito
Thank you for your reply. I now understand that parseJson is unlikely to be the source of the crash. I feel very sorry that I cannot present the source code.

Continuous use of parseJson causes software crash

2021-10-19 Thread nnahito
I'm using a library called wNim to create GUI software. It is a chat client in Nim that uses WebSocket. The server sends the data in JSON. So I am using parseJson to parse JSON. | However, when I run the software, the software suddenly crashes. At first I couldn't figure out the cause

Stack trace of runtime errors will be the path of the developer's PC.

2021-06-23 Thread nnahito
Thank you for your answer. I have `switch("d", "release")` in config.nims, but Doesn't this make it a release build?

Stack trace of runtime errors will be the path of the developer's PC.

2021-06-23 Thread nnahito
Thank you for your answer. So it is natural that the path of the developer's PC is displayed? I didn't know that. Thank you very much.

Stack trace of runtime errors will be the path of the developer's PC.

2021-06-23 Thread nnahito
The user folder name on my PC is "nnahito". I created software in the Nim language, did exe compilation, and distributed it. One day, a user sent me a screenshot of a runtime error. There is find the stack trace information. I had not written try...catch, so the exceptions were writt

Is the official Nim DLL redistributable?

2021-05-17 Thread nnahito
Thank you very much. I figured out about the nim dlls for now!

Is the official Nim DLL redistributable?

2021-05-11 Thread nnahito
I have created an application in Nim. I'm going to distribute it. In doing so, I am using the functions of the DLL distributed on the official Nim page. -> Can I distribute these DLLs with my application? I don't understand the license. If anyone knows,

How to use SharedList

2021-05-05 Thread nnahito
Thank you for your answer. I have successfully completed the implementation as I requested! Thank you very much.

How to use SharedList

2021-05-04 Thread nnahito
I would like to share the seq[string] variable across multiple threads. I found the following article with the comment "you should not share any heap-allocated managed objects (refs, strings, seqs) across threads". I also found a notation that says "I would suggest using the standard library's

I want to use gecko driver headless.

2021-04-12 Thread nnahito
Thanks for the upgrade! I have run the code you gave me. I ran the code you gave me and got the results I was looking for. I will take advantage of this program. Thank you very much!

I want to use gecko driver headless.

2021-04-11 Thread nnahito
@b3liever @jyapayne Thank you for your reply! I try halonium and run @jyapayne 's code. It worked just the way I wanted it to! Thank you very much. If I wanted to, could I start the chrome driver in hidden mode?

I want to use gecko driver headless.

2021-04-10 Thread nnahito
Thank you for your code. I immediately downloaded the WebDriver code locally and rewrote it with your code. However, I couldn't get the text of the element, probably because findElement or some other process was failing. When I commented out --headless and ran it, I got the browser screen and

I want to use gecko driver headless.

2021-03-31 Thread nnahito
Thank you for your reply! > try using the Chrome web driver. I see. I'll try it! Thank you very much!

I want to use gecko driver headless.

2021-03-31 Thread nnahito
Thank you very much for introducing a nice library, @yglukhov! I immediately ran the sample code, but I could not start it with the following error code. Additional info: "Requested command not found: \'\'. OS error:" Exception type: [OSError] Error: execution of an externa

How can I use SendMessage?

2021-03-31 Thread nnahito
Thank you everyone for an answer. I wrote the code referring to the answer from @shirleyquirk and it worked properly! Thank you very much. Also, thank you for the interesting information, @demotomohiro. Let me see this, too.

How can I use SendMessage?

2021-03-31 Thread nnahito
I would like to send a message to Bouyomi-Chan on Windows using interprocess communication. So I wrote the following code. import winim var cds: ref COPYDATASTRUCT cds.dwData = 0 cds.lpData = ref "Hello World" cds.cbData = len(cds.lpData) + 1 # 13436904

I want to use gecko driver headless.

2021-03-30 Thread nnahito
I use WebDriver. I want to start firefox headless. Is this possible? I wrote the following code, and Firefox comes up with a GUI. import webdriver import os, osproc when isMainModule: let currentPath = getCurrentDir() le

Can nim long polling?

2021-03-15 Thread nnahito
I was understanding it incorrectly. thank you.

Can nim long polling?

2021-03-15 Thread nnahito
Thank you for your reply! I think Karax is JavaScript frame work. So I don't think it can make an windows application. I want to monitor the HTML that is updated by JavaScript. I want to display it in GUI. Like wnim, nigui, etc...

Can nim long polling?

2021-03-15 Thread nnahito
Thank you for reply! "setTimeout" can get JavaScript's change elements?

Can nim long polling?

2021-03-15 Thread nnahito
I want to get elements updated by JavaScript in Nim. Is it possible? Probably use Long polling, right?