Jump to page: 1 2
Thread overview
Applications that created on D Programming
Nov 07, 2013
Vincent
Nov 07, 2013
WasThere
Nov 07, 2013
deadalnix
Nov 07, 2013
John Colvin
Nov 07, 2013
Marco Leise
Nov 07, 2013
Adam D. Ruppe
Nov 07, 2013
Adam D. Ruppe
Nov 07, 2013
Dejan Lekic
Nov 07, 2013
Graham Fawcett
Nov 07, 2013
Marco Leise
Nov 07, 2013
Kapps
Nov 09, 2013
Steve Teale
Nov 07, 2013
John Colvin
Nov 07, 2013
Jacob Carlborg
Nov 08, 2013
Marcin Mstowski
Nov 08, 2013
Wyatt
Nov 11, 2013
thedeemon
Nov 11, 2013
Jacob Carlborg
Nov 13, 2013
Vincent
November 07, 2013
My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?

Need help... Thanks
November 07, 2013
On Thursday, 7 November 2013 at 05:34:28 UTC, Vincent wrote:
> My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?
>
> Need help... Thanks

http://forum.dlang.org/thread/l3mnqp$9i8$1@digitalmars.com
November 07, 2013
On Thursday, 7 November 2013 at 05:34:28 UTC, Vincent wrote:
> My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?
>
> Need help... Thanks

https://github.com/trending?l=d

You can find some stuff here.
November 07, 2013
Am Thu, 07 Nov 2013 06:34:26 +0100
schrieb "Vincent" <spawn_rock2000@yahoo.com>:

> My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?
> 
> Need help... Thanks

Is this instructor using Windows?

I think the best would be a program that's not written in D for D and has a GUI. This is what I think of as an application. "DUB" is written for D and "vibe.d" is server infrastructure.

So maybe someone knows a typical application (maybe a notepad replacement, conversion tool, calculator, image viewer, ...)?

-- 
Marco

November 07, 2013
On Thursday, 7 November 2013 at 07:42:51 UTC, deadalnix wrote:
> On Thursday, 7 November 2013 at 05:34:28 UTC, Vincent wrote:
>> My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?
>>
>> Need help... Thanks
>
> https://github.com/trending?l=d
>
> You can find some stuff here.

https://github.com/trending?l=d&since=monthly is probably a better representation. Daily is a bit short for D.
November 07, 2013
On Thursday, 7 November 2013 at 05:34:28 UTC, Vincent wrote:
> Can you give me an application that has created in D programming not the code but a title?

I've written an open source terminal emulator in D:
https://github.com/adamdruppe/terminal-emulator

And I also wrote this youngish closed-source website (among quite a few others) in D:
http://fanclipper.com/
November 07, 2013
On Thursday, 7 November 2013 at 05:34:28 UTC, Vincent wrote:
> My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?
>
> Need help... Thanks

VibeD is the first project that comes to my mind. http://vibed.org . If you want a GUI application, do not look - there is no GUI application done in D that I know of that is worth mentioning... (No offense to those people who did some GUI stuff with D)

There are lots of games and games related projects around, but I can't remember any of those projects (someone help me here).
November 07, 2013
On Thursday, 7 November 2013 at 16:06:19 UTC, Dejan Lekic wrote:
> On Thursday, 7 November 2013 at 05:34:28 UTC, Vincent wrote:
>> My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?
>>
>> Need help... Thanks
>
> VibeD is the first project that comes to my mind. http://vibed.org . If you want a GUI application, do not look - there is no GUI application done in D that I know of that is worth mentioning... (No offense to those people who did some GUI stuff with D)
>
> There are lots of games and games related projects around, but I can't remember any of those projects (someone help me here).

The D Forum software, running <http://forum.dlang.org/>, definitely comes to mind. It has earned a lot of (well-deserved) respect from non-D users, for being not only a modern and well designed Web forum, but also for being incredibly fast and responsive.

http://www.reddit.com/r/programming/comments/ppre5/the_new_d_online_forum_software_written_in_d/

Graham
November 07, 2013
Am Thu, 07 Nov 2013 17:06:17 +0100
schrieb "Dejan Lekic" <dejan.lekic@gmail.com>:

> On Thursday, 7 November 2013 at 05:34:28 UTC, Vincent wrote:
> > My instructor ask me a sample application that created in D. Can you give me an application that has created in D programming not the code but a title?
> >
> > Need help... Thanks
> 
> VibeD is the first project that comes to my mind. http://vibed.org . If you want a GUI application, do not look - there is no GUI application done in D that I know of that is worth mentioning... (No offense to those people who did some GUI stuff with D)
> 
> There are lots of games and games related projects around, but I can't remember any of those projects (someone help me here).

What's the name of that Minecraft clone written in D ? That's a pretty big server/client application using OpenGL.

-- 
Marco

November 07, 2013
On Thursday, 7 November 2013 at 08:21:51 UTC, Marco Leise wrote:
> So maybe someone knows a typical application (maybe a notepad
> replacement, conversion tool, calculator, image viewer, ...)?

You can do a simple image viewer in just one line with my simpledisplay.d and png.d:

import simpledisplay;
import arsd.png;
void main(string[] args)
      displayImage(Image.fromMemoryImage(readPng(args[1])));
}
« First   ‹ Prev
1 2