Make Nim docker images official?

2023-03-24 Thread Isofruit
Small update on the entire docker hub situation: > On March 14, 2023, we emailed you about your Free Team subscription, > outlining our intention to sunset that plan. After listening to the concerns > of the community, we’ve decided to reverse course, and are no longer > sunsetting the Free Tea

Ttop - System monitoring service tool with tui and historical data

2023-03-24 Thread SerjEpatoff
> with libressl, with openssl It'd be very interesting to compare them with > WolfSSL from curl's founding father Daniel Stenberg. It has OpenSSL API > compatibility but is much lighter inside.

bun.sh supports nimlang

2023-03-24 Thread noah
thanks - the explanation makes things a lot clearer.

bun.sh supports nimlang

2023-03-24 Thread Yardanico
I mean, it's kind of expected since they basically list all languages that can emit C FFI, Bun doesn't have to add any specific code for Nim or other languages as long as those languages can make libraries that provide a C interface for using them.

bun.sh supports nimlang

2023-03-24 Thread noah
checking out the latest in the JS flavor of the month and came really impressed with bun.sh they even [shoutout nimlang in the docs](https://bun.sh/docs/api/ffi), hwoever, unfortunately only provide examples for Rust and Zig (bun is developed in zig)

Background tasks in jester

2023-03-24 Thread Cnerd
I just checked jester's docs. The result variable type is   ResponseData* = tuple[ action: CallbackAction, code: HttpCode, headers: ResponseHeaders, content: string, matched: bool   ] Run

Background tasks in jester

2023-03-24 Thread Cnerd
All jester endpoints have a result variable. I have forgotten the type of the result variable but it's in the jester docs. You can modify this result variable and the data will appear in the after handler

How to get exe name from pid under Windows

2023-03-24 Thread FabienPRI
thanks a lot

Why this code works?

2023-03-24 Thread Yardanico
Hi, that can be surprising indeed, because very few languages do this. In case of Nim it's partial case insensitivity that does this. You can read more at Basically, only the first character in identifiers is case-sensi

Why this code works?

2023-03-24 Thread mhComa
var iLikeSnakeCase = "asdf" echo i_like_snake_case Run Is this feature of the nim? It's a stupid question. sorry.