Glaucus Linux

2024-04-03 Thread ITwrx
new release:

how to get current loop counter from for loop in a module?

2024-04-03 Thread janAkali
Any reason to not just do: proc doSomeCalculations*(i, k: int): MyObj = result = MyObj() result.importantData = @[] for j in 1..i: sleep(j*10) result.importantData.add(j*k) if (j mod 10) == 0: echo "done " & $i & " values so f

Problem to understand an exception

2024-04-03 Thread janAkali
Looks good to me, you can also try setting cipherSuites to `CiphersOld` if this doesn't work.

Problem to understand an exception

2024-04-03 Thread MauroG
Sorry to bother you, but not finding a solution, I try to ask: it is correct that if I write: let client = newHttpClient(sslContext = newContext(protVersion = protSSLv23, cipherList=CiphersIntermediate, ciphersuites=CiphersIntermediate)) Run I am setting to use the in

Citrulift Reviews: Working, Benefits, And Where to Buy?

2024-04-03 Thread morereview
Citrulift is a progressive skincare development explicitly created for the fragile skin encompassing the eyes. Carefully created with a variety of powerful fixings, including undeveloped cells from orange citrus, Korean orchid, and Middle Eastern jasmine concentrates, and that's only the tip of

How Does Balmorex Pro Cream Reviews Work?

2024-04-03 Thread morereview
Balmorex Pro Cream Reviews joint wellbeing supplement acts by desensitizing torment receptors quickly for sure-fire solace and is immediately ingested through the skin, abandoning no oily buildup. As it enters, it gives fast alleviation from joint and muscle torment, back agony, injuries, and jo

How to use inherited Object type as return type?

2024-04-03 Thread janAkali
Procedure calls must use `=` with [named arguments](https://nim-lang.org/docs/tut1.html#procedures-named-arguments) and not `:`, e.g. let animation: Animation = newAnimation( bitmapTableId = BitmapTableId.Flag, position = position, flip = if hFlip: kBitmapFli

How To Consume & Order The Product Zencortex?

2024-04-03 Thread morereview
Your frontal cortex is ceaselessly changing, and if you don't make a move to keep your ears and brain solid, your flourishing can continue in this way. A dynamic off-course judgment looking at music is the essential strategy for keeping clearness. There are various procedures to update the thriv

help with channels and threads

2024-04-03 Thread ggibson
> you'd likely need to increment workID count when submitting a task and not > after checking tryRecv For anyone else reading this, we're talking past each other here I suspect, because the code does do the right thing once an `initLock` is added. What happens for submission is it only submits

How to use inherited Object type as return type?

2024-04-03 Thread ninovanhooff
Given this type definition: type Asset* = ref object of RootObj position*: Vertex flip*: LCDBitmapFlip Texture* = ref object of Asset image*: LCDBitmap Animation* = ref object of Asset bitmapTable*: LCDBitmapTable frameCount*:

how to get current loop counter from for loop in a module?

2024-04-03 Thread beckx
Hello together, i think the "problem" is not a real problem and perhaps it is easy - but i don't get it :( the situation: from my main-nim module (main.nim) i call a procedure in a module mymodule.nim. The procedure takes some arguments and do some calculations in a for loop. the result is ret

Am iterating over this sequence correctly?

2024-04-03 Thread ninovanhooff
I was hoping to learn about something like `mitems` Excellent answer, thank you!