Jump to page: 1 27  
Page
Thread overview
What kinds of Software do you create in D.
Oct 30, 2021
harakim
Oct 30, 2021
Adam D Ruppe
Oct 30, 2021
JN
Oct 30, 2021
SealabJaster
Oct 30, 2021
Andrey Zherikov
Oct 30, 2021
SealabJaster
Oct 30, 2021
james.p.leblanc
Oct 30, 2021
Imperatorn
Oct 30, 2021
Preetpal
Oct 30, 2021
Guillaume Piolat
Oct 30, 2021
Tejas
Oct 30, 2021
Guillaume Piolat
Oct 31, 2021
Dr Machine Code
Oct 31, 2021
Guillaume Piolat
Oct 31, 2021
Dr Machine Code
Oct 31, 2021
Guillaume Piolat
Nov 01, 2021
Dr Machine Code
Oct 30, 2021
Andrey Zherikov
Oct 31, 2021
russhy
Oct 30, 2021
thedeemon
Oct 30, 2021
Imperatorn
Oct 30, 2021
thedeemon
Oct 31, 2021
harakim
Oct 31, 2021
Mike Parker
Oct 31, 2021
Dr Machine Code
Oct 31, 2021
thedeemon
Oct 30, 2021
bachmeier
Oct 30, 2021
Imperatorn
Oct 31, 2021
bachmeier
Oct 31, 2021
harakim
Oct 31, 2021
Dr Machine Code
Oct 31, 2021
Ali Çehreli
Oct 31, 2021
James Blachly
Oct 31, 2021
Bastiaan Veelo
Nov 01, 2021
Sönke Ludwig
Nov 02, 2021
Ferhat Kurtulmuş
Nov 01, 2021
MGW
Nov 01, 2021
rikki cattermole
Nov 02, 2021
Bastiaan Veelo
Nov 01, 2021
harakim
Nov 01, 2021
harakim
Nov 01, 2021
H. S. Teoh
Nov 01, 2021
Adam D Ruppe
Nov 01, 2021
H. S. Teoh
Nov 02, 2021
Adam D Ruppe
Nov 01, 2021
H. S. Teoh
Nov 02, 2021
Adam D Ruppe
Nov 02, 2021
H. S. Teoh
Nov 02, 2021
Patrick Schluter
Nov 02, 2021
H. S. Teoh
Nov 02, 2021
Adam D Ruppe
Nov 02, 2021
H. S. Teoh
Nov 02, 2021
bachmeier
Nov 01, 2021
dd
Nov 02, 2021
Imperatorn
Nov 02, 2021
dd
Nov 02, 2021
SealabJaster
Nov 02, 2021
dangbinghoo
Nov 02, 2021
Bastiaan Veelo
Nov 03, 2021
dangbinghoo
Nov 02, 2021
Ferhat Kurtulmuş
Nov 02, 2021
Ferhat Kurtulmuş
Nov 02, 2021
WebFreak001
October 30, 2021

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

October 30, 2021
On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:
> I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

I do a little bit of everything (which is why my libs cover a bit fo everything https://github.com/adamdruppe/arsd ).

Lots of web stuff over the years, some desktop apps, a few games, even some embedded stuff.
October 30, 2021

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

Working on a 3D engine, used OpenGL as backend but now using WebGPU.

October 30, 2021

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

Lots of little useless libraries:

Many, many more that are too minor to mention or never even saw the light of day.

For applications:

And again, many more minor things. And plenty of things that never made it to Github.

Some wacky things I want to experiment with, probably using D:

  • A D-native scripting language, using the MIR library https://github.com/vnmakarov/mir

  • Some weird idea for a file format, where the format embeds a script/bytecode which is responsible for actually transforming data from it's initial format and the stored file format, and vice-versa.

  • My brain still keeps trying to come up with an interesting build system, but constantly fails >x3

So in general, just a bunch of random, mostly experimental things. From other's anecdotes, they've found that D is the perfect language for prototyping because going from a prototype into a production codebase is apparently very smooth.

October 30, 2021

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

Mainly numerical (signal processing) algorithms, as well as various
associated small routines for presentation and analysis)

October 30, 2021

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

Various. Latest thing was just a modbus client.

I don't do any gui stuff tho

October 30, 2021

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

Well, I use this application everyday for window management functions: https://gist.github.com/preetpalS/d2482d6ec91eb8147e6cff43ab197ed5

It helps me stretch Windows across monitors in my multi-monitor setup.

I also used D for processing data before and I have written some command line tools in it (like a tool to find files based on filename, a random password generator). I am planning on using D lang more in the future for writing little command line tools as I need them.

I plan on tackling larger projects in D lang in the future.

October 30, 2021

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

Consumer desktop apps. D is a non-weaponized language that is fast and productive, and easily targets the 3 big OS desktops.

October 30, 2021

On Saturday, 30 October 2021 at 16:53:39 UTC, Guillaume Piolat wrote:

>

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

Consumer desktop apps. D is a non-weaponized language that is fast and productive, and easily targets the 3 big OS desktops.

What do you mean by non-weaponized? It's not specialized for a particular domain?

October 30, 2021

On Saturday, 30 October 2021 at 01:48:25 UTC, harakim wrote:

>

I'm curious: Is there a poll somewhere that asks what kind of software projects people write in D? If not, what does everyone write using the D Language?

I'm just playing with D so I haven't done any serious project yet.
The only one I did so far is a small library for parsing of CLI arguments.

« First   ‹ Prev
1 2 3 4 5 6 7