Hacktoberfest 2021 Megathread

2021-10-06 Thread robb1e
* [Prologue](https://github.com/planety/prologue/issues)

Recover Exchange Server Email Database

2021-10-06 Thread chandona55
This is where reputable email marketing companies that specialise in Email Database data rental steps in. Renting another company's data means that you will gain short and limited access to their database where their subscribers have opted in to receive material from companies like you. [b][b][

Question about algorithm.upperBound

2021-10-06 Thread lscrd
Yes, this is a known documentation error which has been fixed in the development version. Here is the doc for the function in this version: > Returns the index of the first element in `a` that is greater than `key`, or > last if no such element is found.

Question about algorithm.upperBound

2021-10-06 Thread alexeypetrushin
The docs of `algorithm.upperBound` says > Returns a position to the **first element** in the a that is not less (i.e. > greater or equal to) than key, or last if no such element is found. In the example below the found upper bound for element 3 going to be 5, [play](https://play.nim-lang.org/#i

How to use memory leak detection tools on Windows with --gc:arc and -d:useMalloc?

2021-10-06 Thread rb3
Hey guys, I'm using `--gc:arc` and `-d:useMalloc`, but I'm getting memory leak warnings with `crtdbg.h`: proc setCrtDbgMemFlags() {.header:"#include \n#include " importcpp:"_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF)".} template enableMemLeakL

Show Nim: Use Nim code from other languages (genny + pixie-python)

2021-10-06 Thread Clonk
> it's just some internal implementation detail. Interpreted vs statically compiled changes **a lot** of things during development phase (simply accessing hardware will be vastly different), testing strategy, how the final product is shipped etc. Saying it's "implementation details" simply beca

Show Nim: Use Nim code from other languages (genny + pixie-python)

2021-10-06 Thread alexeypetrushin
A side though about compiled vs interpreted. I find this distinction compiled vs non compiled - it's the least important feature of the language. Important features are speed, startup speed, correctness, distribution channels etc. As for this compiled / interpreted / vm it's just some internal d

nim-1.4.6_x64.zip/bin/nimble.exe reports as Trojan:Win32/Zpevdo.B

2021-10-06 Thread Lecale
I have the same problem actually. It's incredibly annoying. Is there really no way to connect with anti virus bigwigs to mark this as a false flag

Hacktoberfest 2021 Megathread

2021-10-06 Thread ynfle
That isn't true for bigger repos. They get tons of spam. That's why they changed the rules last year

Hacktoberfest 2021 Megathread

2021-10-06 Thread PMunch
Is the packages repo participating? I kinda want to push Futhark to Nimble :)

Hacktoberfest 2021 Megathread

2021-10-06 Thread Yardanico
That's not a big issue anyway - just close the PR and mark it as `invalid`. If a person has two of their PRs marked as invalid they're disqualified from Hacktoberfest.

Hacktoberfest 2021 Megathread

2021-10-06 Thread ynfle
You're more likely to get spam if it has the hacktoberfest tag on the repo

nim js Geolocation API

2021-10-06 Thread sdmcallister
Didn't know about standardjs. Nice to see the indexeddb there. No git repo yet. I guess more specifically, I'm wondering if there is a better way to handle the Navigator and geolocation object in the code above. `std/dom` has Navigator implemented but no geolocation.

Show Nim: Use Nim code from other languages (genny + pixie-python)

2021-10-06 Thread pietroppeter
> personnaly, I find using scripting language from compiled language makes more > sense than the reverse. An interesting use case for the compiled -> scripting direction is being able to write a performant algorithm in the compiled language and having it available in the scripting languages (al

Show Nim: Use Nim code from other languages (genny + pixie-python)

2021-10-06 Thread Araq
What most languages (Nim included) out there look for is a UI library that creates native UIs but is easily wrappable. Such a UI library written in Nim would potentially invite many new Nim contributors.

nim js Geolocation API

2021-10-06 Thread tandy1000
Slightly unrelated, but it would be great to have this in either or when its finished! Do you have a git repo?

nim js Geolocation API

2021-10-06 Thread sdmcallister
The code below works, but I'm wondering where things could be improved. I'm attempting to wrap the Geolocation API and would greatly appreciate any suggestions. import jsffi type GPError* = enum PERMISSION_DENIED = 1 POSITION_UNAVAILBLE = 2 TIM

Show Nim: Use Nim code from other languages (genny + pixie-python)

2021-10-06 Thread Clonk
> , as for Julia may not worth it, they don't like C and usually trying to > avoid it and use/rewrite it in Julia instead :) Let's be real, nobody likes C. Julia have package for [C++ interop](https://github.com/JuliaInterop/Cxx.jl) and a [libclang wraper](https://github.com/JuliaInterop/Clang.

nimx question

2021-10-06 Thread PMunch
I'm guessing it's your Scoop install that hasn't set up nimble correctly, or some other such issue. And how did you try to compile the sample? The `nake` step of the build process is to build all the samples and such I believe.

Show Nim: Use Nim code from other languages (genny + pixie-python)

2021-10-06 Thread PMunch
Ah I see, seems like a solid system. Just out of curiosity, does it support generics or overloads?