https://startupcentrum.com/startup/natures-leaf-cbd-gummies-in-us

2024-07-02 Thread naturesleaf
Buy Now Official website:- Official Facebook:- MAIN BLOGS :-

simpleargs - Dead simple CLI parsing.

2024-07-02 Thread SolitudeSF
cligen still the king

Nexalyn ➤ 리뷰 최고의 장 건강 보조식품인가요?

2024-07-02 Thread NexalynPriceTest
발기 문제는 이제 안녕, 적어도 Nexalyn은 그렇게 약속합니다. 제조업체에 따르면 효능에 포함된 천연 활성 성분은 침실에서의 성욕과 성능을 강화하고 향상시키기 위한 것입니다. Nexalyn 그러나 약초는 실제로 스트레스를 받는 남성을 위한 오랫동안 기다려온 만병통치약입니까? 이러한 준비를 통해 리비도가 실제로 "다시 깨어날" 수 있습니까? 물론, 우리는 처음에는 이러한 완전한 제조업체의 약속에 회의적이었고 대규모 Nexalyn 자체 테스트에서 보충제를 직접 시험해 보았습니다. Nexalyn 당사 제품 테스트 결과를 아래와

StableSeq

2024-07-02 Thread hyu1996
ChunkList, ChunkSeq

Small game written in Nim with a from-scratch-engine written in Nim (on Steam now)

2024-07-02 Thread planetis
You might be interested in some improvements I made in the nimgl/vulkan bindings () These include enum values that are more readable: VkImageAspectFlagBits* {.size: sizeof(int32).} = enum None ColorBit DepthBit St

Small game written in Nim with a from-scratch-engine written in Nim (on Steam now)

2024-07-02 Thread Hobbyman
@saemideluxe OK thanks for the tips. I would have to do some research in those options. Come to think of it: I must think out the rules anyway and I could test them on a chess/checkers-board with some pieces to see if could come up with something exciting... (Also I have more project-ideas tha

Absytree: Text editor (and tree based language framework) in Nim

2024-07-02 Thread moigagoo
Great project! I hope to be able to switch to it some day. When I launch the editor and move the cursor down, several blank lines appear at the top of the page. Is it a bug or a feature?

simpleargs - Dead simple CLI parsing.

2024-07-02 Thread moigagoo
I still think Climate is the best CLIP lib for Nim and it's criminally underrated 😁

A way to get a real argument type in a proc call?

2024-07-02 Thread mmcol
Hmm, never used "typed" nodes. Looks like that's what I needed. Thank you!

Am I losing something by learning Nim without learning C/C++?

2024-07-02 Thread Araq
Mostly they are covered by these two RFCs: * *

simpleargs - Dead simple CLI parsing.

2024-07-02 Thread Araq
FWIW the reason why I never wrote a DSL for command line parsing is that `parseopt` combined with Nim's `case` construct that works on strings offers the 80% solution that is good enough for me. A nice addition to `parseopt` would be though if it counted the arguments and options automatically.

simpleargs - Dead simple CLI parsing.

2024-07-02 Thread cblake
By all means, do your own thing, but > and don't let you write your own docstrings is (and always has been) simply untrue of (at least) [cligen](https://github.com/c-blake/cligen). proc foo(myParam=1) = discard import cligen; include cligen/mergeCfgEnv dispatch foo, usage="

A way to get a real argument type in a proc call?

2024-07-02 Thread Araq
Use a `typed` macro.

A way to get a real argument type in a proc call?

2024-07-02 Thread Abathargh
I think that is not doable (at least with _untyped_ macros, but I am not an expert on how to use typed ones), because literals are just that in the macro scope, there's no type information tied to them yet. As a matter of fact, you can see that nnkInt16Lit and nnkInt32Lit are the kinds you get

A way to get a real argument type in a proc call?

2024-07-02 Thread mmcol
This works, but I don't want to specify the argument data type all the time.

A way to get a real argument type in a proc call?

2024-07-02 Thread mmcol
In fact, my end goal is to scan for literals inside the "proc". I understand how to scan, but I don't understand how to get the "real argument data type"

A way to get a real argument type in a proc call?

2024-07-02 Thread mmcol
main.nim import std/macros macro printType(n: untyped): untyped = result = n echo n.intVal, ": ", n.getType() proc test(a: int, b: int16, c: int32) = discard proc main() = test( 1.printType(), 2.printType(), 3.

A way to get a real argument type in a proc call?

2024-07-02 Thread mmcol
macro findAllAndPrint(n: untyped) = result = n result.forNode( {nnkIntLit..nnkUInt64Lit}, proc(x: NimNode): NimNode = if x.kind in {nnkIntLit..nnkUInt64Lit}: echo repr x, ": ", x.kind return x return x ) pro

A way to get a real argument type in a proc call?

2024-07-02 Thread Abathargh
My guess is this is the behavior you get because you're using integer literals and those are always "int"s at macro resolution time. It should work like you want if you do: proc main() = test( 1.printType(), 2'i16.printType(), 3'i32.printType() )

simpleargs - Dead simple CLI parsing.

2024-07-02 Thread juancarlospaco
Interesting idea, I think you can macro-unroll the for loops into 1 like on

https://www.facebook.com/SugarDefenderBloodBalance/

2024-07-02 Thread pricesugardefender
Sugar Defender Guarana gives an strength boost to combat fatigue frequently related to blood sugar imbalances whilst Maca Root supports stamina and normal vitality.Weighing the pros and cons of Sugar Defender is critical to make an informed selection. Here is a balanced view based totally on my

simpleargs - Dead simple CLI parsing.

2024-07-02 Thread Nerve
I'd argue that the 80% use cases for CLI parsing are covered by just a few items. We want to know: * If our command or subcommand was a given thing. * What a positional argument was. * What an option with input was, with a default fallback. * If a flag was present. Most of Nim's CLI pa

Am I losing something by learning Nim without learning C/C++?

2024-07-02 Thread bajith
Which are some of the warts of Nim that you have in mind?

Total Health KETO Gummies AU-NZ {Customer Opinion} What Is it?

2024-07-02 Thread total3992
Total Health Keto Gummies: - People are posting several stories on the internet these days about how quickly they were able to shed pounds of fat and get into the slender shape of a model. Nevertheless, they usually miss a fantastic chance to emphasize that these tactics have many substantive co

StableSeq

2024-07-02 Thread Araq
`StableChain`. I like it. (After all these proposals I still like "stable" best and it is commonly used for this idea in the C++ world.)

Which IDE to use in 2024?

2024-07-02 Thread KhazAkar
With helix, like with others, best way is to I stall nimlangserver, open empty file, write line of syntactically correct code (like echo 'a') and save. Then restart LSP and it will work properly.