www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Applications that created on D Programming

reply "Vincent" <spawn_rock2000 yahoo.com> writes:
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
Nov 06 2013
next sibling parent "WasThere" <WasThere example.com> writes:
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
Nov 06 2013
prev sibling next sibling parent reply "deadalnix" <deadalnix gmail.com> writes:
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.
Nov 06 2013
parent "John Colvin" <john.loughran.colvin gmail.com> writes:
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.
Nov 07 2013
prev sibling next sibling parent reply Marco Leise <Marco.Leise gmx.de> writes:
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
Nov 07 2013
parent "Adam D. Ruppe" <destructionator gmail.com> writes:
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]))); }
Nov 07 2013
prev sibling next sibling parent "Adam D. Ruppe" <destructionator gmail.com> writes:
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/
Nov 07 2013
prev sibling next sibling parent reply "Dejan Lekic" <dejan.lekic gmail.com> writes:
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).
Nov 07 2013
next sibling parent "Graham Fawcett" <fawcett uwindsor.ca> writes:
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
Nov 07 2013
prev sibling next sibling parent reply Marco Leise <Marco.Leise gmx.de> writes:
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
Nov 07 2013
parent "Kapps" <opantm2+spam gmail.com> writes:
On Thursday, 7 November 2013 at 16:16:22 UTC, Marco Leise wrote:
 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.
https://github.com/Charged/Miners
Nov 07 2013
prev sibling parent "Steve Teale" <steve.teale britseyeview.com> writes:
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).
Try britseyeview.com/software/compo/
Nov 09 2013
prev sibling next sibling parent "John Colvin" <john.loughran.colvin gmail.com> writes:
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/kiith-sa/ICE
Nov 07 2013
prev sibling next sibling parent reply Jacob Carlborg <doob me.com> writes:
On 2013-11-07 06:34, 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
Poseidon - An IDE written in D1: http://www.dsource.org/projects/poseidon/ -- /Jacob Carlborg
Nov 07 2013
parent reply Marcin Mstowski <marmyst gmail.com> writes:
http://www.asahi-net.or.jp/~cs8k-cyu/windows/tt_e.html
Torus Trooper, but it is very, very old (D ver. 0.110).


On Thu, Nov 7, 2013 at 9:52 PM, Jacob Carlborg <doob me.com> wrote:

 On 2013-11-07 06:34, 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
Poseidon - An IDE written in D1: http://www.dsource.org/projects/poseidon/ -- /Jacob Carlborg
Nov 07 2013
parent "Wyatt" <wyatt.epp gmail.com> writes:
On Friday, 8 November 2013 at 06:17:09 UTC, Marcin Mstowski wrote:
 http://www.asahi-net.or.jp/~cs8k-cyu/windows/tt_e.html
 Torus Trooper, but it is very, very old (D ver. 0.110).
I was recently thinking about trying to get that to build in modern D. Might poke at it this weekend if the person I've assigned to remind me about it remembers to remind me. ;) -Wyatt
Nov 08 2013
prev sibling next sibling parent "thedeemon" <dlang thedeemon.com> writes:
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?
Here are some Windows apps with GUI and multithreading: http://www.infognition.com/blogsort/ - image processor http://www.infognition.com/undup/ - disk space visualizer and duplicates searcher
Nov 11 2013
prev sibling next sibling parent Jacob Carlborg <doob me.com> writes:
On 2013-11-07 06:34, 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
Entice Designer. A GUI builder for DFL and DWT: http://www.dprogramming.com/entice.php -- /Jacob Carlborg
Nov 11 2013
prev sibling parent "Vincent" <spawn_rock2000 yahoo.com> writes:
Thanks guys.....
Its a great help...
Nov 13 2013