Re: D-wrappers BLAKE3 wrapping C library libblake3

2024-03-20 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 19 March 2024 at 15:38:40 UTC, Ben Jones wrote: On Tuesday, 19 March 2024 at 08:40:37 UTC, Per Nordlöw wrote: On Tuesday, 19 March 2024 at 08:35:55 UTC, Per Nordlöw wrote: I just added a D implementation to dmd

Re: D-wrappers BLAKE3 wrapping C library libblake3

2024-03-19 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 19 March 2024 at 08:35:55 UTC, Per Nordlöw wrote: - Compliant with std.digest. - Current compiles C libraries directly for maximum performance. - Might need some adjustments with compiler flags. See https://code.dlang.org/packages/blake3-d. Please see details on the building of the

D-wrappers BLAKE3 wrapping C library libblake3

2024-03-19 Thread Per Nordlöw via Digitalmars-d-announce
- Compliant with std.digest. - Current compiles C libraries directly for maximum performance. - Might need some adjustments with compiler flags. See https://code.dlang.org/packages/blake3-d. Please see details on the building of the wrapped C library using cmake and make. Probably needs some

Re: valgrind 3.21.0 supports D demangling

2023-06-02 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 1 June 2023 at 13:01:44 UTC, user456 wrote: In case some would still pipe valgrind in ddemangle, be aware that this is not required anymore. Since [version 3.21.0], valgrind supports D demangling out of the box. [version 3.21.0]: https://valgrind.org/docs/manual/dist.news.html

Re: text based file formats

2022-12-22 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 21 December 2022 at 04:19:46 UTC, 9il wrote: It has already been replaced with [mir.csv](https://github.com/libmir/mir-ion/blob/master/source/mir/csv.d). Mir is faster, SIMD accelerated, and supports numbers and timestamp recognition. Great work. Will this module be extracted

Re: text based file formats

2022-12-19 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 18 December 2022 at 15:56:38 UTC, Robert Schadek wrote: So stop talking, and start creating PR's. For the project admin stuff, this will use github. There are milestones for the five formats, so please start creating the issues you want/can work on and start typing. If I were you

Re: GCC 12.2 Released (D v2.100.1)

2022-09-09 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 8 September 2022 at 07:36:02 UTC, Iain Buclaw wrote: https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/ppa I guess I can for wait 22.10 aswell: https://launchpad.net/ubuntu/+source/gcc-12/12.2.0-2ubuntu1 Thanks!

Re: GCC 12.2 Released (D v2.100.1)

2022-09-07 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 19 August 2022 at 11:36:09 UTC, Iain Buclaw wrote: GCC version 12.2 has been released. Thanks again, Ian. What are the options for installing GDC 12.2 on Ubuntu 22.04? GCC PPA or build from source?

Re: GCC 12.1 Released (D v2.100-rc.1)

2022-05-13 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 6 May 2022 at 11:57:47 UTC, Iain Buclaw wrote: I am proud to announce another major GCC release, 12.1. Thank you, Ian!

Re: GDC has just landed v2.098.0-beta.1 into GCC

2021-12-02 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 30 November 2021 at 19:37:34 UTC, Iain Buclaw wrote: The latest version of the D language has [now landed](https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5fee5ec362f7a243f459e6378fd49dfc89dc9fb5) in GCC. To try this out do I build gcc with only the D language frontend enabled?

Re: GDC has just landed v2.098.0-beta.1 into GCC

2021-12-02 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 30 November 2021 at 19:37:34 UTC, Iain Buclaw wrote: Hi, The latest version of the D language has [now landed](https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5fee5ec362f7a243f459e6378fd49dfc89dc9fb5) in GCC. Wonderful!

Re: mir.complex

2021-08-30 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 20 August 2021 at 17:02:33 UTC, 9il wrote: There are few reasons. The main one is that linking bugs caused by a compiler mangling/generation bugs makes std.complex unusable for us. Initially I have updated all packages with std.complex, however it failed to link in a private

Re: LDC 1.26.0

2021-04-29 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 28 April 2021 at 15:30:58 UTC, kinke wrote: Glad to announce LDC 1.26: Awesome! Finally, we can get rid of those darn Nullable.get deprecation messages.

Re: LDC 1.26.0-beta1

2021-04-13 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 10 April 2021 at 20:50:08 UTC, kinke wrote: https://github.com/ldc-developers/ldc/releases/tag/v1.26.0-beta1 Thanks.

Re: On the D Blog--Symphony of Destruction: Structs, Classes, and the GC

2021-03-19 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 18 March 2021 at 12:21:46 UTC, Mike Parker wrote: I actually don't agree with that. I'll be discussion the solution in the next article: if(!GC.inFinalizer) { ... } It's perfectly fine to perform GC operations in destructors when they aren't invoked by the GC. Could we at

Re: On the D Blog--Symphony of Destruction: Structs, Classes, and the GC

2021-03-18 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 4 March 2021 at 13:54:48 UTC, Mike Parker wrote: The blog: https://dlang.org/blog/2021/03/04/symphony-of-destruction-structs-classes-and-the-gc-part-one/ Btw, what is the motive behind D's GC not being able to correctly handle GC allocations in class destructors. Is it by

Re: On the D Blog--Symphony of Destruction: Structs, Classes, and the GC

2021-03-18 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 4 March 2021 at 13:54:48 UTC, Mike Parker wrote: The blog: https://dlang.org/blog/2021/03/04/symphony-of-destruction-structs-classes-and-the-gc-part-one/ Reminds me of longing for an (optional) compiler warning or, even better, a deprecation when - destructors of GC-managed

Re: styx, a programming languange written in D, is on the bootstrap path

2021-01-15 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 15 January 2021 at 19:18:09 UTC, Basile B. wrote: - DotExpression aliases (they have been proposed to DMD this summer when I worked "under cover" as Nils.) Can you give examples of what a DotExpression alias is?

Re: LDC 1.25.0-beta1

2021-01-09 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 9 January 2021 at 11:48:46 UTC, kinke wrote: Glad to announce the first beta for LDC 1.25 - some highlights: Great work!

Re: Discussion Thread: DIP 1039--Static Arrays with Inferred Length--Community Review Round 1

2021-01-07 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 6 January 2021 at 09:21:53 UTC, Mike Parker wrote: https://github.com/dlang/DIPs/blob/c06ce7f144b3dabf363d1896ddcd31a2a6b7c969/DIPs/DIP1039.md A bit off topic: Would Kenji Hara still have been an active Dlang community member if his solution to DIP-1039 hadn't been reverted.

Re: dmdcache

2020-12-29 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 25 April 2020 at 12:30:17 UTC, John Colvin wrote: But how does this differ from just using make? make doesn't support total-dependency-content-digest keying of cached artifacts similar to what, for instance, Bazel does.

Re: Beta 2.095.0

2020-12-29 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 29 December 2020 at 00:17:59 UTC, Mathias LANG wrote: Yes please! And thanks for paying attention to the changelog, it matters a lot! Done: https://github.com/dlang/dlang.org/pull/2926

Re: Beta 2.095.0

2020-12-28 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 20 December 2020 at 13:21:46 UTC, Martin Nowak wrote: http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.095.0.html Feature https://dlang.org/changelog/2.095.0.html#better-vtemplates was already added at https://dlang.org/changelog/2.094.0.html#better-vtemplates

Automatic demangling of symbols in Emacs buffers

2020-09-26 Thread Per Nordlöw via Digitalmars-d-announce
The Emacs mode `demangle-mode` [1] can now be used, typically in `compilation-minor-mode`, to demangle symbols in Emacs buffers, either via `c++filt` or via `ddemangle`. The demangling executable also just became configurable via [2] by customizing the variable `demangle-languages`. [1]

Re: Beta 2.094.0

2020-09-19 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 11 September 2020 at 07:48:00 UTC, Martin Nowak wrote: http://dlang.org/changelog/2.094.0.html Possible spell fix in Changelog. Shouldn't "However, this didn't really capture the intended meaning of in: _the_ be applied on input parameters." be "However, this didn't really

Re: Beta 2.094.0

2020-09-15 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 12 September 2020 at 13:09:55 UTC, Per Nordlöw wrote: Where can I update the changelog to include this? https://github.com/dlang/dmd/pull/11732

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 12 September 2020 at 16:54:49 UTC, Per Nordlöw wrote: I agree, this is unfortunate. Did you read Andreis comment at the bottom for the Bugzilla issue? Here https://issues.dlang.org/show_bug.cgi?id=14835#c10

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 12 September 2020 at 14:05:04 UTC, Paul Backus wrote: Is there? Issue 14835 was reported in 2015. If nobody's been able to come up with an improvement in 5 years, what are the odds that this year will be the one that lets us finally crack it? I agree, this is unfortunate. Did

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 12 September 2020 at 13:03:29 UTC, Paul Backus wrote: How many improvements does this warning have to block before we decide its value for the language is net-negative? There's also the option of improving the diagnostic of unreachable code.

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 12 September 2020 at 13:03:29 UTC, Paul Backus wrote: On Saturday, 12 September 2020 at 11:43:03 UTC, MoonlightSentinel wrote: Currently looking into enabling it by default but it showed an interesting side effect. The frontend Attribute would be nice. Then such tagged

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 11 September 2020 at 13:44:02 UTC, Guillaume Piolat wrote: This is an absolutely fantastic release! Thanks to all. - faster DMD Is this solely thanks to using ldc as host compiler? What are the flags passed to ldc when building dmd? Profile guided optimization?

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 12 September 2020 at 11:43:41 UTC, Per Nordlöw wrote: I forgot too add the new formatting of -vtemplates to the changelog. Where can I update the changelog to include this?

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 12 September 2020 at 11:03:09 UTC, Per Nordlöw wrote: I forgot too add the new formatting of -vtemplates to the changelog. https://github.com/dlang/dmd/pull/11463

Re: Beta 2.094.0

2020-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 11 September 2020 at 07:48:00 UTC, Martin Nowak wrote: Glad to announce the first beta for the 2.094.0 release, ♥ to the 49 contributors. I forgot too add the new formatting of -vtemplates to the changelog. Shall I?

Re: Turn output of -vtemplates into compiler-messages and show template instances

2020-09-03 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 3 September 2020 at 13:20:32 UTC, jmh530 wrote: People also might find it useful to filter for just one template (and show all the instances). I proposed that feature as, say, `vtemplates=list-instances:Template1,Template2,...` . Just complain a bit and I'll get momentum to

Turn output of -vtemplates into compiler-messages and show template instances

2020-09-03 Thread Per Nordlöw via Digitalmars-d-announce
D just got a better formatting of existing template usage sorted by descending unique instantiation count via the flag `-vtemplates`. Each template that has a least one instantiation is now printed using standard compiler diagnostics formatting for easy navigation to the point of its

Re: Type-safer usage of diagnostics outputting in dmd

2020-09-01 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 1 September 2020 at 22:14:11 UTC, Per Nordlöw wrote: when the compiler supports it (from dmd version 2.092 and The host compiler supports it (from dmd version 2.092), that is.

Type-safer usage of diagnostics outputting in dmd

2020-09-01 Thread Per Nordlöw via Digitalmars-d-announce
The diagnostics functions in `dmd.errors` are now qualified [1] with the, by Walter, recently added pragma(printf) when the compiler supports it (from dmd version 2.092 and upwards). In other words, a mismatch between the format part and the argument part in a call to either of -

Re: Visual D 1.0.1 released

2020-08-25 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 23 August 2020 at 07:33:01 UTC, Rainer Schuetze wrote: The most important part of the update is that the semantic engine is now based on the latest compiler release 2.093.1. - Does the engine have a feature list? - Is the engine relatively independent of Windows? - Does engine

Re: Release of std.io v0.3.0

2020-07-28 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 28 July 2020 at 18:23:45 UTC, Steven Schveighoffer wrote: On 7/28/20 10:08 AM, Per Nordlöw wrote: Be free to copy what you like from https://github.com/nordlow/phobos-next/blob/master/src/nxt/zio.d Thanks. I actually have zip support in iopipe (it requires buffering anyway):

Re: Release of std.io v0.3.0

2020-07-28 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 26 July 2020 at 17:09:07 UTC, Steven Schveighoffer wrote: -Steve [1] https://code.dlang.org/packages/io [2] https://martinnowak.github.io/io/std/io/driver.html [3] https://martinnowak.github.io/io/std/io/file/File.this.html Thanks. Be free to copy what you like from

Re: DConf Online 2020 (Soft Announcement)

2020-07-17 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 17 July 2020 at 14:56:06 UTC, aberba wrote: On Friday, 17 July 2020 at 11:55:14 UTC, Mike Parker wrote: DConf Online 2020 is on! https://dconf.org/2020/online/index.html [...] Very exited about this. Me too

Re: Updated compiler-benchmark

2020-07-17 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 16 July 2020 at 23:36:58 UTC, IGotD- wrote: On Thursday, 16 July 2020 at 15:56:45 UTC, Per Nordlöw wrote: D's compiler `dmd` is still far ahead of all its competition especially when it comes to default build (standard compilation) performance. I don't think this comparison

Re: Updated compiler-benchmark

2020-07-16 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 16 July 2020 at 18:27:54 UTC, jmh530 wrote: How are the functions generated? I see something about function-depth, but it might be good to have an example in the readme. This is, of course, a very contrived benchmark but I had to pick something to get me started and I'll happily

Re: Updated compiler-benchmark

2020-07-16 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 16 July 2020 at 18:27:54 UTC, jmh530 wrote: How are the functions generated? I see something about function-depth, but it might be good to have an example in the readme. Added here https://github.com/nordlow/compiler-benchmark#sample-generated-code

Re: Updated compiler-benchmark

2020-07-16 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 16 July 2020 at 18:27:54 UTC, jmh530 wrote: How are the functions generated? I see something about function-depth, but it might be good to have an example in the readme. Ah, I'll add that. Thanks

Updated compiler-benchmark

2020-07-16 Thread Per Nordlöw via Digitalmars-d-announce
I've updated https://github.com/nordlow/compiler-benchmark with - source variants with templated function variants for languages having generics - stdout-printing in Markdown (used in README.md) - benchmarks for the languages Zig and V ## Conclusions (from sample run shown below) D's

Re: Updated compiler-benchmark

2020-07-16 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 16 July 2020 at 15:56:45 UTC, Per Nordlöw wrote: The generic C++ and D versions compiles about 1.5 to 2 times slower With DMD, that is.

Re: From the D Blog: A Pattern for Head-mutable Structures

2020-06-26 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 25 June 2020 at 11:55:14 UTC, Mike Parker wrote: Simen Kjærås outlines an approach to supporting head-mutable types in D without the need for compiler or language changes. The blog: https://dlang.org/blog/2020/06/25/a-pattern-for-head-mutable-structures/ Reddit:

Re: From the D Blog: A Pattern for Head-mutable Structures

2020-06-26 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 25 June 2020 at 11:55:14 UTC, Mike Parker wrote: Simen Kjærås outlines an approach to supporting head-mutable types in D without the need for compiler or language changes. The blog: https://dlang.org/blog/2020/06/25/a-pattern-for-head-mutable-structures/ This is a brilliant

Re: Beta 2.090.0

2019-12-24 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 24 December 2019 at 05:59:35 UTC, Soulsbane wrote: dub test doesn't run the actual program only unittests are far as I can tell. Correct, but that is from 2.090 the behaviour of dub run --build=unittest aswell. This seems strange to me. I would like to see a new built-in

Re: Beta 2.090.0

2019-12-23 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 22 December 2019 at 23:05:20 UTC, Steven Schveighoffer wrote: extern(C) __gshared string[] rt_options = [ "testmode=run-main"]; There are far more people who run unittests as a separate step from running their application. If unittests pass, then there's no distinguishable output

Re: Beta 2.090.0

2019-12-22 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 22 December 2019 at 15:23:32 UTC, Martin Nowak wrote: Glad to announce the first beta for the 2.090.0 release, ♥ to the 48 contributors. http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.090.0.html As usual please report any bugs at https://issues.dlang.org

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-10-21 Thread Per Nordlöw via Digitalmars-d-announce
On Monday, 21 October 2019 at 12:12:56 UTC, Per Nordlöw wrote: Is it prepackaged on Ubuntu? Do you mean the package golang-go?

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-10-21 Thread Per Nordlöw via Digitalmars-d-announce
On Monday, 21 October 2019 at 11:59:15 UTC, Márcio Martins wrote: That's google reference implementation. Sort of like `DMD`, should be faster, but generating less optimal code. Is it prepackaged on Ubuntu?

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-10-21 Thread Per Nordlöw via Digitalmars-d-announce
On Monday, 21 October 2019 at 11:27:05 UTC, Per Nordlöw wrote: On Monday, 21 October 2019 at 11:07:14 UTC, Márcio Martins wrote: Any reason why you left Go's `gc` out? Note that I just changed `-c` to `-S` in the call go `gccgo` in `benchmark` to skip assmembly phase.

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-10-21 Thread Per Nordlöw via Digitalmars-d-announce
On Monday, 21 October 2019 at 11:07:14 UTC, Márcio Martins wrote: Any reason why you left Go's `gc` out? What do you mean by `gc`? Is `gc` a checker or checker flag to some compiler? Can't find any relevant hits for hit the web.

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-10-17 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 16 March 2019 at 21:23:18 UTC, Per Nordlöw wrote: https://github.com/nordlow/compiler-benchmark Just added support for V (vlang.io), Zig and Julia.

Re: Ownership and Borrowing in D

2019-07-21 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 20 July 2019 at 21:56:50 UTC, Walter Bright wrote: We're likely going to add a move constructor, too. And deprecate opPostMove?

Re: LDC 1.16.0-beta1

2019-05-10 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 9 May 2019 at 21:14:02 UTC, kinke wrote: Glad to announce the first beta for LDC 1.16; mainly just an upgrade to D 2.086.0. Thanks!

Re: DConf 2019 Livestream

2019-05-08 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 8 May 2019 at 08:33:52 UTC, Laeeth Isharc wrote: Sorry about that. It was supposed to be streaming to YouTube, but it fell through the cracks. We are looking into it now. Great.

Re: DConf 2019 Livestream

2019-05-08 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 8 May 2019 at 08:21:33 UTC, Thomas Brix Larsen wrote: I had to click Audio Connection -> Computer to get audio. Where did you find those menus?

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-03-20 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 19 March 2019 at 10:10:28 UTC, Seb wrote: Well, you don't really need a script: git clone https://github.com/dlang/dmd HOST_DMD=ldmd2 make -f posix.mak -j10 Additionally, you can add `ENABLE_RELEASE=1` to create a fully optimized release binary. Thanks!

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-03-18 Thread Per Nordlöw via Digitalmars-d-announce
On Monday, 18 March 2019 at 12:33:12 UTC, Seb wrote: [1] https://github.com/dlang/installer Does this include a script for building dmd with ldc or this not yet possible?

Re: Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-03-17 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 17 March 2019 at 09:17:06 UTC, Jacob Carlborg wrote: It would be interesting to measure D's speed with DMD compiled with LDC as the host D compiler. I thought that already is the case...

Compiler benchmarker for D, C, C++, Go, Rust with more to come

2019-03-16 Thread Per Nordlöw via Digitalmars-d-announce
After reading https://forum.dlang.org/thread/nlhybmioaoxkydicm...@forum.dlang.org it's about time I announce my little Python snippet that exercises the compilation speed of D and other languages with a superficial test program generator at https://github.com/nordlow/compiler-benchmark Run

Re: LDC 1.15.0-beta1

2019-03-13 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 12 March 2019 at 20:15:30 UTC, kinke wrote: As usual, v1.15.0 final will be based on the first DMD point release (2.085.1), so just make sure your fixes end up in DMD's stable branches before the tag, as done in this case. Wonderful!

Re: LDC 1.15.0-beta1

2019-03-12 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 9 March 2019 at 22:08:27 UTC, Dennis wrote: Yes, gimme those assertion failure messages! I hope the fix for using it with attributes (https://github.com/dlang/druntime/pull/2479) gets merged in time for the stable release of LDC 1.15. https://github.com/dlang/druntime/pull/2479

Re: Release D 2.085.0

2019-03-04 Thread Per Nordlöw via Digitalmars-d-announce
On Monday, 4 March 2019 at 07:58:09 UTC, Rainer Schuetze wrote: These objects would still have to be scanned, so there is not much that could be saved with respect to performance. Ok, thanks.

Re: Release D 2.085.0

2019-03-03 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 3 March 2019 at 21:51:30 UTC, Per Nordlöw wrote: that don't have a destructor (hasElaborateDestructor being true Correction: that don't have a destructor (hasElaborateDestructor being FALSE

Re: Beta 2.085.0

2019-02-17 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 17 February 2019 at 12:34:12 UTC, Per Nordlöw wrote: What's not found in the changelog is an optimization sweeping large allocations that is inspired by your report https://forum.dlang.org/thread/zrouxhbkssrncyinh...@forum.dlang.org: https://github.com/dlang/druntime/pull/2430

Re: Beta 2.085.0

2019-02-17 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 17 February 2019 at 07:49:24 UTC, Rainer Schuetze wrote: It is listed as "Bugzilla 19455: GC wastes too much memory". What's not found in the changelog is an optimization sweeping large allocations that is inspired by your report

Re: Beta 2.085.0

2019-02-16 Thread Per Nordlöw via Digitalmars-d-announce
On Saturday, 16 February 2019 at 15:06:51 UTC, Martin Nowak wrote: Glad to announce the first beta for the 2.085.0 release, ♥ to the 49 contributors. http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.085.0.html I can't find any mentioning of Rainer Schützes work on memory

Re: Hunt framework 2.0.0 released

2019-02-01 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 29 January 2019 at 10:00:22 UTC, zoujiaqing wrote: The HuntLabs team is happy to announce the release of Hunt Framework 2.0. Is there an online comparison describing the differences between Hunt and Vibe.d? I'm mainly interested in - fast incremental compilation, - high run-time

Re: DLS (D Language Server) v0.20

2018-12-29 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 28 December 2018 at 22:52:40 UTC, Laurent Tréguier wrote: I haven't looked into Emacs yet, maybe I'll do that in the coming days. [1] https://github.com/emacs-lsp/lsp-mode [2] https://github.com/joaotavora/eglot Thanks!

Re: DLS (D Language Server) v0.20

2018-12-28 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 28 December 2018 at 11:14:01 UTC, Laurent Tréguier wrote: Hello, and merry Christmas! (a bit late, but whatever) https://forum.dlang.org/post/jytsaamhiglkmeixx...@forum.dlang.org [2] https://github.com/d-language-server/dls [3] https://github.com/Pure-D/serve-d Nice! Great work!

Re: This Week in D is back

2018-12-21 Thread Per Nordlöw via Digitalmars-d-announce
On Monday, 17 December 2018 at 22:01:07 UTC, Adam D. Ruppe wrote: Well, I am getting back into it: http://dpldocs.info/this-week-in-d/Blog.Posted_2018_12_17.html Great work!

Re: DIP 1014--Hooking D's struct move semantics--Has Been Accepted

2018-11-08 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 8 November 2018 at 02:36:21 UTC, test wrote: Thanks to all for the hard work. Look forward DIP1016 to be approved. Agreed!

Re: Beta 2.082.1

2018-10-11 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 11 October 2018 at 12:19:56 UTC, Martin Nowak wrote: https://dlang.slack.com/archives/C4DN1H6LA/p1536909712000100 for more info. I'm about to rebuild the nightlies infrastructure based on a buildkite worker, so that release binary building becomes somewhat more transparent (and

Re: Copy Constructor DIP and implementation

2018-09-12 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 11 September 2018 at 23:56:56 UTC, Walter Bright wrote: On 9/11/2018 8:08 AM, RazvanN wrote: [1] https://github.com/dlang/DIPs/pull/129 [2] https://github.com/dlang/dmd/pull/8688 Thank you, RazvanN! I very much agree!

Re: expectations 0.1.0

2018-09-02 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 2 September 2018 at 06:59:20 UTC, Paul Backus wrote: expectations is an error-handling library that lets you bundle exceptions together with return values. It is based on Rust's Result [1] and C++'s proposed std::expected. [2] If you're not familiar with those, Andrei's NDC Oslo

Re: Hunt framework 1.0.0 released

2018-06-05 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 5 June 2018 at 07:25:33 UTC, Brian wrote: We are pleased to announce an official version of hunt 1.0 , How is Hunt different from Vibe?

Re: LDC 1.10.0 beta

2018-05-13 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 13 May 2018 at 18:12:51 UTC, kinke wrote: * Based on D 2.080.0. Great!

Re: sumtype 0.3.0

2018-05-07 Thread Per Nordlöw via Digitalmars-d-announce
On Sunday, 6 May 2018 at 19:18:02 UTC, Paul Backus wrote: SumType is a generic sum type for modern D. It is meant as an alternative to `std.variant.Algebraic`. Features: - Pattern matching, including support for structural matching (*) - Self-referential types, using `This` - Works

Re: DConf 2018 Livestream

2018-05-03 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 2 May 2018 at 07:13:21 UTC, Mike Parker wrote: For those of you unable to join us in Munich, you can watch the fun online via the following link: https://www.youtube.com/user/hlmceventsgmbh I can't find Andrei's talk this morning. Was it lost?

Re: DIP 1009 (Add Expression-Based Contract Syntax) Accepted

2018-04-06 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 6 April 2018 at 12:26:36 UTC, Mike Parker wrote: Congratulations to Zach Tollen and everyone who worked on DIP 1009. It took a painful amount of time to get it through the process, but it had finally come out of the other side with an approval. The proposal itself was approved early

Re: Netflix opensources its first D library: Vectorflow

2017-10-19 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 8 August 2017 at 18:51:26 UTC, Nordlöw wrote: To clarify here's an incomplete snippet that should clarify: auto add(A, B)(A a, B b) should be auto add(A, B)(auto ref A a, auto ref B b)

Re: The D Language Foundation is now incorporated

2015-10-16 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 16 October 2015 at 10:04:36 UTC, Andrei Alexandrescu wrote: Andrei I'll keep my fingers crossed! ;)

Re: Fastest JSON parser in the world is a D project

2015-10-16 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 14 October 2015 at 07:01:49 UTC, Marco Leise wrote: https://github.com/kostya/benchmarks#json Does fast.json use any non-standard memory allocation patterns or plain simple GC-usage?

Re: Fastest JSON parser in the world is a D project

2015-10-14 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 14 October 2015 at 07:01:49 UTC, Marco Leise wrote: https://github.com/kostya/benchmarks#json I can't find fast.json here. Where is it?

Re: Beta D 2.069.0-b1

2015-10-08 Thread Per Nordlöw via Digitalmars-d-announce
On Thursday, 8 October 2015 at 09:36:31 UTC, lobo wrote: PS: Big thanks for the much improved release process that you guys are maintaining. I agree. Thank you, Martin.

Re: Walter and I talk about D in Romania

2015-10-02 Thread Per Nordlöw via Digitalmars-d-announce
On Friday, 2 October 2015 at 11:25:44 UTC, Andrei Alexandrescu wrote: Walter and I will travel to Brasov, Romania to hold an evening-long event on the D language. There's been strong interest in the event with over 300 registrants so far. Great! Will there be video recordings?

Re: reggae v0.5.0: new features in the D meta-build system

2015-09-23 Thread Per Nordlöw via Digitalmars-d-announce
On Tuesday, 22 September 2015 at 13:22:25 UTC, Joakim wrote: Like ekam? https://github.com/sandstorm-io/ekam Sounds very promising! We talked about it when I interviewed Atila: http://arsdnet.net/this-week-in-d/sep-06.html Thanks!

Re: reggae v0.5.0: new features in the D meta-build system

2015-09-22 Thread Per Nordlöw via Digitalmars-d-announce
On Wednesday, 16 September 2015 at 14:07:17 UTC, Atila Neves wrote: http://code.dlang.org/my_packages/reggae What's new: Atila If you want to build a really revolutionary *new* build system you should turn reggae into a client-server-architecture that listens to file