Oh threadpool, my threadpool

2024-08-11 Thread mabon
Will Threadpool and Malebolgia merge?

nimja; compiled and statically typed template engine (like twig or jinja2)

2024-08-10 Thread mabon
good job!

Tooling update

2024-07-28 Thread mabon
Why not continue with Konstantin Zaitsev?

This Month with Nim: October 2023 to June 2024

2024-06-12 Thread mabon
Nim language has fallen out of the top 100 on the ITOBE programming language ranking this month. 2024.6

HappyX web framework got a new sponsor

2024-05-20 Thread mabon
HappyX looks great, but it always causes Nimbuggest and Nimlsp crashes in vscode. I have tried all known nim and nimlsp extensions, but none are available. Am I the only one who has encountered this situation?

How to customize a top-level Pragma

2024-04-05 Thread mabon
There may be two question: 1\. How to implement a custom Pragma macro? For example: {. Emit.}, {. link.}. 2.How to use macros to implement decorators similar to Java and Python, such as @Authentication(userId).

Problem to understand an exception

2024-03-31 Thread mabon
`-d:ssl`

Oversight or intentional?

2024-03-21 Thread mabon
`import sugar let f = (x: int) -> int => x * x let g = proc(x: int): int = x * x let m = (x: int, y: (int) -> int) => y(x) echo f(100) echo g(100) echo m(100,f) echo m(100,(x: int) => x * x) ` Run

Oversight or intentional?

2024-03-20 Thread mabon
import sugar let f = (x: int)-> int => x * x echo f(100)