https://www.facebook.com/GetBoostedPro/

2024-07-15 Thread boostedpromaleenhan
Boosted Pro Male Enhancement Packed with herbal elements to reinforce electricity, enhance overall performance, and promote common well-being, Boosted Pro Male Enhancement is the circulate-to answer for men seeking to supercharge their health. OFFICIAL WEBSITE :

Is there any way to hook ref replication or destruction?

2024-07-15 Thread panno
It is not ref T, but the ref itself. For example, the following: let x = new Object proc lambda = let y = x # Execute =copy[ref] hook here lambda() # Execute =destroy[ref] hook here # Execute =destroy[Object] hook here Run I am using Nim 2.0.0. How can I

Is there any way to hook ref replication or destruction?

2024-07-15 Thread Araq
With `--expandArc` you can see where the hooks are injected but you cannot override ref's hooks. You can edit `lib/system/arc.nim` and add some tracing there.

https://www.facebook.com/SmartHempCBDGummiesZA

2024-07-15 Thread lucialardo
Buy Now Official website:- Other Official Facebook:- MAIN BLOGS :- <

Nexalyn 리뷰 - 정말 효과가 있나요? 꼭 읽어야 합니다..?

2024-07-15 Thread nexalynkoreanprice
Nexalyn: 아시다시피 남자는 운동을 적극적으로 하지 않으며, 특히 노년기에 성행위를 할 때는 더욱 그렇습니다. Nexalyn 나이가 들수록 그는 더 오래 서 있기 위한 체력과 에너지 수준을 잃어가고 있습니다. 대부분 남성이 직면하는 문제는 발기부전과 성욕 저하로 인해 발생합니다. 30, 40대가 지나면서 남성들 사이에서 가장 많이 제기되는 이슈가 바로 이것이다. Nexalyn 성적 활동은 남성 신체의 테스토스테론이라는 스테로이드 호르몬에 의해 제어됩니다. 이것은 남성이 사춘기에 남성다움과 2차 성징을 갖게 만드는 남성

Atlas shrugged...

2024-07-15 Thread janAkali
I believe you're looking for the `--global` flag: --global use global workspace in ~/.atlas Run You can initialize a global workspace with: atlas --global init Run Then you can install new dependencies, for example, malebolgia w

https://www.facebook.com/SightCareCapsule/

2024-07-15 Thread offersightcare
Sight Care Conversion of Light into Signals: When moderate hits the photoreceptors, it triggers a complicated biochemical device. The photoreceptor cells convert mild into electric powered powered symptoms which might be transmitted to the mind thru the optic nerve. OFFICIAL WEBSITE :

Atlas shrugged...

2024-07-15 Thread Clonk
> I just want to have my repository where I wish and not necessarily in a > workspace I think you are over complicating things. Here is how I split-it personally : `~/Workspace/` => Atlas workspace for non-specific project. `~/Projects/[Project1]` => Atlas workspace specific to project 1 `~/Pr

Memory leak in event loop inside a thread?

2024-07-15 Thread darkestpigeon
The code below leaks memory and doesn't print "memory deallocated" (so the object's destructor isn't called). If the `cycler` coroutine isn't created, no leak occurs. Am I doing something wrong, or is there a memory manager bug at play? Tried both `2.0.8` and `2.1.9` nim versions. Compiled with

Memory leak in event loop inside a thread?

2024-07-15 Thread darkestpigeon
Another piece of info: replacing `std/asyncdispatch` with `chronos` fixes the problem in this case. But the problem returns with the following changes: proc cycler(x: ref MyObj) {.async.} = while true: x.value[] += 1 echo x.value[] await sleepAsync(200)

hwo to make macro returning comma separated parameters?

2024-07-15 Thread elseh
I use vmath library. How to convert **v:Vec2** variable to **v.x , v.y** to pass it as separate arguments to proc?

how to make macro returning comma separated parameters

2024-07-15 Thread elseh
I use vmath library. How to convert **v:Vec2** variable to **v.x , v.y** to pass them as separate arguments?

Memory leak in event loop inside a thread?

2024-07-15 Thread darkestpigeon
Update: after manually clearing dispatcher's `callbacks` and `timers` and manually calling a GC the memory is properly freed, even when the `cycle` coroutine is still pending. So the question is: why do I have to do this manually? Shouldn't this be done automatically when the thread finishes? T

Atlas shrugged...

2024-07-15 Thread mildred
Well, I have ~/Projects for all my projects, Nim or else. There I clone all my repositories and I'd like to avoid having a nested directory structure if possible, and avoid cluttering ~/Projects with Nim stuff. So I have ~/Projects/app cloned, and if I can optionally tell it to use ~/Projects/l

how to make macro returning comma separated parameters

2024-07-15 Thread Araq
It's impossible because `v.x, v.y` is not a tree (AST). But you can transform more than that like in `expandVec2(f, a, b)` producing `f(a.x, a.y, b.x, b.y)`. But frankly, just type it out, macros are not for saving typing effort.

Fusion OS: a hobby kernel written in Nim

2024-07-15 Thread 3-2-1
Congratulations on making the front page of Hacker News! Always nice to see a Nim project get some attention.

Nimsuggest always crushes on My Mac

2024-07-15 Thread wangzhenzhe
Hi everyone, I'm encountering a persistent issue with `nimsuggest` on my Mac and could really use some help. **Issue:** Every time I run `nimsuggest`, it crashes with the following error: SIGSEGV: Illegal storage access. (Attempt to read from nil?) zsh: segmentation fault nims

AWS Lambda function and Swagger/OpenAPI documentation

2024-07-15 Thread bajith
My CTO has allowed me to use Nim! I've actually used it before for work, but that was for processing a large Excel file (will be doing it again) and populate a Postgres database.