OT: What's your favorite codeline?

2009-08-29 Thread A Bothe
What's your favorite line of D code? My one is Application.Run(); And yours? -- PS: Check out my D-IDE at http://www.alexanderbothe.com/?id=27

Re: IDE for D? Recommendations?

2009-10-23 Thread A Bothe
AJ Wrote: > Anyone have recommendations for which IDE to use to do an evaluation of D > with? I don't need powerful capabilities as I'm just looking to write some > code and get a feel for some things in D. A bundle would be great. Also, I > think it would be fun to

Walter gets no credit?

2009-11-15 Thread Marco A
InformIT News "Andrei Alexandrescu, author of The D Programming Language, provides a fresh perspective on iteration" Sorry Andrei you are just a contributor in my book ask InformIT to clarify

A newer WinDBG version, please...

2010-01-05 Thread A Bothe
Like I wrote in the D.Debuggers forum: Hi everyone, after seeking for symbolic debuggers for D I noticed that there's a newer version of WinDBG http://www.microsoft.com/whdc/devtools/debugging/installx86.Mspx I tried this one with the latest (D 2.0.3.7) DMD version and it worked!

Re: A newer WinDBG version, please...

2010-01-05 Thread A Bothe
Walter Bright Wrote: > A Bothe wrote: > > Like I wrote in the D.Debuggers forum: > > > > Hi everyone, > > > > after seeking for symbolic debuggers for D I noticed that there's a > > newer version of WinDBG > > > > http://www.microsof

Division by zero - why no exception?

2010-01-10 Thread A Bothe
Hey everyone, I noticed something: double a=0.0; double f=1/a; writeln(f); ... prints 2.66825e-284 normally it shall throw a exception or do something else ... but it doesn't ... why?

Re: Division by zero - why no exception?

2010-01-10 Thread A Bothe
OK, thanks!

D-IDE and its new project site

2010-01-31 Thread A Bothe
Hello D World! As I visited digitalmars.com just a few minutes ago I noticed that there's a link to my website. Of course I'm really happy about that but D-IDE has a new page on SourceForge now - so could somebody update the link to http://d-ide.sourceforge.net, please? Thanks, Alex

Re: D-IDE and its new project site

2010-02-01 Thread A Bothe
Ary Borenszweig Wrote: > A Bothe wrote: > > Hello D World! > > > > As I visited digitalmars.com just a few minutes ago I noticed that there's > > a link to my website. Of course I'm really happy about that but D-IDE has a > > new page on SourceForge

asm code and an inout function argument

2009-05-15 Thread Vladimir A. Reznichenko
I have a function: void test (inout uint a) { asm { mov a, 0x25; } } The trouble is that the function's call doesn't change the a variable. Any ideas?

Re: asm code and an inout function argument

2009-05-15 Thread Vladimir A. Reznichenko
Denis Koroskin Wrote: > On Fri, 15 May 2009 14:24:16 +0400, Vladimir A. Reznichenko > wrote: > > > I have a function: > > > > void test (inout uint a) > > { > > asm > > { > > mov a, 0x25; > > } > > } >

Re: asm code and an inout function argument

2009-05-15 Thread Vladimir A. Reznichenko
Tim Matthews Wrote: > On Fri, 15 May 2009 22:29:07 +1200, Robert Fraser > wrote: > > > Vladimir A. Reznichenko wrote: > >> I have a function: > >> void test (inout uint a) > >> { > >>asm > >>{ > >>mov a,

Re: asm code and an inout function argument

2009-05-15 Thread Vladimir A. Reznichenko
Denis Koroskin Wrote: > On Fri, 15 May 2009 14:41:35 +0400, Vladimir A. Reznichenko > wrote: > > > Denis Koroskin Wrote: > > > >> On Fri, 15 May 2009 14:24:16 +0400, Vladimir A. Reznichenko > >> wrote: > >> > >> &

asm trouble

2009-05-15 Thread Vladimir A. Reznichenko
Asm trouble, again. There is a function in a programm. void test (inout uint a, uint sh, uint b) { version (X86) {asm { mov EAX, a; mov EBX, sh; mov ECX, b; push EAX; //a adress saved

DB/DBMS in D

2009-02-16 Thread Vladimir A. Reznichenko
Dear Mr./Ms., I'd like to ask you about the garbage collector. It slows down an application, doesn't it? In case of DBMS, this is critical. I haven't found any articles or tests about this. Also it would be great to find out about memory management implemented in DMD: fragmentation, allocation,

Re: DB/DBMS in D

2009-02-16 Thread Vladimir A. Reznichenko
== Quote from Chris R Miller (lordsauronthegr...@gmail.com)'s article > Vladimir A. Reznichenko wrote: > > Dear Mr./Ms., > > > > > > I'd like to ask you about the garbage collector. > > It slows down an application, doesn't it? > > >