Re: Feedback request from production of the usage of DWT

2024-06-14 Thread Ferhat Kurtulmuş via Digitalmars-d-learn
On Friday, 14 June 2024 at 17:39:00 UTC, Ferhat Kurtulmuş wrote: On Friday, 14 June 2024 at 17:27:20 UTC, Menjanahary R. R. wrote: On Thursday, 13 June 2024 at 11:31:31 UTC, Ferhat Kurtulmuş wrote: On Thursday, 13 June 2024 at 06:59:49 UTC, Menjanahary R. R. wrote: How important is its adopti

Re: Feedback request from production of the usage of DWT

2024-06-14 Thread Ferhat Kurtulmuş via Digitalmars-d-learn
On Friday, 14 June 2024 at 17:27:20 UTC, Menjanahary R. R. wrote: On Thursday, 13 June 2024 at 11:31:31 UTC, Ferhat Kurtulmuş wrote: On Thursday, 13 June 2024 at 06:59:49 UTC, Menjanahary R. R. wrote: How important is its adoption? Is GUI App in D frequent? ... https://github.com/aferust/t

Re: Feedback request from production of the usage of DWT

2024-06-14 Thread Menjanahary R. R. via Digitalmars-d-learn
On Thursday, 13 June 2024 at 11:31:31 UTC, Ferhat Kurtulmuş wrote: On Thursday, 13 June 2024 at 06:59:49 UTC, Menjanahary R. R. wrote: How important is its adoption? Is GUI App in D frequent? ... https://github.com/aferust/testds5 Wow, Awesome project! 😀 Good illustration of using DWT By

Re: Feedback request from production of the usage of DWT

2024-06-14 Thread Menjanahary R. R. via Digitalmars-d-learn
On Thursday, 13 June 2024 at 09:21:50 UTC, Dejan Lekic wrote: On Thursday, 13 June 2024 at 06:59:49 UTC, Menjanahary R. R. wrote: How important is its adoption? Is GUI App in D frequent? There are quite few D GUI projects we are aware of, Tilix being one of the popular ones. I have few pers

Re: How to use D without the GC ?

2024-06-14 Thread Dukc via Digitalmars-d-learn
bachmeier kirjoitti 14.6.2024 klo 16.48: See the example I posted elsewhere in this thread: https://forum.dlang.org/post/mwerxaolbkuxlgfep...@forum.dlang.org I defined ``` @nogc ~this() {   free(ptr);   printf("Data has been freed\n"); } ``` and that gets called when the reference count hit

Re: How to use D without the GC ?

2024-06-14 Thread bachmeier via Digitalmars-d-learn
On Friday, 14 June 2024 at 07:52:35 UTC, Dukc wrote: Lance Bachmeier kirjoitti 14.6.2024 klo 4.23: We must be talking about different things. You could, for instance, call a function in a C library to allocate memory at runtime. That function returns a pointer and you pass it to SafeRefCounted

Re: How to use D without the GC ?

2024-06-14 Thread Dukc via Digitalmars-d-learn
Lance Bachmeier kirjoitti 14.6.2024 klo 4.23: We must be talking about different things. You could, for instance, call a function in a C library to allocate memory at runtime. That function returns a pointer and you pass it to SafeRefCounted to ensure it gets freed. Nothing is known about the a