Re: How do I download the Windows DMD installer?

2022-07-17 Thread LeMondaide via Digitalmars-d-announce

On Sunday, 17 July 2022 at 21:37:07 UTC, Bastiaan Veelo wrote:


Find 2.100.0 from http://downloads.dlang.org/releases/2022/ for 
now.



Thanks.


Re: The D Programming Language Vision Document

2022-07-17 Thread Vladimir Marchevsky via Digitalmars-d-announce

On Saturday, 9 July 2022 at 23:40:21 UTC, monkyyy wrote:

Its not curated


Well, limit yourself to usage of `std` or `phobos` or whatever 
official implementation is called - and voila, it's curated.



It changes the compiler options


So? Most of the people prefer to have build tool managing 
possible compiler options for them instead of typing the manually 
for each compiler, digging through all dependencies involved to 
find required options for them, etc, finally resulting in 
reinventing the same build tool. Especially when you have an 
option to manually override anything you dont like.



and its randomly configured in js


Dub has nothing common to JS. If you mean `dub.json` format - 
well, JSON is not a JS. And if you are allergic to human-readable 
formats, you can always use `dub.sdl` flavor.


Re: How do I download the Windows DMD installer?

2022-07-17 Thread Bastiaan Veelo via Digitalmars-d-announce

On Sunday, 17 July 2022 at 19:58:03 UTC, LeMondaide wrote:
When I try (https://dlang.org/ or 
https://dlang.org/download.html) I am sent here: 
https://s3.us-west-2.amazonaws.com/downloads.dlang.org/releases/2022/dmd-2.100.1.exe and get this message "AccessDeniedAccess Denied4TMZ12PKCBCER6SAQQ7FpshcuoQ3ied0qGEHZ+lSz+qD9+aJmqH24qD5pkCWrGANGD6Lk6eT5d4wAG1n3kYvhWNJsig="


I have not found an alternative download location.


The download for 2.100.1 is currently broken. Find 2.100.0 from 
http://downloads.dlang.org/releases/2022/ for now.


-- Bastiaan.


How do I download the Windows DMD installer?

2022-07-17 Thread LeMondaide via Digitalmars-d-announce
When I try (https://dlang.org/ or 
https://dlang.org/download.html) I am sent here: 
https://s3.us-west-2.amazonaws.com/downloads.dlang.org/releases/2022/dmd-2.100.1.exe and get this message "AccessDeniedAccess Denied4TMZ12PKCBCER6SAQQ7FpshcuoQ3ied0qGEHZ+lSz+qD9+aJmqH24qD5pkCWrGANGD6Lk6eT5d4wAG1n3kYvhWNJsig="


I have not found an alternative download location.


Re: Blog post on extending attribute inference to more functions

2022-07-17 Thread AnimusPEXUS via Digitalmars-d-announce

On Wednesday, 13 July 2022 at 20:59:00 UTC, Adam D Ruppe wrote:




I'm holding this Your post for a few days already in my mind, 
ADR. I've just coded something and come with the idea of 
@todo/@fixme/@issueid attributes, so compiler write messages each 
time it finds those. Just as a thought.. maybe It can be useful, 
although it's already can be done with pragma(msg, "txt")..