On Wed, Jun 8, 2011 at 2:57 PM, Jesse Phillips
wrote:
> Andrew Wiley Wrote:
>
> > On Wed, Jun 8, 2011 at 11:54 AM, Fabian wrote:
> >
> > > Hi
> > > I'm trying to install DWT2 to create GUI applications with D.
> > > I have downloaded DWT2 with TortoiseHg already and I've installed Ruby
> and
> >
Andrej Mitrovic Wrote:
> No problem with FF3. You should upgrade FF4 to FF3 I guess. :P
Your FF3 seems to use Adobe Flash instead of HTML5 video.
On 6/4/2011 5:36 AM, Nick Sabalausky wrote:
I'm working with Jacob to try to resolve an issue where D programs compiled
on his Ubuntu box (in 32-bit/32-bit) error out on my Ubuntu box with
"Illegal instruction". At first we thought it was because my OS was an older
version than his. But he tried
On 2011-06-08 14:30, David Nadlinger wrote:
> On 6/8/11 11:14 PM, Jonathan M Davis wrote:
> > On 2011-06-08 13:36, David Nadlinger wrote:
> >> Did I miss a way to convert a TickDuration to a Duration? If there
> >> really is none, is there a reason for this?
> >>
> >> Having to do an immediate con
Andrew Wiley Wrote:
> On Wed, Jun 8, 2011 at 11:54 AM, Fabian wrote:
>
> > Hi
> > I'm trying to install DWT2 to create GUI applications with D.
> > I have downloaded DWT2 with TortoiseHg already and I've installed Ruby and
> > Rake. But when I try to build the packages I get the following error
On 6/8/11 11:14 PM, Jonathan M Davis wrote:
On 2011-06-08 13:36, David Nadlinger wrote:
Did I miss a way to convert a TickDuration to a Duration? If there
really is none, is there a reason for this?
Having to do an immediate conversion to a hnsecs long feels somehow odd:
---
Duration maxFlushI
"Andrew Wiley" wrote in message
news:mailman.718.1307566795.14074.digitalmars-d-le...@puremagic.com...
> On Wed, Jun 8, 2011 at 11:54 AM, Fabian wrote:
>
>> Hi
>> I'm trying to install DWT2 to create GUI applications with D.
>> I have downloaded DWT2 with TortoiseHg already and I've installed Ru
On 08.06.2011 23:14, Jonathan M Davis wrote:
On 2011-06-08 13:31, simendsjo wrote:
import std.stdio;
void main() {
struct S {
this(bool a) { writeln(" this"); }
~this() { writeln(" ~this"); }
}
writeln("scoped:");
{
auto s = S(true);
}
writeln("with:");
with(S(true)) {
}
}
Output:
scoped:
th
On 2011-06-08 13:36, David Nadlinger wrote:
> Did I miss a way to convert a TickDuration to a Duration? If there
> really is none, is there a reason for this?
>
> Having to do an immediate conversion to a hnsecs long feels somehow odd:
>
> ---
> Duration maxFlushInterval;
> if (dur!"hnsecs"(flush
On 2011-06-08 13:31, simendsjo wrote:
> import std.stdio;
> void main() {
> struct S {
> this(bool a) { writeln(" this"); }
> ~this() { writeln(" ~this"); }
> }
>
> writeln("scoped:");
> {
> auto s = S(true);
> }
>
> writeln("with:");
> with(S(true)) {
> }
> }
>
> Output:
>
> scoped:
> this
> ~
But I try to install DWT2. Do you understand?
I've got the Tango book but it's pretty difficult to install DWT2. So I
can't build GUI apps.
Greetings Fabian
On Wed, Jun 8, 2011 at 11:54 AM, Fabian wrote:
> Hi
> I'm trying to install DWT2 to create GUI applications with D.
> I have downloaded DWT2 with TortoiseHg already and I've installed Ruby and
> Rake. But when I try to build the packages I get the following error
> message:
>
> http://imageshack.
Did I miss a way to convert a TickDuration to a Duration? If there
really is none, is there a reason for this?
Having to do an immediate conversion to a hnsecs long feels somehow odd:
---
Duration maxFlushInterval;
if (dur!"hnsecs"(flushTimer.peek.hnsecs) > maxFlushInterval) { … }
---
David
On 08.06.2011 21:09, Jonathan M Davis wrote:
On 2011-06-08 12:06, vincent wrote:
Cover handler for a statement or a block of statements.
I would like to suggest a method for defining code statement
covering. Some examp1es of a cover are as follows :-
- try ... finally - this is defined in dotne
import std.stdio;
void main() {
struct S {
this(bool a) { writeln(" this"); }
~this() { writeln(" ~this"); }
}
writeln("scoped:");
{
auto s = S(true);
}
writeln("with:");
with(S(true)) {
}
}
Output:
scoped:
this
~this
with:
this
"Don" wrote in message
news:isoh6c$15jb$1...@digitalmars.com...
> Nick Sabalausky wrote:
>> So my main question: Does DMD do anything like, say, detecting the CPU at
>> compile time and then enabling instructions only available on that CPU
>> and up? Or does it do anything like always assuming
Das ist ja klasse.
Deutschland, Österreich, Schweiz - alle da
On 6/8/11 9:16 PM, Don wrote:
Trass3r wrote:
- The D compiler has only bad code optimization
Yep, but there is LDC and GDC which use LLVM and GCC as backends
respectively.
- There are no maintained GUI libraries
I wouldn't agree with that. Some people are still working on GtkD, QtD
and DWT.
I'm very surprised that there are so many Germans who use D. Maybe the
German D book is a reason for that. I don't know but it's pretty cool.
Trass3r wrote:
- The D compiler has only bad code optimization
Yep, but there is LDC and GDC which use LLVM and GCC as backends
respectively.
- There are no maintained GUI libraries
I wouldn't agree with that. Some people are still working on GtkD, QtD
and DWT.
- The development of the co
No problem with FF3. You should upgrade FF4 to FF3 I guess. :P
On 2011-06-08 12:06, vincent wrote:
> Cover handler for a statement or a block of statements.
>
> I would like to suggest a method for defining code statement
> covering. Some examp1es of a cover are as follows :-
> - try ... finally - this is defined in dotnet as a using
> - try ... (catch)+
> -
Cover handler for a statement or a block of statements.
I would like to suggest a method for defining code statement
covering. Some examp1es of a cover are as follows :-
- try ... finally - this is defined in dotnet as a using
- try ... (catch)+
- cursor save and display others ... restore s
Nick Sabalausky wrote:
So my main question: Does DMD do anything like, say, detecting the CPU at
compile time and then enabling instructions only available on that CPU and
up? Or does it do anything like always assuming the target CPU has SSE2?
Anything like that that could cause differences be
http://h3.gd/code/nucleus/
I lol'd at the suggestion to upgrade my FF4 to a modern HTML5-compliant
browser.
^^ No problems with Opera.
Hi
I'm trying to install DWT2 to create GUI applications with D.
I have downloaded DWT2 with TortoiseHg already and I've installed Ruby
and Rake. But when I try to build the packages I get the following error
message:
http://imageshack.us/photo/my-images/62/dwt2error.png/
Is there anybody who
Trass3r Wrote:
> http://h3.gd/code/nucleus/
I lol'd at the suggestion to upgrade my FF4 to a modern HTML5-compliant browser.
> Is D1.x still supported and under development?
Yes, though it almost never gets new features anymore, just bug
fixes about once a month.
See the changelog here:
http://www.digitalmars.com/d/1.0/changelog.html
Is D1.x still supported and under development?
Okay - Thank you.
Greetings Fab
Fabian wrote:
> By the way: I've read that Digital Mars C++ compiler has got a bad
> code optimization. Is that true?
In general, no. There's some benchmarks where it loses, but there's
also some that win.
Overall, it isn't as good at optimizing as gcc and visual studio,
but it still isn't bad.
Hi
I'm using D on Windows so I'm not able to use LDC. But I believe DMD
should be a good alternative too.
If the garbage collection makes trouble I can disable it - or?
http://stackoverflow.com/questions/472133/turning-off-the-d-garbage-collector
By the way: I've read that Digital Mars C++ comp
On Wed, 08 Jun 2011 07:11:03 -0400, Fabian wrote:
Calling all: Thank you.
I want to use Tango because a friend has lent me a book about learning D
and using the Tango Software Library. So I'm forced to use D 1.x, aren't
I?
At the moment, yes. I believe there are ports to D2 in the works
Calling all: Thank you.
I want to use Tango because a friend has lent me a book about learning D
and using the Tango Software Library. So I'm forced to use D 1.x, aren't I?
At the moment I just want to learn D - I'm not going to code any big
project with D next time so I think DMD is OK at th
Oh - yeah.
Thank you - English can be so easy :D
35 matches
Mail list logo