Screenshot works fine in own code but not over sockets.

2023-03-23 Thread Naterlarsen
I see. Great!! It's working. I was sure Yesterday my code was going to work because it looks right. I really appreciate the insight and knowledge you have. I changed all the "[0..]" slices to "startsWith". Works perfectly now. I will keep listening to you. Thanks again!

Screenshot works fine in own code but not over sockets.

2023-03-23 Thread jyapayne
This is an important lesson on why you should never catch an exception and simply quit or do nothing. In each `except` block, put the following: echo "Error: " echo getCurrentException().getStackTrace() echo getCurrentExceptionMsg() Run You'll see there's an in

Ttop - System monitoring service tool with tui and historical data

2023-03-23 Thread inv2004
**1.1.1** * **triggers and notifications** * some perf improvements: marshall => jsony * light term support Pretty stable - do not expect any big changes after the release

Screenshot works fine in own code but not over sockets.

2023-03-23 Thread Naterlarsen
Here is a copy of the current client / server. The stand alone version works great. Appears to only have a problem when implemented into the server side when trying to use "elif" or "startswith" to initiate its execution. I put the screenshot code block in the server twice seeing that startswith

Do you miss these compact syntaxes?

2023-03-23 Thread inv2004
What is the reason for colon here? Because it will match val name in 95% cases Person(group) Person(group, name) # still Person(name:name, group:group) ### it is ok, because looks like it is not supported at the moment anyway but if if want to swap it - rare case - ol

NimForUE

2023-03-23 Thread jmgomez
Another update, I have been working on automatizing, and enabling, ships builds. I also worked on what I think it is one of the coolest feature that the plugin will have: NimVM integration + hooks to any ue function without recompiling. The final aim is to being able to copy -> paste code from t

Do you miss these compact syntaxes?

2023-03-23 Thread alexeypetrushin
I forget to mention the `do` notation, wold be good to improve it so it would be sort(cities) do (x,y): cmp(x.len, y.len) Run and not sort(cities) do (x,y: auto) -> auto: cmp(x.len, y.len) Run

Screenshot works fine in own code but not over sockets.

2023-03-23 Thread jyapayne
Please share your full client and server code again. It's not clear what is wrong from your snippet

Do you miss these compact syntaxes?

2023-03-23 Thread didlybom
> Or with almost no change to the lexor and minimal change to the parser: let name = "Jim" let group = "alpha group" let p = Person( :name, :group ) Run Yes, I actually like this alternative even more than my original proposal :). In fact I realized I should ha

Do you miss these compact syntaxes?

2023-03-23 Thread ringabout
Fwit, I'm working on [adding compiler support for object construction shorthand](https://github.com/nim-lang/Nim/pull/21559). type Vector = object a: int = 1 b, c: int block: # positional construction var x = Vector(1, 2, 3) echo x