Jump to page: 1 2 3
Thread overview
What programming tools do you usually use?
Nov 12, 2021
Dr Machine Code
Nov 12, 2021
Greg Strong
Nov 12, 2021
forkit
Nov 12, 2021
Dr Machine Code
Nov 12, 2021
forkit
Nov 12, 2021
Dr Machine Code
Nov 12, 2021
forkit
Nov 12, 2021
Dr Machine Code
Nov 13, 2021
Imperatorn
Nov 13, 2021
forkit
Nov 13, 2021
Imperatorn
Nov 13, 2021
forkit
Nov 13, 2021
Dr Machine Code
Nov 13, 2021
Vinod K Chandran
Nov 13, 2021
Vinod K Chandran
Nov 13, 2021
forkit
Nov 14, 2021
Greg Strong
Nov 14, 2021
H. S. Teoh
Nov 15, 2021
NotSpooky
Nov 12, 2021
Alexey
Nov 13, 2021
zjh
Nov 13, 2021
Dr Machine Code
Nov 13, 2021
Dadoum
Nov 13, 2021
Imperatorn
Nov 13, 2021
Dadoum
Nov 13, 2021
JN
November 12, 2021

willing to learn what programming tools do you guys use when coding in D. Maybe there are something new out there. The tools aside from the usual compiler(dmd/ldc/gdc)/debugger/dub

November 12, 2021

On Friday, 12 November 2021 at 21:05:05 UTC, Dr Machine Code wrote:

>

willing to learn what programming tools do you guys use when coding in D. Maybe there are something new out there. The tools aside from the usual compiler(dmd/ldc/gdc)/debugger/dub

I use Microsoft Visual Studio with Visual D.

November 12, 2021
On Friday, 12 November 2021 at 21:05:05 UTC, Dr Machine Code wrote:
> willing to learn what [programming tools](https://en.wikipedia.org/wiki/Programming_tool) do you guys use when coding in D. Maybe there are something new out there. The tools aside from the usual compiler(dmd/ldc/gdc)/debugger/dub

I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.

I call it EZ Compiler.

Here is screen dump of it (not sure how long link lasts)

https://imgur.com/a/PvBm2q4
November 12, 2021
On Friday, 12 November 2021 at 22:33:00 UTC, forkit wrote:
> On Friday, 12 November 2021 at 21:05:05 UTC, Dr Machine Code wrote:
>> willing to learn what [programming tools](https://en.wikipedia.org/wiki/Programming_tool) do you guys use when coding in D. Maybe there are something new out there. The tools aside from the usual compiler(dmd/ldc/gdc)/debugger/dub
>
> I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.
>
> I call it EZ Compiler.
>
> Here is screen dump of it (not sure how long link lasts)
>
> https://imgur.com/a/PvBm2q4

Do you use it like a REPL window?
November 12, 2021

On Friday, 12 November 2021 at 21:05:05 UTC, Dr Machine Code wrote:

>

willing to learn what programming tools do you guys use when coding in D. Maybe there are something new out there. The tools aside from the usual compiler(dmd/ldc/gdc)/debugger/dub

I'm currently stick with jEdit. I'm going to write my own editor after a while.

for Go I'm using liteide.

November 12, 2021
On Friday, 12 November 2021 at 22:38:48 UTC, Dr Machine Code wrote:
> On Friday, 12 November 2021 at 22:33:00 UTC, forkit wrote:
>> On Friday, 12 November 2021 at 21:05:05 UTC, Dr Machine Code wrote:
>>> willing to learn what [programming tools](https://en.wikipedia.org/wiki/Programming_tool) do you guys use when coding in D. Maybe there are something new out there. The tools aside from the usual compiler(dmd/ldc/gdc)/debugger/dub
>>
>> I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.
>>
>> I call it EZ Compiler.
>>
>> Here is screen dump of it (not sure how long link lasts)
>>
>> https://imgur.com/a/PvBm2q4
>
> Do you use it like a REPL window?

It's as close as I want to getting a REPL window, but no closer.

I don't like tools that do too much for you 'automatically' .. like that godbolt thing, which reacts to every key stroke... that really bugs me!!

I still prefer to manage the code|run|display loop myself ;-)
November 12, 2021
On Friday, 12 November 2021 at 22:33:00 UTC, forkit wrote:
>
> I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.
>
> I call it EZ Compiler.
>
> Here is screen dump of it (not sure how long link lasts)
>
> https://imgur.com/a/PvBm2q4

This pic is much better pic of it, as it shows 'actual' D code ;-)

https://imgur.com/a/8mm0Fdi

November 12, 2021
On Friday, 12 November 2021 at 23:22:44 UTC, forkit wrote:
> On Friday, 12 November 2021 at 22:38:48 UTC, Dr Machine Code wrote:
>> On Friday, 12 November 2021 at 22:33:00 UTC, forkit wrote:
>>> On Friday, 12 November 2021 at 21:05:05 UTC, Dr Machine Code wrote:
>>>> willing to learn what [programming tools](https://en.wikipedia.org/wiki/Programming_tool) do you guys use when coding in D. Maybe there are something new out there. The tools aside from the usual compiler(dmd/ldc/gdc)/debugger/dub
>>>
>>> I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.
>>>
>>> I call it EZ Compiler.
>>>
>>> Here is screen dump of it (not sure how long link lasts)
>>>
>>> https://imgur.com/a/PvBm2q4
>>
>> Do you use it like a REPL window?
>
> It's as close as I want to getting a REPL window, but no closer.

doesn't support D? I love REPL window, a shame (as far I know) there's no one for D. For C# I used LinqPAD. For C/C++ is really boring create a new file, going to terminal etc just to test a piece of code

> I don't like tools that do too much for you 'automatically' .. like that godbolt thing, which reacts to every key stroke... that really bugs me!!

that bugs me too, I hate that thing

> I still prefer to manage the code|run|display loop myself ;-)

me too
November 12, 2021
On Friday, 12 November 2021 at 23:45:38 UTC, forkit wrote:
> On Friday, 12 November 2021 at 22:33:00 UTC, forkit wrote:
>>
>> I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.
>>
>> I call it EZ Compiler.
>>
>> Here is screen dump of it (not sure how long link lasts)
>>
>> https://imgur.com/a/PvBm2q4
>
> This pic is much better pic of it, as it shows 'actual' D code ;-)
>
> https://imgur.com/a/8mm0Fdi

that sounds interesting, is this tool available to public? as REPL window for D it would be useful
November 13, 2021

On Friday, 12 November 2021 at 23:50:31 UTC, Dr Machine Code wrote:

>

On Friday, 12 November 2021 at 23:45:38 UTC, forkit wrote:

>

On Friday, 12 November 2021 at 22:33:00 UTC, forkit wrote:

>

I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.

I call it EZ Compiler.

Here is screen dump of it (not sure how long link lasts)

https://imgur.com/a/PvBm2q4

This pic is much better pic of it, as it shows 'actual' D code ;-)

https://imgur.com/a/8mm0Fdi

that sounds interesting, is this tool available to public? as REPL window for D it would be useful

Disclaimer: this is not a repl by any means. I was just toying around with how fast compiles are:
https://github.com/Imperatorn/repel-d

I called it repel-d because I was repelled by it at first.

But it "works" and I can evaluate stuff in it pretty easy and do stuff with the last output etc.

« First   ‹ Prev
1 2 3