Re: D vs nim

2015-04-14 Thread Jadbox via Digitalmars-d
btw : I think D should get rid off un-bracketed if statement, program king is not about sparing the number of lines...but that’s again a matter of taste. I'm that guy on the other side of the fence. I view unbracked IFs as an essential part of concise code readability. Brackets are the

Posts of interest: Rust vs C++ D ownership

2015-04-22 Thread Jadbox via Digitalmars-d
The first article I found interesting, although I disagree with a couple of his statements. Anyway, I'd love to hear what folks here think about points from both articles. == Pros and cons: Rust vs C++ == https://plus.google.com/+nialldouglas/posts/AXFJRSM8u2t

Re: Duals or ranges and reactive D

2015-10-23 Thread jadbox via Digitalmars-d
On Thursday, 8 May 2014 at 19:52:01 UTC, Ola Fosheim Grøstad wrote: Reactive programming is related to dataflow, so you will run into problems when you get beyond toy-size programs. Though, with compiler support…

Re: AWS SDK

2016-06-27 Thread jadbox via Digitalmars-d
On Monday, 27 June 2016 at 17:53:32 UTC, Brad Roberts wrote: https://github.com/braddr/downloads.dlang.org/tree/master/src It has sig v2 signing and some s3 object related code. Super minimal and sig v2 is out of date (though still very usable, in most aws regions). Ideally, someone would

AWS SDK

2016-06-26 Thread Jadbox via Digitalmars-d
Is there an AWS library in the works for D? It's seriously the main blocker for me to push adoption of the language internally. If not, I can try to invest time into making one, but I could use help. (fyi, there's one in the works for Rust: https://github.com/rusoto/rusoto)

Re: Optimizations and performance

2016-06-26 Thread Jadbox via Digitalmars-d
On Saturday, 25 June 2016 at 16:05:08 UTC, ZombineDev wrote: Overall DMD completes mandel.b for 75.5% of the time of the previous version, LDC for 62.6% and GDC for 88.1%. The code is 64.9% of the original (in terms of LOC). This is what I love: less code with more performance. Great work on

Structural exhaustive matching

2015-04-21 Thread Jadbox via Digitalmars-d-learn
What's the best equivalent to Rust's structural enum/pattern (match)ing? Is it also possible to enforce exhaustive matches? Basically, I'm curious on what the best way to do ADTs in D.