Jump to page: 1 2
Thread overview
"D Language and Fortran DLL" article
Aug 02, 2012
Michael
Aug 09, 2012
Minas Mina
Aug 14, 2012
Ali Çehreli
Aug 14, 2012
Michael
Aug 09, 2012
Maxim Fomin
Aug 10, 2012
Suliman
Aug 14, 2012
xenon325
Aug 14, 2012
xenon325
Aug 14, 2012
Michael
Aug 15, 2012
xenon325
Aug 15, 2012
Michael
Aug 16, 2012
xenon325
August 02, 2012
Hi all,

I would like to annonce "D Language and Fortran DLL" article that writen in Russian.

Link: http://www.m1xa.com/ru/article/d-language-and-fortran-dll.html

It's happy end of this topic http://forum.dlang.org/thread/wjbjanlmgytnnkjxmyyp@forum.dlang.org

Comments are welcome.

Thanks)

P.S.: And I did not find any appropriate russian community website about D Language, they exists?
August 09, 2012
> P.S.: And I did not find any appropriate russian community website about D Language, they exists?

I don't think so. There are only a few in English...
August 09, 2012
On Thursday, 2 August 2012 at 20:38:45 UTC, Michael wrote:
>
> P.S.: And I did not find any appropriate russian community website about D Language, they exists?

I guess there were http://dprogramming.ru but now is dead
(last updated in fall 2010).
However, I noticed some increase in D concern couple of
month ago, so maybe in future situation will be better.

August 10, 2012
On Thursday, 9 August 2012 at 17:50:52 UTC, Maxim Fomin wrote:
> On Thursday, 2 August 2012 at 20:38:45 UTC, Michael wrote:
>>
>> P.S.: And I did not find any appropriate russian community website about D Language, they exists?
>
> I guess there were http://dprogramming.ru but now is dead
> (last updated in fall 2010).
> However, I noticed some increase in D concern couple of
> month ago, so maybe in future situation will be better.

I am working on Russian site, it will be opened in end of September.
August 14, 2012
On Friday, 10 August 2012 at 15:44:34 UTC, Suliman wrote:
> I am working on Russian site, it will be opened in end of September.

Nice! What is supposed domain ?

P.S. don't forget to announce it here.

August 14, 2012
nitpicks:

1. why not use DDoc ? E.g. @Author, @License
   (http://dlang.org/ddoc.html)

2. formatting :). I know, I know it's a moot point.
   Now it looks a bit like Windows version is "more primary".
   I like it more:

    version ( ) {
        ...
    }
    else version ( ){
        ...
    }
    else{

    }

3. Some lines of code are outside of main area (like 49, 50).
   Tested on Opera, FF, IE.

August 14, 2012
On 08/09/2012 10:30 AM, Minas Mina wrote:
>> P.S.: And I did not find any appropriate russian community website
>> about D Language, they exists?
>
> I don't think so. There are only a few in English...

According to dlang.org (rather, digitalmars.com that is linked from it ;)) there are Japanese, German, Russian, Chinese, and Turkish forums:

  http://digitalmars.com/d/dlinks.html

I follow the Turkish forum. It is active with very roughly (by eye balling) 2-3 topics, average around 10-20, sometimes up to 40 messages a day:

  http://ddili.org/forum/forum

Ali
August 14, 2012
On Tuesday, 14 August 2012 at 15:36:42 UTC, Ali Çehreli wrote:
> According to dlang.org (rather, digitalmars.com that is linked from it ;)) there are Japanese, German, Russian, Chinese...

Current russian website seems to died and resurrected at 2010 as copy from web archive.



August 14, 2012
On Tuesday, 14 August 2012 at 07:32:05 UTC, xenon325 wrote:
> nitpicks:
>
> 1. why not use DDoc ? E.g. @Author, @License
>    (http://dlang.org/ddoc.html)

Added.

> 2. formatting :). I know, I know it's a moot point.
>    Now it looks a bit like Windows version is "more primary".
>    I like it more:
>
>     version ( ) {
>         ...
>     }
>     else version ( ){
>         ...
>     }
>     else{
>
>     }

Windows is main dev OS.
Braces: http://dlang.org/dstyle.html

> 3. Some lines of code are outside of main area (like 49, 50).
>    Tested on Opera, FF, IE.
BitBucket bug, but fixed manually.


August 15, 2012
On Tuesday, 14 August 2012 at 22:00:26 UTC, Michael wrote:
> Braces: http://dlang.org/dstyle.html

I was referring to indentation, i.e.
    version
    else version
    else


> On Tuesday, 14 August 2012 at 07:32:05 UTC, xenon325 wrote:
>> 3. Some lines of code are outside of main area (like 49, 50).
>>   Tested on Opera, FF, IE.
> BitBucket bug, but fixed manually.

Hm, I still see lines are outside.


Another one. I don't have d compiler at hand (and for some reason DPaste isn't working too), but I think this should work fine:

void checkAndThrow(void * pointer, int line = __LINE__)

and than call it just like

checkAndThrow( ptr);
« First   ‹ Prev
1 2