Static Parameter Function Specialization in D

2013-11-11 Thread Nordlöw
I've read somewhere that D supports specialization of functions to calls where arguments are compile-time constants. Typical use of this is in matrix power functions (if exponent is 2 `x*x` is often faster than the general case). I want this in my member function bool opIndexAssign(boo

Re: Static Parameter Function Specialization in D

2013-11-11 Thread Nordlöw
On Monday, 11 November 2013 at 14:41:14 UTC, Dicebot wrote: Please never post such questions to announcement list. There is a D.learn for that. I'm very sorry. It was a mistake. Can I move or delete this post?

Re: Scott Meyers will deliver a keynote talk at DConf 2014

2014-02-04 Thread Nordlöw
Does this mean D has to get the r-value references situation in order before May? :P That is funny :)

Re: std.serialization

2014-02-16 Thread Nordlöw
I believe it's worth the try to get Python-style serialization simplicity to D by default. We use Python cpickle at work and its fantastically simple and fast. It handles just about everthing you need by default as long as you have imported the modules that contain the types involved in the ser

My D code is now on Github at nordlow/justd!

2014-02-24 Thread Nordlöw
Hi! I've just uploaded a bunch of D code I've been working the recent year at https://github.com/nordlow/justd It includes various kinds of - Non-In-Place Radix Sort: intsort.d - Clever Printing of Groups of arrays/slices: show.d - Boyer Moore Hoorspool Search: horspool.d - Symbol Regex (Struc

Partial Fix for Issue 3882

2014-02-28 Thread Nordlöw
I just did a DMD & Phobos pull request for a partial fix of Issue 3882. https://d.puremagic.com/issues/show_bug.cgi?id=3882 /Per

Re: Livestreaming DConf?

2014-05-22 Thread Nordlöw
We at Facebook are very excited about the upcoming DConf 2014. Will the videos be available afterwards at Andreis Youtube stream like last year?

Re: Livestreaming DConf?

2014-05-22 Thread Nordlöw
So if they can stick to that, there's no reason to livestream unless you really want to see it first. :) That sounds promising! Thx

Re: DConf 2014 Opening Keynote: State of the struct address - Andrei Alexandrescu

2014-05-29 Thread Nordlöw
Now also available at: https://archive.org/details/dconf2014-day01-talk01 Just one thing - what does the title refer to? - I thought you where going to discuss the ongoing discussions with memory allocations, GC, structs etc. Inspiring anyhow. Thx.

Re: Real time captioning of D presentations

2014-06-01 Thread Nordlöw
You're not alone. I can read a transcript far, far faster than watching a video. I agree!

Re: core.checkedint added to druntime

2014-06-22 Thread Nordlöw
While being a very modest piece of code in and of itself, I believe this offers a significant opportunity that both D compilers and user defined types can exploit. I did this in C/C++ a while ago, out of which I have forgotten most of it :) https://github.com/nordlow/justcxx/blob/master/sadd

Re: LDC 0.13.0 has been released!

2014-06-24 Thread Nordlöw
LDC 0.13.0, the LLVM-based D compiler, is available for download! Great job! Will there be Linux distribution (Ubuntu) packages available?

DUB Bash Completion

2014-07-07 Thread Nordlöw
So I put together something that works in the majority of cases even for sub command specific flags including package completion: https://github.com/nordlow/scripts/blob/master/dub-completion.bash Feedback appreciated!

Re: DUB Bash Completion

2014-07-07 Thread Nordlöw
On Monday, 7 July 2014 at 11:55:48 UTC, Nordlöw wrote: BTW, corresponding GitHub issue: https://github.com/D-Programming-Language/dub/issues/154 Do you fix the PR?

Re: DUB Bash Completion

2014-07-07 Thread Nordlöw
On Monday, 7 July 2014 at 10:58:02 UTC, Sönke Ludwig wrote: Very nice, I'll try this out this later. If you don't mind, we should put this into the DUB main repository and also get in touch with the package maintainers to include it in the standard distribution. Very ok with me :) BTW, corr

Re: Smile, you're on Wired

2014-07-07 Thread Nordlöw
On Monday, 7 July 2014 at 16:06:45 UTC, Andrei Alexandrescu wrote: https://www.facebook.com/dlang.org/posts/880588921954790 Great! Made some encouraging comments at the bottom the Wired article. I hope I got them right :)

Re: DConf 2014 Day 2 Talk 3: Designing an Aurora: A Glimpse at the Graphical Future of D by Adam Wilson

2014-07-08 Thread Nordlöw
On Tuesday, 8 July 2014 at 16:03:36 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/2a5ia9/dconf_2014_day_2_talk_3_designing_an_aurora_a/ Very intriguing. First question for Andrew Wilson i reckon :) Is the Immutable Scene Object (ISO) supposed to be an exact copy

Re: DConf 2014 Day 2 Talk 4: Reducing D Bugs by Vladimir Panteleev

2014-07-09 Thread Nordlöw
On Wednesday, 9 July 2014 at 18:26:53 UTC, simendsjo wrote: Would it make sense to add them to the dtools repository? It's already included there as a submodule :)

Re: DUB Bash Completion

2014-07-10 Thread Nordlöw
On Wednesday, 9 July 2014 at 16:12:01 UTC, Sönke Ludwig wrote: Shall I just commit the file (with you as the author of course), or do you want to open a pull request? You can commit the file. That's ok with me :) I've tried it now and it worked flawlessly so far. I'm glad :) Thx

Re: DUB Bash Completion

2014-07-13 Thread Nordlöw
On Sunday, 13 July 2014 at 20:15:06 UTC, w0rp wrote: I suppose one extra step you could go would be to somehow complete --config= too, so you could tab complete --config=foo and --config=bar or something. --config is not documented by dub -h Is it a sub command flag?

Re: DUB Bash Completion

2014-07-14 Thread Nordlöw
On Monday, 14 July 2014 at 00:10:38 UTC, Mathias LANG wrote: complete --config= too, so you could tab complete Yeah, that would be nice. Need to add som json parsing to the bash logic. Any suggestions on how to most easily and portably do that?

Re: D 2.066 is out. Enjoy!

2014-08-18 Thread Nordlöw
On Monday, 18 August 2014 at 19:00:23 UTC, Andrei Alexandrescu wrote: Support for new flag -vcolumns in Emacs FlyCheck is soon about to follow: https://github.com/flycheck/flycheck/issues/460

Re: Eclipse D Development Tools (DDT) plug-in version 0.10.2 released

2014-08-30 Thread Nordlöw
On Thursday, 28 August 2014 at 21:20:48 UTC, Bruno Medeiros wrote: - Mouse hovering over an auto keyword will show the resolved type - How is this implemented? - Will this expand to cover any expression at the cursor in the future? This would be a super promotor for introducing D to newcomers

Re: Multiple alias this is coming.

2014-09-18 Thread Nordlöw
On Thursday, 18 September 2014 at 11:20:49 UTC, IgorStepanov wrote: I've created pull request, which introduces multiple alias this. https://github.com/D-Programming-Language/dmd/pull/3998 Please see the additional tests and comment it. Exciting! What more good things than a better behaving Nu

Re: Multiple alias this is coming.

2014-09-19 Thread Nordlöw
On Thursday, 18 September 2014 at 22:13:14 UTC, IgorStepanov wrote: Is Nullable!(T) with polymorphic type disallowed now? Sorry, I meant NotNull(T) Here's a module https://github.com/nordlow/justd/blob/master/notnull.d a bit tweak from the original design by Adam D Ruppe.

Re: Multiple alias this is coming.

2014-09-19 Thread Nordlöw
On Friday, 19 September 2014 at 13:24:53 UTC, IgorStepanov wrote: What does a troubles with your NotNull implementation you have with old alias this? Do you want to implicit cast from NotNull!(T) to all other NotNull!(B) where B is basetype of T? Yes, that is what I want, but last time I check

Re: Multiple alias this is coming.

2014-09-19 Thread Nordlöw
On Thursday, 18 September 2014 at 11:20:49 UTC, IgorStepanov wrote: I've created pull request, which introduces multiple alias this. https://github.com/D-Programming-Language/dmd/pull/3998 Please see the additional tests and comment it. Further, could this also be used to somehow simplify hier

Re: Digger 1.0

2014-09-23 Thread Nordlöw
On Saturday, 20 September 2014 at 20:07:46 UTC, Vladimir Panteleev wrote: Yet another release ruined by a DMD -inline wrong-code bug :( It seems like use of -inline is not recommended then?

Re: Blog Post - Reducing vibe.d turnaround time (Part 1 Faster Linking)

2014-11-01 Thread Nordlöw
On Thursday, 30 October 2014 at 01:02:40 UTC, Martin Nowak wrote: https://code.dawg.eu/reducing-vibed-turnaround-time-part-1-faster-linking.html Could you add a reference on how to DUB-build a library as dynamic instead of static library to easy the process for newcomers?

Re: dfix 0.2.0

2014-11-25 Thread Nordlöw
On Monday, 24 November 2014 at 19:22:52 UTC, Brian Schott wrote: dfix is a tool for automatically upgrading the syntax of D source code. Changes since 0.1.1: * #1 dfix will now rewrite "const int foo() {}" to int foo() const {}" * #6 The C-style array syntax fix is no longer incorrectly appli

Re: dfix 0.2.0

2014-11-25 Thread Nordlöw
On Tuesday, 25 November 2014 at 23:45:17 UTC, Nordlöw wrote: I guess one solution would be to make warnings non-errors right but that seems dumb concerning what dfix can do for us regarding auto-converting C-style arrays syntax to D-style :) BTW: How do I specify that a dependency package

Re: dfix 0.2.0

2014-11-26 Thread Nordlöw
On Tuesday, 25 November 2014 at 23:58:21 UTC, Brian Schott wrote: On Tuesday, 25 November 2014 at 23:47:07 UTC, Nordlöw wrote: On Tuesday, 25 November 2014 at 23:45:17 UTC, Nordlöw wrote: I guess one solution would be to make warnings non-errors right but that seems dumb concerning what dfix

Re: dfix 0.2.0

2014-11-26 Thread Nordlöw
On Wednesday, 26 November 2014 at 13:11:28 UTC, Nordlöw wrote: It would be nice if we could call DUB either as dub -wi or in a more generic way as dub --dmd-flags="wi,..." so I don't have to clone the top-level project and modify its dub.json myself in order to test d

Request for Recursive Warnings as Message DUB Flag

2014-11-30 Thread Nordlöw
I really think DUB lacks an important flag/option namely a variant of allowWarnings that *recursively* affects all the sub packages of a dub.json project description. Otherwise developers who want to try out D will think its is broken because of warnings such as deprecated use of C-styl

Re: Request for Recursive Warnings as Message DUB Flag

2014-12-01 Thread Nordlöw
On Sunday, 30 November 2014 at 15:48:14 UTC, Nordlöw wrote: I really think DUB lacks an important flag/option namely a variant of allowWarnings that *recursively* affects all the sub packages of a dub.json project description. Otherwise developers who want to try out D will think its

Re: Concise Binary Object Representation (CBOR) binary serialization library.

2014-12-19 Thread Nordlöw
On Friday, 19 December 2014 at 18:26:26 UTC, MrSmith wrote: Here is github link: https://github.com/MrSmith33/cbor-d Destroy! It would be nice to have a side-by-side comparison with http://msgpack.org/ which is in current use by a couple existing D projects, include D Completion Daemon (DCD)

Re: Voting for std.experimental.allocator

2015-07-08 Thread Nordlöw
On Wednesday, 8 July 2015 at 11:33:03 UTC, Dicebot wrote: Please respond to this post with a comment starting with a single "Yes"/"No" Yes

Re: "Programming in D" paper book is available for purchase

2015-08-20 Thread Nordlöw
On Wednesday, 19 August 2015 at 00:57:32 UTC, Ali Çehreli wrote: Enjoy, and go buy some books! ;) Thank you!

Re: D-Day for DMD is today!

2015-08-24 Thread Nordlöw
On Sunday, 23 August 2015 at 05:17:33 UTC, Walter Bright wrote: https://github.com/D-Programming-Language/dmd/pull/4923 We have made the switch from C++ DMD to D DMD! Worth mentioning: The final call to dmd that compiles 117 klines (~80 files) of D code in one show and links dmd takes 1.1 s

Re: v0.2.1 of EMSI's containers library

2015-09-12 Thread Nordlöw
On Tuesday, 1 September 2015 at 04:03:48 UTC, Brian Schott wrote: Please report bugs on Github here: https://github.com/economicmodeling/containers/issues Move semantics anyone? https://github.com/economicmodeling/containers/issues/25

Re: Facebook is using D in production starting today

2013-10-14 Thread Per Nordlöw
On Friday, 11 October 2013 at 00:36:12 UTC, Andrei Alexandrescu wrote: Today I committed the first 5112 lines of D code to Facebook's repository. The project is in heavy daily use at Facebook. Compared to the original version (written in C++) we've measured massive wins in all of source code si

High-level wrapper for GNU MP (GMP)

2017-01-23 Thread Nordlöw via Digitalmars-d-announce
Version 0.0.1 is out http://code.dlang.org/packages/gmp-d Only mpz_t is currently wrapped (in MpZ). See README.md for more details.

Re: High-level wrapper for GNU MP (GMP)

2017-01-23 Thread Nordlöw via Digitalmars-d-announce
On Monday, 23 January 2017 at 22:37:50 UTC, Nordlöw wrote: See README.md for more details. Moved todo-list to TODO.md and cleaned up README.md at https://github.com/nordlow/gmp-d

Re: Release D 2.073.0

2017-01-27 Thread Nordlöw via Digitalmars-d-announce
On Friday, 27 January 2017 at 11:12:22 UTC, Dicebot wrote: And also stuff like https://github.com/dlang/druntime/pull/1740 - I think the story behind `return scope` is the critical point for me. It is worst technical disaster that has happened to compiler in years, and I am going to blame Walte

Re: LDC 1.1.0 released

2017-02-01 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 1 February 2017 at 03:43:10 UTC, David Nadlinger wrote: Version 1.1.0 of LDC, the LLVM-based D compiler, has finally been released: https://github.com/ldc-developers/ldc/releases/tag/v1.1.0 Great work.

Re: automem v0.0.7 - C++ style smart pointers using std.experimental.allocator

2017-04-11 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 9 April 2017 at 08:56:52 UTC, Atila Neves wrote: http://code.dlang.org/packages/automem You might find my own containers interesting, especially https://github.com/nordlow/phobos-next/blob/master/src/array_ex.d Supports all the different ways I could think an array needs to work:

Re: Blog post on automem

2017-04-28 Thread Nordlöw via Digitalmars-d-announce
On Friday, 28 April 2017 at 14:40:03 UTC, Mike Parker wrote: Blog: https://dlang.org/blog/2017/04/28/automem-hands-free-raii-for-d/ Nice. One thing, Atila; what about replacing typeof(u1) u2; move(u1, u2); with typeof(u1) u2 = move(u1); or, alternatively, typeof(u1) u2 = u

Re: [OT] Fast Deterministic Selection

2017-05-19 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 18 May 2017 at 15:14:17 UTC, Andrei Alexandrescu wrote: https://www.reddit.com/r/programming/comments/6bwsjn/fast_deterministic_selection_sea_2017_now_with/ Great work.

Re: Lubeck: Hight Level Linear Algebra for Dlang

2017-06-15 Thread Nordlöw via Digitalmars-d-announce
On Tuesday, 13 June 2017 at 08:26:20 UTC, 9il wrote: [1] http://code.dlang.org/packages/lubeck https://github.com/kaleidicassociates/lubeck/tree/master/example Nice. Will there be any matrix, vector, scalar, types with operator overloads?

Re: Lubeck: Hight Level Linear Algebra for Dlang

2017-06-15 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 15 June 2017 at 12:22:25 UTC, Nordlöw wrote: On Tuesday, 13 June 2017 at 08:26:20 UTC, 9il wrote: [1] http://code.dlang.org/packages/lubeck https://github.com/kaleidicassociates/lubeck/tree/master/example Nice. Will there be any matrix, vector, scalar, types with operator

Re: Lubeck: Hight Level Linear Algebra for Dlang

2017-06-15 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 15 June 2017 at 14:23:29 UTC, jmh530 wrote: mir.ndslice.slice has CanonicalMatrix/ContinguousMatrix, and similar versions for vectors and tensors and all the algorithms that operate on ranges in mir seem to work fine with them. Ilya has expressed his intention in the past for high

Re: DCD 0.9.0 released

2017-07-03 Thread Nordlöw via Digitalmars-d-announce
On Monday, 3 July 2017 at 08:30:52 UTC, Basile@dlang-community wrote: I'm glad to announce that the dlang-community has released DCD 0.9.0[1] Nice. Are there any plans on adding any (limited) kind of auto-completion of UFCS-calls?

Re: Netflix opensources its first D library: Vectorflow

2017-08-08 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 3 August 2017 at 04:40:05 UTC, Matt wrote: Also note, one of the main advantages of Eigen is the whole lazy evaluation of expressions for compound operations. I haven't dug in the source, but it's my understanding it's done through a lot of compile time C++ template hacking Note

Re: Netflix opensources its first D library: Vectorflow

2017-08-08 Thread Nordlöw via Digitalmars-d-announce
On Tuesday, 8 August 2017 at 18:40:08 UTC, Nordlöw wrote: On Thursday, 3 August 2017 at 04:40:05 UTC, Matt wrote: Also note, one of the main advantages of Eigen is the whole lazy evaluation of expressions for compound operations. I haven't dug in the source, but it's my understa

Re: [OT] LLVM 5.0 released - LDC mentioned in release notes

2017-09-07 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 7 September 2017 at 19:26:51 UTC, Kai Nacke wrote: LLVM 5.0 has been released! See the release notes here: http://releases.llvm.org/5.0.0/docs/ReleaseNotes.html Downloads: http://releases.llvm.org/download.html#5.0.0 Great work, Kai! Are there any new code-generation features in

DCompute target: Intel to Introduce New CPU-FPGA Hybrid Chip Supported by Acceleration Stack

2017-10-20 Thread Nordlöw via Digitalmars-d-announce
https://www.allaboutcircuits.com/news/intel-to-introduce-new-cpu-fpga-hybrid-chip-supported-by-acceleration-stack/ is yet another motivation to keep up the great work put into DCompute at https://github.com/ldc-developers/ldc/commits/dcompute ! Ever since I first tried programming in VHDL an

Re: DCompute target: Intel to Introduce New CPU-FPGA Hybrid Chip Supported by Acceleration Stack

2017-10-20 Thread Nordlöw via Digitalmars-d-announce
On Friday, 20 October 2017 at 20:41:24 UTC, Nordlöw wrote: https://github.com/ldc-developers/ldc/commits/dcompute or rather https://github.com/libmir/dcompute

Re: Unit Testing in Action

2017-10-22 Thread Nordlöw via Digitalmars-d-announce
On Saturday, 21 October 2017 at 22:50:51 UTC, Walter Bright wrote: What's happening here is each of the operands of || are considered to be separate statements as far as coverage analysis goes. It becomes clearer if it is reformatted as: 1|x = 2; 1|if (x == 1 || 1|x == 2) or:

Re: LDC 1.5.0-beta1

2017-10-22 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 22 October 2017 at 09:34:56 UTC, kinke wrote: Full release log and downloads: https://github.com/ldc-developers/ldc/releases/tag/v1.5.0-beta1 Thanks to everybody contributing! Thanks!

Re: LDC 1.6.0-beta1

2017-11-12 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 12 November 2017 at 15:57:19 UTC, kinke wrote: Hi everyone, on behalf of the LDC team, I'm glad to announce the first beta for LDC 1.6. The highlights of this version in a nutshell: * Based on D 2.076.1. * Experimental support for dynamic codegen at runtime ('manual JIT'). * Many

Re: flycheck-dmd-dub v0.12 - Emacs on-the-fly syntax checking for D

2018-02-13 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 8 February 2018 at 17:05:32 UTC, Atila Neves wrote: This new release fixes bugs and speeds up opening files by using `--nodeps --skip-registry=all` if the dependent packages have already been downloaded. Thanks!

Re: dpldocs now has cross-package search (experimental)

2018-03-10 Thread Nordlöw via Digitalmars-d-announce
On Saturday, 10 March 2018 at 00:09:18 UTC, Adam D. Ruppe wrote: Looking for http libs? Behold: http://search.dpldocs.info/?q=http Nice!

Re: DCD 0.9.11 & D-Scanner 0.5.10

2018-09-02 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 2 September 2018 at 04:52:22 UTC, Basile B. wrote: Both compatible with syntax changes coming with 2.082. https://github.com/dlang-community/DCD/releases/tag/v0.9.11 https://github.com/dlang-community/D-Scanner/releases/tag/v0.5.10 Great! Professional.

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

2015-09-25 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 24 September 2015 at 15:04:49 UTC, Atila Neves wrote: I you want any advice on this matter please contact me. I'd be glad to be of service. Send me an email, I'm more than happy to waffle away about build systems. BTW. I'm planning on visiting Berlin for DConf 2016. We could ha

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

2015-10-26 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 14 October 2015 at 07:35:49 UTC, Marco Leise wrote: Example: double x = 0, y = 0, z = 0; auto json = parseTrustedJSON(`{ "coordinates": [ { "x": 1, "y": 2, "z": 3 }, … ] }`); foreach (idx; json.coordinates) { // Provide one function for each key you are i

Re: Please vote for the DConf logo

2015-11-15 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 4 November 2015 at 09:30:30 UTC, Andrei Alexandrescu wrote: Reply to this with 1.1, 1.2, 2, or 3: 1) by ponce: Variant 1: https://github.com/p0nce/dconf.org/blob/master/2016/images/logo-sample.png Variant 2: https://raw.githubusercontent.com/p0nce/dconf.org/4f0f2b5be8ec2b06e3feb

Re: Three Cool Things about D

2015-12-22 Thread Nordlöw via Digitalmars-d-announce
On Monday, 21 December 2015 at 17:28:51 UTC, Andrei Alexandrescu wrote: https://www.reddit.com/r/programming/comments/3xq2ul/codedive_2015_talk_three_cool_things_about_d/ Great motivation as always! Thx!

Re: Better docs for D (WIP)

2016-01-05 Thread Nordlöw via Digitalmars-d-announce
On Monday, 28 December 2015 at 20:15:30 UTC, Adam D. Ruppe wrote: Last week, I posted in the general forum my dream for better D docs. Today, about 4 days of work later, I'm about 1/4 of the way there. Still a long way to go, but I've already come so far. First, behold my old dpldocs.info sit

Re: Better docs for D (WIP)

2016-01-05 Thread Nordlöw via Digitalmars-d-announce
On Tuesday, 5 January 2016 at 15:43:30 UTC, Nordlöw wrote: This is awesome! I warmly welcome this approach. I just got a comment from a newbie D developer fellow who commented on the current unpleasant doc formatting of templated headers. The mouse-over behaviour of CT- and RT-parameters is

Re: Andrei on Optimization

2016-01-08 Thread Nordlöw via Digitalmars-d-announce
On Friday, 8 January 2016 at 13:30:34 UTC, Walter Bright wrote: https://www.reddit.com/r/programming/comments/400wpy/andrei_alexandrescus_amazing_150_minutes_course/ Part 1: https://www.youtube.com/watch?v=ph7FP0LnmcA Part 2: https://www.youtube.com/watch?v=3_FXy3cT5C8 Try setting Youtube pla

Re: Beta D 2.070.0-b1

2016-01-14 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 3 January 2016 at 19:24:57 UTC, Martin Nowak wrote: http://dlang.org/changelog/2.070.0.html I'm missing changelog entry for - new algorithm `std.algorithm.comparison.either` - update for return type of `findSplit*` enabling bool-conversion in for instance if (const hit = haystack

Re: Beta D 2.070.0-b2

2016-01-19 Thread Nordlöw via Digitalmars-d-announce
On Monday, 18 January 2016 at 14:29:37 UTC, Martin Nowak wrote: Fixed, I simply forgot to update the changelog from phobos. https://github.com/D-Programming-Language/dlang.org/commit/128de6cce74b6fe8f98c35d2e3b44c44517152c8 http://dlang.org/changelog/2.070.0.html I'm still missing entries for

Re: Airfares to Berlin for DConf 2016

2016-01-21 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 20 January 2016 at 09:04:07 UTC, Walter Bright wrote: I saw on the news this evening that air fares for the next 3 weeks will be at a 3 year low. It's a good time to book the flights to Berlin! Is there a special hotel, nearby Semantic HQ, where most of the contenders plan to st

Re: Beta D 2.070.0-b2

2016-01-21 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 20 January 2016 at 09:03:50 UTC, Martin Nowak wrote: Well, please write them (targeting stable). Changelog entries should nowadays be part of pull requests. https://github.com/D-Programming-Language/phobos/blob/ca3b4c839770a02f2414b20aa11c38f79419871b/changelog.dd#L9 Ok, I'll loo

Re: dlang.org Re-Design Dark Theme

2016-03-14 Thread Nordlöw via Digitalmars-d-announce
On Monday, 14 March 2016 at 12:00:24 UTC, Jakob Ovrum wrote: Suggestions, forks, uploads to Stylish and so forth are all welcome. The important part is that we have an alternative that is nice on the eyes for us who use dark-coloured UIs. Looks great, apart from the red-flags on the bottom-rig

Emacs dfmt wrapper

2016-03-22 Thread Nordlöw via Digitalmars-d-announce
I've hacked together a little Elisp magic that seems to work as wrapper around dfmt. https://github.com/nordlow/elisp/blob/master/mine/dfmt.el Improvements are very welcome! Enjoy!

Re: 2016Q1: std.blas

2016-03-24 Thread Nordlöw via Digitalmars-d-announce
On Saturday, 26 December 2015 at 20:51:06 UTC, Ilya Yaroshenko wrote: Related questions about LDC http://forum.dlang.org/thread/lcrquwrehuezpxxvq...@forum.dlang.org Sounds amazing. I can't wait either ;) Thanks in advance. I have some minimum square data fitting algorithms I would like to po

Re: 2016Q1: std.blas

2016-03-24 Thread Nordlöw via Digitalmars-d-announce
On Saturday, 26 December 2015 at 19:57:19 UTC, Ilya Yaroshenko wrote: I will write GEMM and GEMV families of BLAS for Phobos. Is there a repo where I can track progress?

Re: 2016Q1: std.blas

2016-03-24 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 24 March 2016 at 09:30:04 UTC, 9il wrote: I will post Level 1 to Mir during this week. Great!

Re: Weak Purity Blog Post

2016-03-30 Thread Nordlöw via Digitalmars-d-announce
On Monday, 28 March 2016 at 01:44:02 UTC, sarn wrote: I wrote a post about some of the practical benefits of this kind of purity: https://theartofmachinery.com/2016/03/28/dirtying_pure_functions_can_be_useful.html Great. It would be nice if you added a section that discusses purity in collab

Units of Measurement Library: units-d

2016-03-31 Thread Nordlöw via Digitalmars-d-announce
I've put David Nadlinger work together with my tweaks on top at https://github.com/nordlow/units-d to make it easier to experiment with. PR are very welcome.

Re: Release D 2.071.0

2016-04-07 Thread Nordlöw via Digitalmars-d-announce
On Tuesday, 5 April 2016 at 22:43:05 UTC, Martin Nowak wrote: Glad to announce D 2.071.0. I read somewhere recently about performance regressions in DMD. Were these related the import and module fixes? Were they fixed? Do they depend on any dmd switches? Thanks anyway!

New repo for my reusable D Phobos extensions

2016-04-09 Thread Nordlöw via Digitalmars-d-announce
I've packaged my reusable extensions to Phobos at https://github.com/nordlow/phobos-next PRs are very welcome. There are lots of goodies here. Some of them should probably be moved to standard Phobos. I currently have lots of other D things to do, but you guys are welcome to try to integrate

Re: New repo for my reusable D Phobos extensions

2016-04-10 Thread Nordlöw via Digitalmars-d-announce
On Saturday, 9 April 2016 at 18:25:54 UTC, Nordlöw wrote: I've packaged my reusable extensions to Phobos at https://github.com/nordlow/phobos-next Also at http://code.dlang.org/packages/phobos-next

Re: New repo for my reusable D Phobos extensions

2016-04-10 Thread Nordlöw via Digitalmars-d-announce
On Saturday, 9 April 2016 at 23:49:14 UTC, ag0aep6g wrote: , : Changing arbitrary bit

Re: New repo for my reusable D Phobos extensions

2016-04-10 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 10 April 2016 at 20:24:41 UTC, Nordlöw wrote: These operate only on integer types thanks to isIntegral template constraint. Are you saying I need to limit to machine types u?int{8,16,32,64,12} to not include BigInt? If so is there a trait for this? Further, perhaps we could/should

Re: New repo for my reusable D Phobos extensions

2016-04-11 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 10 April 2016 at 20:54:31 UTC, ag0aep6g wrote: No, these are the overloads for non-integer T. The constraint says `!(isIntegral!T)`. The integer overloads are above the ones I linked, respectively. Ok. Thanks. Fixed.

Re: Computer Vision Library in D

2016-04-19 Thread Nordlöw via Digitalmars-d-announce
On Tuesday, 19 April 2016 at 17:01:12 UTC, Relja Ljubobratovic wrote: [1] https://github.com/ljubobratovicrelja/dcv Standard modules for color conversion already exists. See for instance https://github.com/TurkeyMan/color https://github.com/adamdruppe/arsd/blob/master/color.d Great that you

Re: Proposed: start DConf days one hour later

2016-04-28 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 27 April 2016 at 18:36:54 UTC, Andrei Alexandrescu wrote: The folks at Sociomantic suggested to start at 10:00 AM instead of 9:00 AM, therefore shifting the end time by one as well. Please reply with thoughts on this! We're particularly concerned about folks who need to take off e

Re: xoroshiro128+ random number generator

2016-04-30 Thread Nordlöw via Digitalmars-d-announce
On Friday, 29 April 2016 at 21:40:49 UTC, Joseph Rushton Wakeling wrote: Spotted this reddit post the other day: https://www.reddit.com/r/programming/comments/4gtlfz/xoroshiro128_the_fastest_fullperiod_pseudorandom/ @nogc :)

Re: Battle-plan for CTFE

2016-05-09 Thread Nordlöw via Digitalmars-d-announce
On Monday, 9 May 2016 at 18:20:46 UTC, Robert burner Schadek wrote: awesome news :-) thanks you I very much agree.

Re: DustMite now has -j

2016-05-11 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 11 May 2016 at 19:53:54 UTC, Vladimir Panteleev wrote: By popular demand. https://github.com/CyberShadow/DustMite/compare/e175b95da070d84029f75ba8a15f5d900fb90704...15693cbd5a5c0f47ee9cc68be9dada39b99c3836 Great!

Re: Found on Reddit: Cache sizes with CPUID in C++ and D

2016-05-15 Thread Nordlöw via Digitalmars-d-announce
On Sunday, 15 May 2016 at 14:56:47 UTC, Ali Çehreli wrote: Quote from the original article: "In D, there is a cpuid module that can retrieve cache information, but from what I've found it's incorrect." Then the author provides a function that does it correctly. But the article doesn't tell w

Re: My ACCU 2016 keynote video available online

2016-05-16 Thread Nordlöw via Digitalmars-d-announce
On Monday, 16 May 2016 at 13:46:11 UTC, Andrei Alexandrescu wrote: Uses D for examples, showcases Design by Introspection, and rediscovers a fast partition routine. It was quite well received. https://www.youtube.com/watch?v=AxnotgLql0k Andrei Great! Your talks are always pushedFront in my v

Re: Better Voldemort types

2016-05-25 Thread Nordlöw via Digitalmars-d-announce
On Tuesday, 24 May 2016 at 01:29:53 UTC, Steven Schveighoffer wrote: http://www.schveiguy.com/blog/2016/05/have-your-voldemort-types-and-keep-your-disk-space-too/ Good read. I'll horcruxify my phobos-next ranges until compiler is fixed. Thanks!

Re: D Profile Viewer

2016-06-02 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 24 March 2016 at 20:34:07 UTC, Andrew wrote: Its here: https://bitbucket.org/andrewtrotman/d-profile-viewer Please let me know if you find any bugs. It's better to use backticks to produce raw string literals for all the quoted code. Then you don't have to backslash all the doubl

Re: Beta release DUB 1.0.0-beta.1

2016-06-08 Thread Nordlöw via Digitalmars-d-announce
On Tuesday, 7 June 2016 at 09:54:19 UTC, Sönke Ludwig wrote: DUB 1.0.0 is nearing completion. The new feature over 0.9.25 is... Great work! I've spread the news to all my hackish friends.

Re: NDC 2016 talk now online

2016-06-30 Thread Nordlöw via Digitalmars-d-announce
On Friday, 24 June 2016 at 14:06:48 UTC, Andrei Alexandrescu wrote: https://www.reddit.com/r/programming/comments/4pmsgu/andrei_on_algorithms_search_partition_fast/ -- Andrei Great talk, as usual, and great results. Has Phobos been updated to make use of these improvements, typically sentine

Re: Battle-plan for CTFE

2016-06-30 Thread Nordlöw via Digitalmars-d-announce
On Thursday, 30 June 2016 at 03:17:38 UTC, Stefan Koch wrote: Until then you can see my progress at https://github.com/UplinkCoder/dmd/tree/newCTFE I will try to always keep the branch in a healthy state. I can't wait to see the benchmarks. Keep up the good work!

Re: DIP1000: Scoped Pointers

2016-08-12 Thread Nordlöw via Digitalmars-d-announce
On Wednesday, 10 August 2016 at 20:35:23 UTC, Dicebot wrote: The first DIP has just landed into the new queue. It is a proposal from language authors and thus it bypasses usual nitpicking process and proceeds straight to requesting community (your!) feedback. Thanks for all the work. One rem

  1   2   3   >