Matrix Multiplication benchmark

2012-08-16 Thread Matthias Pleh
I've created a simple 4x4 Matrix struct and have made some tests, with surprising results. (although I've heard from similar results in c++) struct mat4 { float[4][4] m; mat4 opMul(in mat4 _m); } mat4 mul(in mat4 m1, in mat4 m2); I've tested this 2 multiplication functions (overloaded and

Re: A couple of new libraries

2012-06-21 Thread Matthias Pleh
Am 20.06.2012 23:20, schrieb BLM768: Can you tell us more about the GUI library, like: * Which platforms and GUI systems it's available on * Does it use native drawing operations * Or is it more directed to gaming It's currently Windows-only, but the plan is to make it cross-platform. It's

Re: [OT] Windows users: Are you happy with git?

2012-05-18 Thread Matthias Pleh
Am 18.05.2012 15:48, schrieb Christian Manning: On Friday, 18 May 2012 at 07:58:26 UTC, Lars T. Kyllingstad wrote: I remember back when we were considering whether to move DMD, Phobos and druntime from SVN on DSource to Git on GitHub, there were some concerns about using Git on Windows. People

Re: DUDA

2012-05-15 Thread Matthias Pleh
Am 15.05.2012 10:22, schrieb Anders Sjögren and...@sjogren.info: On Tuesday, 15 May 2012 at 02:36:25 UTC, Nick Sabalausky wrote: Thanks, now I can't get Camptown Races out of my head! ;) ;-) Doo-dah! doo-dah! ;)

Re: VisualD Console WIndow Disappears

2012-02-15 Thread Matthias Pleh
On 15.02.2012 08:27, RedShift wrote: So, I'm just starting to get into D, using the extension for VS called Visual D. Is there any way to stop the console from disappearing like in C++? Like C + F5 (which doesn't seem to work). Or like a getline? This sort of question is better fittet in

port c macro to D

2011-09-15 Thread Matthias Pleh
When porting c-code to D, I come consitently to the problem, how to convert such a c-macro: #define V(a,b,c) glVertex3d( a size, b size, c size ); #define N(a,b,c) glNormal3d( a, b, c ); N( 1.0, 0.0, 0.0); V(+,-,+); V(+,-,-); V(+,+,-); V(+,+,+); ... Ok, I could just write it out, but that's not

Re: port c macro to D

2011-09-15 Thread Matthias Pleh
On 15.09.2011 13:48, Trass3r wrote: If you are willing to write V(+1,-1,+1) instead you can just turn them into functions. really a good point! :) Also by static function you probably mean private in D. No, I meant for mixin I nead static functions, but I just realized, it also works without

Re: Move DWT2 repository - github or bitbucket?

2011-08-11 Thread Matthias Pleh
On 11.08.2011 19:58, Jacob Carlborg wrote: I'm planning to move the DWT2 repository to either github or bitbucket. Which one would you prefer? If you ask, github °matthias

Re: D brand identity repository

2011-07-02 Thread Matthias Pleh
Am 03.07.2011 00:00, schrieb James Fisher: WRT the code sample, I think I remember seeing somewhere a web-hosted D installation? This for Go http://golang.org/doc/play/ is one of my favourite features of their site (shame about the language itself). Such a thing for D would be a big

Re: CP command used in the phobos windows makefile

2011-05-28 Thread Matthias Pleh
Am 27.05.2011 14:06, schrieb Andrej Mitrovic: Guys, where did you get the unix cp port from? I don't have it installed, so I can't use make install -fwin32.mak. I've also tried using the one that comes with UnxTools from http://sourceforge.net/projects/unxutils/ , but that one fails with:

Re: D is back on Tiobe, now in position 23

2011-05-21 Thread Matthias Pleh
Am 21.05.2011 08:02, schrieb Russel Winder: On Fri, 2011-05-20 at 22:19 +0100, Robert Clipsham wrote: [ . . . ] And yes, I know TIOBE is a completely useless index (read that as a list of sophisticated arguments you've read before about it rather than a single sentence :3) I disagree that it

Re: Try it now

2011-04-13 Thread Matthias Pleh
[..snip..] Hey, that's so awesome, guys! Keep up that work :) °Matthias

Specify bitwidth in D

2011-04-10 Thread Matthias Pleh
in C++ we can specify the bitwidth in the declaration. So we can optimaze memory usage. unsigned int x: 30; unsigned int type : 2; How can we do that in D? °Matthias

Re: Specify bitwidth in D

2011-04-10 Thread Matthias Pleh
Am 10.04.2011 18:54, schrieb David Nadlinger: On 4/10/11 6:41 PM, Matthias Pleh wrote: in C++ we can specify the bitwidth in the declaration. So we can optimaze memory usage. unsigned int x : 30; unsigned int type : 2; How can we do that in D? You can't – if you need packed bit fields, have

Re: simple display (from: GUI library for D)

2011-04-09 Thread Matthias Pleh
Am 09.04.2011 13:11, schrieb Michel Fortin: On 2011-04-08 22:31:11 -0400, Matthias Pleh j...@konrad.net said: For the drawingt part. I'm currently working on a rednerer with scanline algorithm. This will be completly OS-independent. It's in a single file with 2kLOC, and rather low level

Re: simple display (from: GUI library for D)

2011-04-08 Thread Matthias Pleh
Am 09.04.2011 03:55, schrieb Michel Fortin: On 2011-04-08 21:45:20 -0400, Adam D. Ruppe destructiona...@gmail.com said: Michel Fortin wrote: One issue is that different operating system will draw things with slightly different algorithms, which will result in slightly different images, which

Re: GUI library for D

2011-04-07 Thread Matthias Pleh
Am 07.04.2011 21:38, schrieb Bruno Medeiros: On 05/04/2011 14:06, Jacob Carlborg wrote: On 2011-04-05 13:08, Matthias Pleh wrote: So I think for short or middle term such solution like gtkD, QtD, DWT are good, but for the long term the D community needs a D GUI library completly written in D

Re: GUI library for D

2011-04-07 Thread Matthias Pleh
Am 08.04.2011 00:08, schrieb Matthias Pleh: Am 07.04.2011 21:38, schrieb Bruno Medeiros: On 05/04/2011 14:06, Jacob Carlborg wrote: On 2011-04-05 13:08, Matthias Pleh wrote: So I think for short or middle term such solution like gtkD, QtD, DWT are good, but for the long term the D community

Re: GUI library for D

2011-04-07 Thread Matthias Pleh
Am 08.04.2011 00:27, schrieb Andrej Mitrovic: DWT is 3x the codebase size of SWT? 0o Maybe the old portet versions in the branches directory?

Re: GCC 4.6

2011-04-07 Thread Matthias Pleh
Am 01.04.2011 02:50, schrieb bearophile: inventing new language features for D3 Why do you always mention D3. I always hated the M$ strategy to release every 2 years a new C#/.Net version. I'm satisfied with D2, and let's improve it in quality not in quantity of features. just my 2 cents

Re: Settings in CodeBlocks -- D Language

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 06:47, schrieb David Wang: Dear all, The CodeBlocks IDE supports DMD compiler and I've described the proper settings for Codeblocks using in D Language. Please visit the WiKi page here: http://wiki.codeblocks.org/index.php?title=Installing_a_supported_compiler BTW, the Code

Re: Settings in CodeBlocks -- D Language

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 09:32, schrieb David Wang: === BTW: Would be good, if you also can keep our wiki for CodeBlocks up to date. http://prowiki.org/wiki4d/wiki.cgi?EditorSupport http://prowiki.org/wiki4d/wiki.cgi?EditorSupport/CodeBlocks === Because I have a user ID in

Re: GUI library for D

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 09:00, schrieb Jacob Carlborg: I think gtkD is out of the question since it's not using native controls. Don't know about QtD, if I recall correctly it, at least, looks quite native. But I would guess it would too hard to find whole int that, specially on Mac OS X. Qt (and so

Re: GUI library for D

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 11:40, schrieb Nick Sabalausky: Matthias Plehj...@konrad.net wrote in message news:inh91t$1854$1...@digitalmars.com... Am 06.04.2011 09:00, schrieb Jacob Carlborg: I think gtkD is out of the question since it's not using native controls. Don't know about QtD, if I recall

Re: GUI library for D

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 14:49, schrieb Michel Fortin: final class Bitmap(Color) : Image { void opIndexAssign(int x, int y, Color color) { pixels[y * width + x] = Color(color); } size_t width, height; Color[] pixels; } Yep, exactly. I would

Re: GUI library for D

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 15:21, schrieb Jacob Carlborg: On 2011-04-06 13:38, Matthias Pleh wrote: Am 06.04.2011 11:40, schrieb Nick Sabalausky: Matthias Plehj...@konrad.net wrote in message news:inh91t$1854$1...@digitalmars.com... Am 06.04.2011 09:00, schrieb Jacob Carlborg: I think gtkD is out

Re: GUI library for D

2011-04-06 Thread Matthias Pleh
Yes that's true. I don't know how much different it would be compared to a non-native framework since there you have all the different themes to maintain. Maybe, the best aproach would be, when you implement the basic framework flexible. E.g. a default rendering engine, where you can draw

Re: GUI library for D

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 17:35, schrieb Michel Fortin: On 2011-04-06 10:25:42 -0400, Matthias Pleh j...@konrad.net said: Am 06.04.2011 14:49, schrieb Michel Fortin: final class Bitmap(Color) : Image { void opIndexAssign(int x, int y, Color color) { pixels[y * width + x] = Color(color); } size_t width

Re: GUI library for D

2011-04-06 Thread Matthias Pleh
Am 06.04.2011 22:50, schrieb David Nadlinger: On 4/6/11 10:41 PM, Nick Sabalausky wrote: I don't think having fixed-size image will be a useful optimization, except perhaps if you manipulate a lot of tiny images of the same size. Manipulating images in software involves accessing a *lot* of

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 05.04.2011 08:20, schrieb Kagamin: Matthias Pleh Wrote: This were the requirments for the GUI library: - Corss-platform (Win/linux) - not just a port, but adjusted to the language - mostly written in this language, so you can easy debug the lib, this means no wrapper library, just

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 05.04.2011 10:43, schrieb Jacob Carlborg: Why is C++/Qt good enough but not D/Qt ? As I mentioned before, I could live with such a solution. When we decided our strategy one year ago, QtD was far away from ready but gtkD was already usable and stable. I was the one how recommend the use

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 05.04.2011 03:25, schrieb Michel Fortin: On 2011-04-04 19:55:44 -0400, Adam Ruppe destructiona...@gmail.com said: Michel Fortin wrote: On the other hand, one thing that is missing right now, in D and in most languages, is a standard way to display graphics. Actually, I wrote something to

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 05.04.2011 04:39, schrieb Adam D. Ruppe: Michel Fortin: Reminds me of David Simcha's plot2kill, which also has such a layer on top of which it implements plot drawing. Aye, he and I have shared some code in the past. I think such a module would be a great addition to Phobos. If I can

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 05.04.2011 15:06, schrieb Jacob Carlborg: On 2011-04-05 13:08, Matthias Pleh wrote: So I think for short or middle term such solution like gtkD, QtD, DWT are good, but for the long term the D community needs a D GUI library completly written in D. Just my thoughts °Matthias You do know

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 05.04.2011 23:50, schrieb Adam D. Ruppe: Matthias Pleh wrote: Have you some code around, which we can push further? Yeah, I'm porting one of the C components to D, then will post it here. (The D headers weren't good enough and I got lazy when copying them over and decided to just write

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 06.04.2011 00:20, schrieb Adam D. Ruppe: import simpledisplay; void main() { auto image = new Image(255, 255); foreach(a; 0..255) foreach(b; 0..255) image.putPixel(a, b, Color(a, b, 0)); image.display(); } Hey cool, this was a fast fix.

Re: GUI library for D

2011-04-05 Thread Matthias Pleh
Am 06.04.2011 00:41, schrieb Andrej Mitrovic: the hole wiki! I meant 'whole' of course Should go to sleep ... ;)

Re: DGui

2011-04-04 Thread Matthias Pleh
Am 04.04.2011 07:16, schrieb Nick Sabalausky: Windows 98 look. :p Best window skin ever to come out of MS. That's true. I still use it in my daily work. At home linux of course. :)

Re: [GSoC] Container proposals by Ishan and Christian

2011-04-04 Thread Matthias Pleh
Am 04.04.2011 01:09, schrieb Daniel Gibson: I agree. And please: let's not do it the Java Swing way, i.e. look and feel crappy and out of place on any platform for the sake of being consistent between platforms. Java Swing is an extreme example. Everything is selfdrawn. Qt makes it much

Re: i like cakes

2011-04-04 Thread Matthias Pleh
Am 04.04.2011 21:03, schrieb Daniel Gibson: And on the other hand there's Gary Whatmore and his army of sockpuppets voting down D critics and giving the whole community a bad name with his extreme (pseudo-?) fanboyism. Just one silly person, who is running http://redditroll.com/salespage/

Re: i like cakes

2011-04-04 Thread Matthias Pleh
Am 04.04.2011 21:34, schrieb Steven Schveighoffer: So 100 people get to have redditroll It's obviously, that he will sell more than this 100 copies ... (or try to sell)

GUI library for D

2011-04-04 Thread Matthias Pleh
was: [GSoC] Container proposals by Ishan and Christian To preventing losing this thread, I have created a new one ... Additional, I've added a license column on the GuiLibraries-table on the wiki. So, let me summarize my thoughts, why I think a good Gui library is important for the D

Re: GUI library for D

2011-04-04 Thread Matthias Pleh
Am 04.04.2011 23:34, schrieb Daniel Gibson: Am 04.04.2011 23:27, schrieb Matthias Pleh: was: [GSoC] Container proposals by Ishan and Christian [snip] This were the requirments for the GUI library: - Corss-platform (Win/linux) Don't forget Mac OSX. I just listed the requirments in our

Re: GUI library for D

2011-04-04 Thread Matthias Pleh
Am 05.04.2011 00:14, schrieb Daniel Gibson: Maybe your company could help the DWT or QtD guys? Getting something stable out of that would most probably not take as long as developing your own cross-platform GUI toolkit. Furthermore many people are already familiar with SWT and Qt, so they

Re: GUI library for D

2011-04-04 Thread Matthias Pleh
Am 05.04.2011 00:35, schrieb Alvaro: El 04/04/2011 23:51, Matthias Pleh escribió: Am 04.04.2011 23:34, schrieb Daniel Gibson: Am 04.04.2011 23:27, schrieb Matthias Pleh: was: [GSoC] Container proposals by Ishan and Christian [snip] This were the requirments for the GUI library: - Corss

Re: [GSoC] Container proposals by Ishan and Christian

2011-04-03 Thread Matthias Pleh
On 2011-04-03 21:05, Andrei Alexandrescu wrote: I think it's not too late to improve our GSoC ideas page So here come my ideas There is still the lack of a good D Gui Library. Currently some GUI's are still under development (most projects on dsoure are abandoned!), but none of them are

Re: [GSoC] Container proposals by Ishan and Christian

2011-04-03 Thread Matthias Pleh
On 2011-04-03 23:23, Matthias Pleh wrote: * GtkD - good and stable, but a D wrapper around a C-library * DWT - also good, but a port from Java and not really D-like coded * DFL - windows only, a way too .Net-like, is currently not very active (abandoned?) Ok, I've forgotten some * QtD

Re: [GSoC] Container proposals by Ishan and Christian

2011-04-03 Thread Matthias Pleh
On 2011-04-03 23:48, spir wrote: (Meaning a standard GUI-programming interface for D.) Yes, exactly! Just a really small Api to abstract the OS. - Application - as a representation for the process - Window - create, show, hide - Canvas/Image - to draw on + No buttons/textbox or other widgets,

dmd2 assertion failure when comparing pointers

2011-02-21 Thread Matthias Pleh
Maybe a little stupid, but I get an assert when I try to compare a valid pointer with an int casted pointer. I know, I could compare the pointer itself, but shouldn't is-poerator also work? Also, shouldn't an assert always reproted as a bug? struct Test {} void main() { Test t,t2;

Re: dmd2 assertion failure when comparing pointers

2011-02-21 Thread Matthias Pleh
Am 21.02.2011 19:00, schrieb bearophile: Matthias Pleh: Also, shouldn't an assert always reproted as a bug? Added: http://d.puremagic.com/issues/show_bug.cgi?id=5633 Bye, bearophile Ah, thanks!

Re: DMD versions

2011-02-18 Thread Matthias Pleh
Am 18.02.2011 13:51, schrieb Steven Schveighoffer: On Fri, 18 Feb 2011 07:36:18 -0500, Russel Winder rus...@russel.org.uk wrote: What is the official way of programmatically determining the version number of the currently executing dmd? Thanks. AFAIK, there isn't a way. You can only

Re: Windows API Translation

2011-02-08 Thread Matthias Pleh
Am 08.02.2011 22:37, schrieb Stewart Gordon: On 08/02/2011 12:25, Trass3r wrote: I wonder if these bindings would be suitable for inclusion in the core.sys.windows package? They definitely need to be merged. Merged? The whole point of the bindings project is that it will one day be

Re: ASM access to array

2011-02-02 Thread Matthias Pleh
As bearophile notet, unittest are always good!! But for the start, I always liked to make some pretty-printing functions ... ... so this is my version import std.stdio; uint rotl_d(uint value,ubyte rotation){ return (valuerotation) | (value(value.sizeof*8 - rotation)); } uint

Re: Smartphones and D

2011-01-30 Thread Matthias Pleh
Am 30.01.2011 06:50, schrieb Jonathan M Davis: I suspect that gdc can do it, since it's using gcc for its backend, but I don't know. There is already someone who has tried to build an arm-crosscompiler with gdc! See last post 'Building an ARM cross compiler' on the D.gnu maillinglist

Re: void main returning int - why compiles?

2011-01-01 Thread Matthias Pleh
On 2011-01-01 09:32, Jonathan M Davis wrote: On Friday 31 December 2010 23:37:17 Daren Scot Wilson wrote: I'm wondering why the following compiles. I'm using LDC. Perhaps it's a bug, or there's some subtlety about D. I have deliberately, out of a combination of idleness and desire for

Re: Please comment on http://d-programming-language.org/

2010-12-31 Thread Matthias Pleh
On 2010-12-31 10:45, Thomas Mader wrote: [...] How about a new logo for D in general? Are there any plans to make a contest or something similar to create a new D logo which has a modern looking design? vote ++ I also think that making the site valid is a very important thing, so are

Re: Please comment on http://d-programming-language.org/

2010-12-31 Thread Matthias Pleh
On 2010-12-31 11:40, Thomas Mader wrote: Am 2010-12-31 11:35, schrieb Matthias Pleh: On 2010-12-31 10:45, Thomas Mader wrote: I also think that making the site valid is a very important thing, so are there any plans to do so? If nobody wants it to do I could help. I think a better marketing

Re: Please comment on http://d-programming-language.org/

2010-12-31 Thread Matthias Pleh
BTW: Am 2010-09-02 14:46, schrieb retard: We need a more professional looking SVG version of the D man then! ... there is already a SVG logo for the D-man since 5 years, but obviousily it get not adopted :/ http://w148.de/~mmartin/d/logo.html Looks good. May I use it on

Re: C++ istream / ostream equivalent ?

2010-12-01 Thread Matthias Pleh
Thank you for your reply and yes that works :) Now i m facing with the following problem, what is the trick for input stream ? ( something like std::istream operator(std::istream in,A a) { // A.someData in; return in; } in C++ ) I m thinking of the situation when we want to

Re: C++ istream / ostream equivalent ?

2010-12-01 Thread Matthias Pleh
Or even more implicit version, since writeln and the likes recognize toString: writeln(a); writeln(b); [...] Well there is a relatively new proposal which aims to replace toString with more eficient and flexible function (and was generally accepted):

Re: C++ istream / ostream equivalent ?

2010-12-01 Thread Matthias Pleh
Am 01.12.2010 20:59, schrieb Jonathan M Davis: override is required if you compile with -w. If you don't use -w, the compiler won't complain, but I'm not sure that it actually overrides the function in that case. So, yes override should be there. I've just tried it out. It is really

Re: Looking for champion - std.lang.d.lex

2010-11-20 Thread Matthias Pleh
Am 20.11.2010 00:56, schrieb Michael Stover: so that was 4 months ago - how do things currently stand on that initiative? -Mike On Fri, Nov 19, 2010 at 6:37 PM, Bruno Medeiros brunodomedeiros+s...@com.gmail wrote: On 19/11/2010 22:25, Michael Stover wrote: As for D lexers and

Re: In praise of Go discussion on ycombinator

2010-11-17 Thread Matthias Pleh
Am 17.11.2010 14:55, schrieb Steven Schveighoffer: Being someone who likes the brace-on-its-own-line style i++ greets Matthias

why no implicit convertion?

2010-11-17 Thread Matthias Pleh
void foo(char[] a) {} void bar(char[][] b) {} int main(string[] args) { char[4] a; char[4][4] b; foo(a);// OK: implicit convertion bar(b);// Error: cannot implicitly convert //char[4u][4u] to char[][] } what is the reason for the

Re: DMD Automatic Dependency Linking

2010-11-16 Thread Matthias Pleh
Am 16.11.2010 18:38, schrieb Travis: The one thing I have been wondering however is why doesn't DMD have a flag for easy project building which compiles dependencies in a single command. [...] Thanks, tbone Have you tried 'rdmd' ?

Re: Help for .h to D pain?

2010-11-13 Thread Matthias Pleh
Am 12.11.2010 05:01, schrieb jfd: I was trying to translate Apache module include files to D, but it soon leads to a labyrinth of tangled nested #includes and #define and typedef's. The tools, `dmc -c -e -l', htod, etc. immediately choked. It is getting really, really,... time consuming, and

Re: Basic standard graphics

2010-11-13 Thread Matthias Pleh
Am 13.11.2010 11:56, schrieb spir: On Fri, 12 Nov 2010 16:39:54 -0500 bearophilebearophileh...@lycos.com wrote: The Image Noise task asks: Generate a random black and white 320x240 image continuously, showing FPS (frames per second). This is the PureBasic implementation, it's far from being

Re: Basic standard graphics

2010-11-13 Thread Matthias Pleh
Am 13.11.2010 14:03, schrieb Peter Alexander: On 13/11/10 11:14 AM, Matthias Pleh wrote: I'm working on some basic graphic-routines in d inspired by http://www.antigrain.com/ Maybe this will be helpfull! Are you building it on top of an existing window/video layer (e.g. SDL)? I try

Re: Hacking on DMD

2010-11-13 Thread Matthias Pleh
Am 13.11.2010 14:17, schrieb div0: On 13/11/2010 07:46, Matthias Pleh wrote: Am 13.11.2010 05:18, schrieb Nick Sabalausky: div0d...@sourceforge.net wrote in message news:ibjef2$60...@digitalmars.com... On 12/11/2010 05:05, Nick Sabalausky wrote: div0d...@sourceforge.net wrote in message

Re: Hacking on DMD

2010-11-12 Thread Matthias Pleh
Am 13.11.2010 05:18, schrieb Nick Sabalausky: div0d...@sourceforge.net wrote in message news:ibjef2$60...@digitalmars.com... On 12/11/2010 05:05, Nick Sabalausky wrote: div0d...@sourceforge.net wrote in message news:ibi2n1$7j...@digitalmars.com... Is there an official guide to DMD source

Re: Looking for champion - std.lang.d.lex

2010-10-28 Thread Matthias Pleh
Am 28.10.2010 16:46, schrieb Don: retard wrote: Wed, 27 Oct 2010 16:04:34 -0600, Todd D. VanderVeen wrote: Legacy in the sense that C is perhaps. http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html Probably the top 10 names are more or less correct there, but some funny notes:

Re: What do people here use as an IDE?

2010-10-12 Thread Matthias Pleh
Am 13.10.2010 03:57, schrieb Michael Stover: Elephant appears dead. Poseidon's activity is extremely low and is still alpha after 5 years. LEDS is even less active, and DDT doesn't have a release yet. What do actual D programmers use? -Mike win32 - VisualD linux - CodeBlocks

Re: htod, no version for Linux?

2010-09-14 Thread Matthias Pleh
Am 17.08.2010 21:47, schrieb Paul Dufresne: I downloaded htod.zip and found there is only htod.exe inside. Any version for Linux? Maybe it's to late for you, but I've discovered a small ruby-script (GPL'ed) in the dotmars-project, which use the gcc-xml tool. So it should also work on linux.

Re: Bizprac database.. Urgent

2010-09-09 Thread Matthias Pleh
Am 09.09.2010 12:33, schrieb Stephan: On 08.09.2010 18:16, Simen kjaeraas wrote: retard r...@tard.com.invalid wrote: Wed, 08 Sep 2010 15:20:52 +0200, BLS wrote: Wrong target audience? Nein, wir sprechen ja hier alle Deutsch, ja? echt hier sprechen alle Deutsch ? gut zu wissen ;) was

Re: Where do I post website bugs?

2010-08-31 Thread Matthias Pleh
Am 30.08.2010 19:34, schrieb Andrei Alexandrescu: On 8/30/10 12:28 PDT, Adam B wrote: Thanks. I'll use the puremagic issue tracker. And by the way, if http://www.d-programming-language.org holds a proposed style change I'll vote for it! It feels much more modern and polished. That said, having

D on langpop.com

2010-07-06 Thread Matthias Pleh
I think most of us knows the popularity index site tiobe.com ( http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html ) But does anyone know the site langpop.com It's very interesting how popular D is on different community sites.

Re: D on langpop.com

2010-07-06 Thread Matthias Pleh
Am 06.07.2010 11:34, schrieb Matthias Pleh: I think most of us knows the popularity index site tiobe.com ( http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html ) But does anyone know the site langpop.com It's very interesting how popular D is on different community sites. http

Re: Price drop for TDPL on Amazon to $41.10eom

2010-06-14 Thread Matthias Pleh
Am 14.06.2010 22:53, schrieb Jérôme M. Berger: Steven Schveighoffer wrote: On Mon, 14 Jun 2010 13:42:20 -0400, Walter Bright newshou...@digitalmars.com wrote: I see Amazon has two used copies at $77.14. Why would anyone try to sell a copy at double the price of new, when the new is in stock

Re: SHOO's Time code -- conclusion

2010-06-11 Thread Matthias Pleh
I accept Shoos implementation only with the conditions 1) No multiplication, division and remainder operations are allowed. Tango used these operations for date calculation in an original way. All similar uses are forbidden. 2) Also it is not allowed to implement routines for operations at

Re: I'm holding it in my hands

2010-06-11 Thread Matthias Pleh
Am 10.06.2010 11:50, schrieb Rory McGuire: I cancelled my order with amazon and bought it on informit. Its already shipped. and I bought it yesturday. On Wed, 09 Jun 2010 23:37:20 +0200, filgood fi...@wuytack.net wrote: It's worse in the UK: Not yet dispatched Dispatch Estimate: 28 July

Re: layout wiki4d - part 2

2010-06-09 Thread Matthias Pleh
Looks good. :) Thanks for taking the time to do it! -Lars Thanks! :) In the most discussions I had with my coworkers, has been been mentioned, that a community, which even not have a beautiful wiki (besides other issues), can't be a serious project. So I decided to improve this. I

Re: layout wiki4d - part 2

2010-06-08 Thread Matthias Pleh
It seems, variant b) is the winner. I've updated to b) with the font and font-size form c) and some minor changes. I hope you love it. Enoy greets Matthias

layout wiki4d - part 2

2010-06-06 Thread Matthias Pleh
Ok, as already mentioned in the old thread I have set up a testpage to make the suggested (and some other minor) changes. So we should decide, which layout we should use for the wiki. a) the old one b) the current http://www.prowiki.org/wiki4d/wiki.cgi c) the testpage

Re: new layout on wiki4d

2010-06-03 Thread Matthias Pleh
thanks for your comments I've played around with the font-size problem and have setup a test page under my folder on the wiki. I also like the idea from Justin to make the look more like the official d-page. So please have a look, comment here or change the files directly for the testpage.

Re: new layout on wiki4d

2010-06-03 Thread Matthias Pleh
Other than those things, it looks good though. thanks! I've tried to left out the specification of the font-size (as someone mentioned here), and the result was this big font! But now it should look better.

Re: Code::Blocks 10.05

2010-06-01 Thread Matthias Pleh
Am 31.05.2010 21:23, schrieb Philippe Sigaud: On Mon, May 31, 2010 at 17:08, BCS n...@anon.com mailto:n...@anon.com wrote: Hello Matthias, Sadly they haven't applied my patches for D (uploaded on 12.April) and many new users are overstrained with applying patchtes and

Re: new layout on wiki4d

2010-05-31 Thread Matthias Pleh
Am 30.05.2010 23:43, schrieb Stewart Gordon: Matthias Pleh wrote: I have renewed the layout of the wiki4d-site. It's not finished, but I think it is already useable! Content itself hasn't changed! Any thoughts? snip Get rid of the abomination that is font sizes in px! Specify them in em

Re: new layout on wiki4d

2010-05-31 Thread Matthias Pleh
New design is good! I have a suggestion. Now, Japanese site on Other Languages is inactive. Could you please change link? New link: http://dusers.dip.jp/ Masahiro -- done! BTW: hey, it's a wiki. You can change everything yourself. Ther is no registration needed. Just click on

Re: Code::Blocks 10.05

2010-05-31 Thread Matthias Pleh
Am 31.05.2010 08:59, schrieb Anders F Björklund: The open source and cross platform IDE Code::Blocks 10.05 has been released: http://www.codeblocks.org/ Available for Windows, Linux and Mac OS X. Uses the wxWidgets toolkit and GPL license. --anders Sadly they haven't applied my patches for

OT: Use of D-icon

2010-05-28 Thread Matthias Pleh
Am 28.05.2010 20:06, schrieb Walter Bright: http://twitter.com/D_Programming also use #d_lang to connect D related tweets OT: I'm working on a redesign for wiki4d. Now I've seen the D-logo on twitter and I like it. :) Can we use this picture for wiki4d? greets Matthias

new layout on wiki4d

2010-05-28 Thread Matthias Pleh
I have renewed the layout of the wiki4d-site. It's not finished, but I think it is already useable! Content itself hasn't changed! Any thoughts? Please check also the links on the sidebar! I have taken this from a template from Justin Calvarese (thanks), so maybe some links should changed,

Re: Poll: Primary D version

2010-05-22 Thread Matthias Pleh
Am 21.05.2010 23:14, schrieb Matthias Pleh: Am 21.05.2010 22:27, schrieb Nick Sabalausky: Matthias Plehmatthias.p...@gmx.at wrote in message news:ht6p7t$27s...@digitalmars.com... Oh god, we have to inform micropoll, there is more than the USA ... Kagamins...@here.lot wrote in message

Re: Poll: Primary D version

2010-05-22 Thread Matthias Pleh
Am 20.05.2010 08:52, schrieb Nick Sabalausky: I'm interested in trying to gauge the current state of D version usage, so I've set up a poll: http://micropoll.com/t/KEFfsZBH5F I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I personally hate MicroPoll but everything

Re: Poll: Primary D version

2010-05-21 Thread Matthias Pleh
Am 20.05.2010 08:52, schrieb Nick Sabalausky: I'm interested in trying to gauge the current state of D version usage, so I've set up a poll: http://micropoll.com/t/KEFfsZBH5F I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I personally hate MicroPoll but everything

Re: Poll: Primary D version

2010-05-21 Thread Matthias Pleh
Am 21.05.2010 22:27, schrieb Nick Sabalausky: Matthias Plehmatthias.p...@gmx.at wrote in message news:ht6p7t$27s...@digitalmars.com... Oh god, we have to inform micropoll, there is more than the USA ... Kagamins...@here.lot wrote in message news:ht6jgv$1tb...@digitalmars.com... I'd

Re: TDPL is #53 on the bestselling list at bestbookbuys.com

2010-04-23 Thread Matthias Pleh
Now we have reached #56 :) Let's go clicking to get #1 exactly how to we do this? There is not 'buy now' button. click cover - click a buy-button :) or even better - preorder the book!! (that would help more, since this bestsellerlist will be uncovered ...)

Re: TDPL is #56 on the bestselling list at bestbookbuys.com

2010-04-22 Thread Matthias Pleh
Andrei Alexandrescu wrote: http://www.bestwebbuys.com/books/bestsellers There are only three programming books on their Top 100 list. The other two are Modern C++ Design (#12) and C++ Coding Standards (#28). This all sounds great, but it must be because my homepage links to

Re: Fatal flaw in D design which is holding back widespread adoption

2010-03-31 Thread Matthias Pleh
bearophile bearophileh...@lycos.com schrieb im Newsbeitrag news:hov7j7$sv...@digitalmars.com... Bane: I wonder do Python folks have same problems. In Python3+ if you mix tabs and spaces to indent code, the interpreter raises a parsing error. So you are forced to use only tabs or only

Re: It is impossible to debug code compiled with dmd

2010-03-31 Thread Matthias Pleh
Am 31.03.2010 20:16, schrieb Robert Clipsham: On 31/03/10 16:09, Robert Clipsham wrote: On 31/03/10 10:41, Eldar Insafutdinov wrote: On Linux dmd outputs faulty debug info. There are several bugs in the debug info on linux, one of them I've fixed (for most cases ie. anything that requires

Re: Code Poet IDE

2010-03-30 Thread Matthias Pleh
I also loved this project from the very first beginning. But there is still no code checked in. And we hear nothing from the author, here and on sourceforge. That is the reason, why I started now my own porject! But since I want to have as less work as possible, I searched for an IDE with basic

  1   2   >