Thread overview
Porting a Golang and Rust CLI tool to D
Aug 27, 2020
Antonio
Aug 27, 2020
Adam D. Ruppe
Aug 27, 2020
Azi Hassan
Aug 27, 2020
Azi Hassan
August 27, 2020
Hi all!

Just saw this article from "Ping from Morocco", I think it's worth a read:

https://blog.pingfrommorocco.com/2020/08/porting-golang-and-rust-cli-tool-to-d.html

Antonio
August 27, 2020
On Thursday, 27 August 2020 at 17:49:43 UTC, Antonio wrote:
> Just saw this article from "Ping from Morocco", I think it's worth a read:

The thing I find most surprising there is:

"The debug build took around 30 seconds, and the release build took around 40 seconds."

That's like 10x longer than it should be!
August 27, 2020
On Thursday, 27 August 2020 at 17:49:43 UTC, Antonio wrote:
> Hi all!
>
> Just saw this article from "Ping from Morocco", I think it's worth a read:
>
> https://blog.pingfrommorocco.com/2020/08/porting-golang-and-rust-cli-tool-to-d.html
>
> Antonio

Thanks for posting this, Antonio!
August 27, 2020
On Thursday, 27 August 2020 at 17:51:54 UTC, Adam D. Ruppe wrote:
> On Thursday, 27 August 2020 at 17:49:43 UTC, Antonio wrote:
>> Just saw this article from "Ping from Morocco", I think it's worth a read:
>
> The thing I find most surprising there is:
>
> "The debug build took around 30 seconds, and the release build took around 40 seconds."
>
> That's like 10x longer than it should be!

My bad, I just realized that that's not correct at all. The "build" step I mentioned actually includes downloading dependencies, as you can see here: https://github.com/azihassan/hashtrack-client/runs/1009163949?check_suite_focus=true. I didn't realize that when I typed that comment.