April 07, 2014
On 4/7/2014 10:15 AM, Orvid King wrote:
> On Monday, 7 April 2014 at 17:05:46 UTC, Walter Bright wrote:
>> On 4/7/2014 6:48 AM, asman wrote:
>>> Could be great too if someone run a static analyzer like on dmd
>>> code http://www.cppcat.com I'll try when I back to Windows
>>
>> The static analyzer PVS-Studio was run on dmd last year. It found 2 bugs, and
>> several thousand false positives.
>
> The results for Intel's compiler are just waiting for someone to approve the
> post, as it's 72kb in a 7z file. (posts larger than 40kb have to be manually
> approved according to the email that got sent back to me)

Please just email it to me. I don't think it's useful to post such gigantic files. Also, being a text forum, posting zip files is not terribly useful, either.
April 07, 2014
> https://github.com/D-Programming-Language/dmd/pull/3410

How soon will this happen?

What kind of D style programming will DDMD enable not possible in C++?

Will it for example make use of array slicing?
April 07, 2014
On Monday, 7 April 2014 at 17:49:01 UTC, Walter Bright wrote:
> On 4/7/2014 10:15 AM, Orvid King wrote:
>> On Monday, 7 April 2014 at 17:05:46 UTC, Walter Bright wrote:
>>> On 4/7/2014 6:48 AM, asman wrote:
>>>> Could be great too if someone run a static analyzer like on dmd
>>>> code http://www.cppcat.com I'll try when I back to Windows
>>>
>>> The static analyzer PVS-Studio was run on dmd last year. It found 2 bugs, and
>>> several thousand false positives.
>>
>> The results for Intel's compiler are just waiting for someone to approve the
>> post, as it's 72kb in a 7z file. (posts larger than 40kb have to be manually
>> approved according to the email that got sent back to me)
>
> Please just email it to me. I don't think it's useful to post such gigantic files. Also, being a text forum, posting zip files is not terribly useful, either.

Could this forum has basic HTML support? code highlight or even some text formatting in text itself could be very useful, either.
April 07, 2014
On 4/7/2014 12:02 PM, asman wrote:
> Could this forum has basic HTML support? code highlight or even some text
> formatting in text itself could be very useful, either.

Not worth the complexity, bandwidth, security issues, not all newsreaders support that, etc.
April 07, 2014
On 4/6/14, 10:38 PM, Walter Bright wrote:
> On 4/6/2014 9:45 AM, Orvid King wrote:
>> If you want, I have the results of a static analysis of DMD that I could post,
>> as processed in 23 hours and 58 minutes by Intel's C compiler, using 10gb of RAM
>> the entire time. If I can figure out how to have it not skip any methods (there
>> were still a significant number that it didn't analyze due to complexity limits)
>> I'll run it again and post the full results. In my basic look over the results,
>> there were a decent number of them that may actually be bugs. (buffer overruns,
>> and even a few instances of accessing memory after it had been freed)
>
> Yes, please post.

... to bugzilla.
April 08, 2014
On Mon, Apr 07, 2014 at 07:02:11PM +0000, asman wrote: [...]
> Could this forum has basic HTML support? code highlight or even some text formatting in text itself could be very useful, either.

Please don't. I don't use a HTML mail reader, and I never will. All the information that is relevant to D coding is adequately conveyed by plain text. HTML only adds unnecessary frills that contributes no substance while adding bloat.


T

-- 
MAS = Mana Ada Sistem?
April 08, 2014
> ""Nordlöw""  wrote in message news:obdtzcdsjzjzttjkpjxf@forum.dlang.org...
> > https://github.com/D-Programming-Language/dmd/pull/3410
>
> How soon will this happen?

Hopefully in the next few months.

> What kind of D style programming will DDMD enable not possible in C++?

None, initially.  It currently produces D code almost identical to the C++ code.  Once development has switched over, we can go through and start refactoring it to use foreach, ranges, delegates, etc

> Will it for example make use of array slicing?

Most likely. 

April 08, 2014
On Monday, 7 April 2014 at 19:02:13 UTC, asman wrote:

> Could this forum has basic HTML support? code highlight or even some text formatting in text itself could be very useful, either.

Not everyone uses the web interface. Some people are using the mailing list interface, others using newsreaders, and not everyone is using a client that supports HTML.
April 08, 2014
On Tuesday, 8 April 2014 at 03:44:40 UTC, Mike Parker wrote:
> On Monday, 7 April 2014 at 19:02:13 UTC, asman wrote:
>
>> Could this forum has basic HTML support? code highlight or even some text formatting in text itself could be very useful, either.
>
> Not everyone uses the web interface. Some people are using the mailing list interface, others using newsreaders, and not everyone is using a client that supports HTML.

We can possibly support code highlighting same as vibe.d newsgroup web interface does: just render
```
code here
```
blocks as code snippets (example: http://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/15414/) while still showing them as normal text in mails / NG clients. Feels natural to any GitHub user.
April 08, 2014
On Tuesday, 8 April 2014 at 12:40:16 UTC, Dicebot wrote:
> On Tuesday, 8 April 2014 at 03:44:40 UTC, Mike Parker wrote:
>> On Monday, 7 April 2014 at 19:02:13 UTC, asman wrote:
>>
>>> Could this forum has basic HTML support? code highlight or even some text formatting in text itself could be very useful, either.
>>
>> Not everyone uses the web interface. Some people are using the mailing list interface, others using newsreaders, and not everyone is using a client that supports HTML.
>
> We can possibly support code highlighting same as vibe.d newsgroup web interface does: just render
> ```
> code here
> ```
> blocks as code snippets (example: http://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/15414/) while still showing them as normal text in mails / NG clients. Feels natural to any GitHub user.

This is the only bit of formatting I'd be interested in.