Re: tiny alternative to std library

2021-03-06 Thread Kagamin via Digitalmars-d-learn
I suppose commercial vendors aren't interested in suckless paradigm, so this library is for people and only for people.

Re: tiny alternative to std library

2021-03-05 Thread Siemargl via Digitalmars-d-learn
On Friday, 5 March 2021 at 16:54:48 UTC, Kagamin wrote: On Wednesday, 3 March 2021 at 20:54:43 UTC, Anthony Quizon wrote: I'm having some success pulling out small bits of code from other libraries and keeping things minimal and c-style-ish. If you're really ok with minimalism, I'm writing suc

Re: tiny alternative to std library

2021-03-05 Thread ryuukk_ via Digitalmars-d-learn
On Friday, 5 March 2021 at 16:54:48 UTC, Kagamin wrote: On Wednesday, 3 March 2021 at 20:54:43 UTC, Anthony Quizon wrote: I'm having some success pulling out small bits of code from other libraries and keeping things minimal and c-style-ish. If you're really ok with minimalism, I'm writing suc

Re: tiny alternative to std library

2021-03-05 Thread Kagamin via Digitalmars-d-learn
On Wednesday, 3 March 2021 at 20:54:43 UTC, Anthony Quizon wrote: I'm having some success pulling out small bits of code from other libraries and keeping things minimal and c-style-ish. If you're really ok with minimalism, I'm writing such a library https://filebin.net/7gtyh5j01gk1ofly I didn'

Re: tiny alternative to std library

2021-03-03 Thread Anthony Quizon via Digitalmars-d-learn
On Wednesday, 3 March 2021 at 14:17:02 UTC, Siemargl wrote: On Wednesday, 3 March 2021 at 14:12:54 UTC, Siemargl wrote: I test full rebuild of dlang-IDE (20k loc) now for dmd under Update, 20k loc without counting libraries. Thanks for the info. Yeah the times I'm trying to reach are aroun

Re: tiny alternative to std library

2021-03-03 Thread Siemargl via Digitalmars-d-learn
On Wednesday, 3 March 2021 at 14:12:54 UTC, Siemargl wrote: I test full rebuild of dlang-IDE (20k loc) now for dmd under Update, 20k loc without counting libraries.

Re: tiny alternative to std library

2021-03-03 Thread Siemargl via Digitalmars-d-learn
On Wednesday, 3 March 2021 at 09:02:54 UTC, Anthony wrote: Strange, usual D programs builds fast. What build times do you get? Seems like some other people have similar issues: https://forum.dlang.org/post/pvseqkfkgaopsnhqe...@forum.dlang.org https://forum.dlang.org/thread/mailman.4286.1499286

Re: tiny alternative to std library

2021-03-03 Thread Anthony via Digitalmars-d-learn
On Wednesday, 3 March 2021 at 07:23:58 UTC, Siemargl wrote: On Wednesday, 3 March 2021 at 03:52:13 UTC, Anthony Quizon wrote: On Monday, 1 March 2021 at 08:52:35 UTC, Imperatorn wrote: Having a library with bare minimum meta programming would help with this I think. I'm willing to pay the cost

Re: tiny alternative to std library

2021-03-02 Thread Siemargl via Digitalmars-d-learn
On Wednesday, 3 March 2021 at 03:52:13 UTC, Anthony Quizon wrote: On Monday, 1 March 2021 at 08:52:35 UTC, Imperatorn wrote: Having a library with bare minimum meta programming would help with this I think. I'm willing to pay the cost of safety. Strange, usual D programs builds fast. As a alt

Re: tiny alternative to std library

2021-03-02 Thread Anthony Quizon via Digitalmars-d-learn
On Monday, 1 March 2021 at 08:52:35 UTC, Imperatorn wrote: On Thursday, 25 February 2021 at 22:39:11 UTC, Anthony wrote: Hello, I noticed that importing some std libraries causes the build time to jump to around 1 - 3 secs. I started creating my own helper functions to avoid importing std f

Re: tiny alternative to std library

2021-03-01 Thread Imperatorn via Digitalmars-d-learn
On Thursday, 25 February 2021 at 22:39:11 UTC, Anthony wrote: Hello, I noticed that importing some std libraries causes the build time to jump to around 1 - 3 secs. I started creating my own helper functions to avoid importing std for scripting and prototyping in order to keep the compile t

tiny alternative to std library

2021-02-25 Thread Anthony via Digitalmars-d-learn
Hello, I noticed that importing some std libraries causes the build time to jump to around 1 - 3 secs. I started creating my own helper functions to avoid importing std for scripting and prototyping in order to keep the compile time at around 0.5 secs. I was wondering if anyone knows of an