Re: New DConf Blog Post

2019-04-06 Thread Seb via Digitalmars-d-announce
On Saturday, 6 April 2019 at 22:30:58 UTC, bauss wrote: Just going to respond to this: "If you haven’t visited the site in a while, you’ll surely notice that it’s been redesigned. The old version was not responsive and was quite annoying to manipulate on small screens." The design is terrib

Re: New DConf Blog Post

2019-04-08 Thread Seb via Digitalmars-d-announce
On Monday, 8 April 2019 at 16:42:50 UTC, matheus wrote: On Sunday, 7 April 2019 at 07:03:34 UTC, bauss wrote: [...] Design is a complicated matter and thankfully I'm mostly back-end developer. [...] Please move this discussions and ideas to DFeed ;-) https://github.com/CyberShadow/DFeed

Re: New DConf Blog Post

2019-04-16 Thread Seb via Digitalmars-d-announce
On Tuesday, 16 April 2019 at 23:12:43 UTC, aberba wrote: On Sunday, 7 April 2019 at 06:19:31 UTC, Mike Parker wrote: On Saturday, 6 April 2019 at 22:30:58 UTC, bauss wrote: The design is terrible and it really looks unprofessional. While the old site wasn't responsive, the design was at least

Re: Containerize Your D Server Application

2019-04-19 Thread Seb via Digitalmars-d-announce
On Friday, 19 April 2019 at 20:45:12 UTC, Valeriy Fedotov wrote: On Thursday, 14 March 2019 at 12:38:30 UTC, Mike Parker wrote: [...] Seems that multithe tutorial no longer works. ``` The dependency resolution process is taking too long. The dependency graph is likely hitting a pathological

D 2019 GSoC projects - annoucement

2019-05-06 Thread Seb via Digitalmars-d-announce
Hi all, I'm very happy to announce that this year we will have six amazing GSoC students: https://summerofcode.withgoogle.com/organizations/6103365956665344 As I mentioned in earlier threads, we had a lot of great applications and, thus, we had a really hard time with the selection. For the

Re: Release D 2.086.0

2019-05-07 Thread Seb via Digitalmars-d-announce
On Tuesday, 7 May 2019 at 17:29:34 UTC, Daniel N wrote: On Tuesday, 7 May 2019 at 15:13:05 UTC, Andrea Fontana wrote: import std; void main() { std.file.write("/tmp/test", "hello"); } How should I fix this? import std; import file = std.file; void main() { file.write("/tmp/test", "hello"

The D install.sh script can now install a specific version of Dub

2019-05-10 Thread Seb via Digitalmars-d-announce
tl;dr: the D install script is now able to install a specific version of DUB. ./install.sh dmd-2.072.2,dub ./install.sh ldc-1.10.0,dub This is mostly useful if you want to test an old version of a DMD or LDC on a CI, but want to take advantage of all the stability fixes in dub and thus use th

Re: Phobos is now compiled with -preview=dip1000

2019-05-15 Thread Seb via Digitalmars-d-announce
On Wednesday, 15 May 2019 at 07:56:48 UTC, Walter Bright wrote: On 5/14/2019 11:49 PM, Dukc wrote: Time to start compiling your projects with DIP1000, too! For me, the forum claims that your posting time is "from the future". Does that mean that is has somehow leaked a draft and this shouldn't

Re: Phobos is now compiled with -preview=dip1000

2019-05-15 Thread Seb via Digitalmars-d-announce
On Thursday, 16 May 2019 at 05:14:39 UTC, Nicholas Wilson wrote: [...] Yes that sounds like the culprit. Btw as mentioned on DConf, the dip1000 switch contains a few other breaking changes which will make it even harder to adopt too.

Re: Phobos is now compiled with -preview=dip1000

2019-05-16 Thread Seb via Digitalmars-d-announce
On Thursday, 16 May 2019 at 10:03:42 UTC, Kagamin wrote: On Thursday, 16 May 2019 at 05:22:42 UTC, Seb wrote: Yes that sounds like the culprit. Btw as mentioned on DConf, the dip1000 switch contains a few other breaking changes which will make it even harder to adopt too. Well, it's an inhere

dlang/projects: A collection of impact D projects

2019-05-23 Thread Seb via Digitalmars-d-announce
Hi everyone, at DConf one common concern raised was that it's hard to track the progress on important high-level projects. Furthermore, its also hard for interested contributors to find such projects and judge which ones really matter to the D community. Lastly, the existing wiki pages (wishl

Re: nogc v0.5.0 - DIP1008 works!

2019-05-24 Thread Seb via Digitalmars-d-announce
On Friday, 24 May 2019 at 11:41:12 UTC, Atila Neves wrote: I'd been holding off on announcing this until DIP1008 actually got implemented, and now it has: [...] Awesome!! Now we just need to get to compile Druntime and Phobos with -preview=dip1008, s.t. we can enable it by default :) See

Re: Beta 2.086.1

2019-06-13 Thread Seb via Digitalmars-d-announce
On Thursday, 13 June 2019 at 03:48:05 UTC, Eugene Wissner wrote: On Wednesday, 12 June 2019 at 23:51:39 UTC, Martin Nowak wrote: Glad to announce the first beta for the 2.086.1 point release, ♥ to the 20 contributors. http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.086.1.

Re: Beta 2.087.0

2019-06-17 Thread Seb via Digitalmars-d-announce
On Monday, 17 June 2019 at 02:30:45 UTC, Nicholas Wilson wrote: On Sunday, 16 June 2019 at 22:47:57 UTC, Martin Nowak wrote: Glad to announce the first beta for the 2.087.0 release, ♥ to the 66 contributors. http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.087.0.html As

Re: Release D 2.087.0

2019-07-15 Thread Seb via Digitalmars-d-announce
On Monday, 15 July 2019 at 11:49:31 UTC, Vladimir Panteleev wrote: On Monday, 15 July 2019 at 11:33:44 UTC, Mike Franklin wrote: I discussed that briefly on Slack with a couple other developers. My understanding is the `rt` is the language implementation and `core` is the low level library for

Re: Release D 2.087.0

2019-07-15 Thread Seb via Digitalmars-d-announce
On Monday, 15 July 2019 at 14:00:23 UTC, Mike Franklin wrote: On Monday, 15 July 2019 at 13:00:08 UTC, Vladimir Panteleev wrote: We are trying to implement many of those `extern(C)` runtime hooks as templates. Those templates need to be implicitly imported through object.d. That means code

Re: SoAC

2019-08-13 Thread Seb via Digitalmars-d-announce
On Sunday, 11 August 2019 at 19:16:22 UTC, Tiberiu Lepadatu wrote: Hi everyone, I want to participate to Symmetry Autumn of Code 2019 with either the project "Solve dependency hell" or "Implement Reactive programming into D". I have some experience with programming languages mainly Rust, FORT

Re: Blog Post: Beating std::visit Without Really Trying

2019-10-05 Thread Seb via Digitalmars-d-announce
On Saturday, 5 October 2019 at 06:40:35 UTC, Arun Chandrasekaran wrote: On Saturday, 5 October 2019 at 02:59:58 UTC, Paul Backus wrote: I was curious how C++17's std::variant compared to the options we have in D, like Algebraic and SumType, so I did a simple comparison of the generated assembly

Re: Blog Post: Beating std::visit Without Really Trying

2019-10-05 Thread Seb via Digitalmars-d-announce
On Sunday, 6 October 2019 at 02:33:15 UTC, Walter Bright wrote: On 10/5/2019 6:58 AM, Seb wrote: Phobos is essentially dead/frozen (feature-wise). I beg to disagree. A couple cases in point: https://github.com/dlang/phobos/pull/7211 which is a re-imagining, rethinking of hexString. I'm

Re: Blog Post: Beating std::visit Without Really Trying

2019-10-06 Thread Seb via Digitalmars-d-announce
On Sunday, 6 October 2019 at 07:16:03 UTC, Joseph Rushton Wakeling wrote: On Sunday, 6 October 2019 at 03:47:25 UTC, Seb wrote: My earlier post tried to point out that SumType is an excellent candidate for v2. Sorry, Seb, but I don't get this. There's no reason to wait for a v2 to introduce a

Re: Beta 2.090.0

2019-12-23 Thread Seb via Digitalmars-d-announce
On Sunday, 22 December 2019 at 20:30:06 UTC, berni44 wrote: On Sunday, 22 December 2019 at 19:00:15 UTC, Eugene Wissner wrote: Probably differen email addresses. You can set an email address locally for the repository in .git/config. Or just add an alias: https://github.com/dlang/tools/blob/mas

Re: Interfacing D with C: Arrays and Functions (Arrays Part 2)

2020-04-28 Thread Seb via Digitalmars-d-announce
On Tuesday, 28 April 2020 at 14:45:37 UTC, Mike Parker wrote: I've finally gotten around to publishing the next article in my D and C series on the D blog. This is the second post about arrays, focusing on properly declaring in D functions from C that accept array parameters. The blog: https:

Re: DIP 1028--Make @safe the Default--Formal Assessment

2020-05-21 Thread Seb via Digitalmars-d-announce
On Thursday, 21 May 2020 at 13:51:34 UTC, Mike Parker wrote: DIP 1028, "Make @safe the Default", has been accepted without comment. https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1028.md "without comment" - even though there were a lot of unaddressed problems :/ Great! So what'

Re: Release D 2.094.0

2020-10-01 Thread Seb via Digitalmars-d-announce
On Thursday, 1 October 2020 at 18:29:14 UTC, Meta wrote: On Thursday, 1 October 2020 at 17:29:56 UTC, Mathias LANG wrote: On Thursday, 1 October 2020 at 16:47:37 UTC, Meta wrote: [...] Yes we have a 3rd way. Because `auto ref` just doesn't cut it for most usages, and `-preview=rvaluerefparam

Re: Release D 2.094.0

2020-10-01 Thread Seb via Digitalmars-d-announce
On Thursday, 1 October 2020 at 21:09:55 UTC, Meta wrote: On Thursday, 1 October 2020 at 20:40:39 UTC, Seb wrote: [...] Okay, fair enough. Should this still not have had approval from either Walter or Atila before being merged in? Or is that not the case for changes behind -preview? Approva

Re: New DConf Online 2020 Lightning Talk and a new Task Bounty

2020-11-02 Thread Seb via Digitalmars-d-announce
On Monday, 2 November 2020 at 14:05:07 UTC, Mike Parker wrote: An anonymous donor has seeded a new Task Bounty with $400. The task: execute a new release of the dub-registry project. Tagging was never a problem as registry is/was building fine from master: https://github.com/dlang/dub-regi

Re: New DConf Online 2020 Lightning Talk and a new Task Bounty

2020-11-02 Thread Seb via Digitalmars-d-announce
On Monday, 2 November 2020 at 17:54:48 UTC, Mike Parker wrote: My mistake was assuming that because it's an open issue, it still hasn't been resolved. Had I checked the release tags and the dates, For the dub registry releases aren't generally tagged, but often released from master. I would

Re: two points

2017-02-09 Thread Seb via Digitalmars-d-announce
On Thursday, 9 February 2017 at 19:42:03 UTC, Jack Stouffer wrote: On Thursday, 9 February 2017 at 19:36:52 UTC, Walter Bright wrote: Good idea! Please investigate how to get github to generate such emails. In the meantime, the PR guidelines are here: We gave this a try a couple of months ago

Re: two points

2017-02-11 Thread Seb via Digitalmars-d-announce
On Thursday, 9 February 2017 at 20:12:06 UTC, Joseph Rushton Wakeling wrote: Out of curiosity: is it typical that it would not post until some way into the discussion (as in that example)? I could see why it would be irritating if it popped up once discussion and review had already started hap

Re: Release D 2.073.1

2017-02-16 Thread Seb via Digitalmars-d-announce
On Thursday, 16 February 2017 at 18:31:21 UTC, Satoshi wrote: On Thursday, 16 February 2017 at 17:35:27 UTC, Martin Nowak wrote: Glad to announce D 2.073.1. http://dlang.org/download.html This point release fixes a few issues over 2.073.0, see the changelog for more details. http://dlang.or

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-16 Thread Seb via Digitalmars-d-announce
On Saturday, 7 January 2017 at 16:12:49 UTC, Andrei Alexandrescu wrote: Following https://github.com/dlang/dlang.org/pull/1532, the new-style docs now also allow editing and running examples. Start at http://dlang.org/library-prerelease/ and go anywhere to check it out. Thanks are due to Sönk

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-18 Thread Seb via Digitalmars-d-announce
On Saturday, 18 February 2017 at 13:46:10 UTC, Sönke Ludwig wrote: Am 18.02.2017 um 14:43 schrieb Sönke Ludwig: Am 17.02.2017 um 22:07 schrieb Dmitry Olshansky: On 2/17/17 6:06 AM, Seb wrote: On Saturday, 7 January 2017 at 16:12:49 UTC, Andrei Alexandrescu wrote: Following https://github.com/d

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-18 Thread Seb via Digitalmars-d-announce
On Friday, 17 February 2017 at 08:00:29 UTC, Jack Stouffer wrote: On Friday, 17 February 2017 at 05:06:20 UTC, Seb wrote: Short follow-up: this is now live for the released documentation pages. Enjoy! Please make a post on Reddit! I firmly believe that this puts D at the top of programming l

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-18 Thread Seb via Digitalmars-d-announce
On Friday, 17 February 2017 at 16:07:37 UTC, Nick Sabalausky (Abscissa) wrote: 1. This is pretty awesome. Thanks a lot :) 2. Looks like someone forgot to set a foreground text color for the output even though the background is set to white. This makes the output text invisible for those usin

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-18 Thread Seb via Digitalmars-d-announce
On Friday, 17 February 2017 at 13:50:48 UTC, John Colvin wrote: Might I suggest you change the output s to s with border: none; and max-height: 30em; This would make them auto-grow to the right height to fit the content (with max-height for sanity). It does mean you lose manual resizability (un

Re: tanya library 0.2.0

2017-02-18 Thread Seb via Digitalmars-d-announce
On Saturday, 18 February 2017 at 15:51:59 UTC, Eugene Wissner wrote: It isn't really a release announce, maybe a pre-release. tanya is a general purpose library, used mostly for networking by me. It is an attempt to develop an alternative memory model for D; 100% of the library are usable in

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-21 Thread Seb via Digitalmars-d-announce
On Sunday, 19 February 2017 at 02:27:41 UTC, Mike Parker wrote: On Saturday, 18 February 2017 at 16:43:43 UTC, Seb wrote: Excellent idea! AFAIK reddit doesn't like self posts that much. Would someone be so kind to post this once the improvements are in? https://github.com/dlang/dlang.org/pu

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-22 Thread Seb via Digitalmars-d-announce
On Tuesday, 21 February 2017 at 22:58:57 UTC, Seb wrote: Unfortunately it reverts the writeln magic as the false positive rate was too high - at some point we really should come up with something better :/ However the fact that ddoc and ddox emit different, fully built synax-highlighted HTML

Re: Call for arms: Arch Linux D package maintenance

2017-02-22 Thread Seb via Digitalmars-d-announce
On Thursday, 16 February 2017 at 19:58:47 UTC, Rory McGuire wrote: Hi, I am planning on asking to become TU for the dlang packages in community. I've been building and working with the current packages and making my own packages to make sure I know what I'm getting in to. LDC and GDC are match

Need a fancy domain for your project? .dub.pm has you covered!

2017-02-23 Thread Seb via Digitalmars-d-announce
Hey all, As I own dub.pm since a year and it hasn't been used much, I have just configured automatic sub-domain rewriting, s.t. everyone can have nice and fancy URLs. All sub-domains get redirected to their respective DUB package page, so now you can browse e.g. eventcore.dub.pm vibe-core.du

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-27 Thread Seb via Digitalmars-d-announce
On Monday, 27 February 2017 at 14:12:30 UTC, Mike Parker wrote: On Wednesday, 22 February 2017 at 19:14:14 UTC, Seb wrote: Okay I just couldn't let this sit on myself. So I went ahead and proposed a more "sophisticated" assert -> writeln rewrite tool that is based on Hackerpilot's excellent

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-27 Thread Seb via Digitalmars-d-announce
On Monday, 27 February 2017 at 16:49:13 UTC, David Nadlinger wrote: On Monday, 27 February 2017 at 15:41:18 UTC, Seb wrote: Is it redditable? Yes, finally :) Can we fix the fact that the docs are duplicated for template functions before any big announcements? See e.g. https://dlang.org/lib

Re: DConf 2017 Hotel - book now!

2017-03-02 Thread Seb via Digitalmars-d-announce
On Thursday, 2 March 2017 at 15:09:16 UTC, Chris wrote: On Thursday, 2 March 2017 at 14:44:17 UTC, Steven Schveighoffer wrote: On 3/2/17 4:33 AM, Chris wrote: [...] I used the bus + train, it was quite easy. Don't remember the exact stops, but I just used google maps to tell me the info. [

Re: DConf 2017 Hotel - book now!

2017-03-02 Thread Seb via Digitalmars-d-announce
On Thursday, 2 March 2017 at 19:43:38 UTC, Walter Bright wrote: On 3/2/2017 6:44 AM, Steven Schveighoffer wrote: The bus terminal had machines that allowed you to buy the ticket with cash or credit card I believe, and the same machines validate your ticket as well. Last year I used those mach

Re: From the D Blog: Editable and Runnable Doc Examples on dlang.org

2017-03-08 Thread Seb via Digitalmars-d-announce
On Wednesday, 8 March 2017 at 20:12:51 UTC, Joakim wrote: On Wednesday, 8 March 2017 at 13:24:15 UTC, Mike Parker wrote: Sebastian Wilzbach lays out how the new editable & runnable documentation examples came to be. The blog: https://dlang.org/blog/2017/03/08/editable-and-runnable-doc-examples

DConf hackathon: idea list

2017-05-04 Thread Seb via Digitalmars-d-announce
Hi all, the DConf hackathon isn’t a hackathon in the traditional sense. It is intended as a day for _collaboratively_ focusing on long-lasting problems and pain points in the D ecosystem, planning upcoming features or DIPs, and creation of a rough roadmap for the next months. Of course, any D

Re: DConf hackathon: idea list

2017-05-06 Thread Seb via Digitalmars-d-announce
On Thursday, 4 May 2017 at 13:32:21 UTC, Seb wrote: Hi all, the DConf hackathon isn’t a hackathon in the traditional sense. It is intended as a day for _collaboratively_ focusing on long-lasting problems and pain points in the D ecosystem, planning upcoming features or DIPs, and creation of a

Re: DConf hackathon: idea list

2017-05-06 Thread Seb via Digitalmars-d-announce
On Saturday, 6 May 2017 at 10:13:28 UTC, Seb wrote: On Thursday, 4 May 2017 at 13:32:21 UTC, Seb wrote: Hi all, the DConf hackathon isn’t a hackathon in the traditional sense. It is intended as a day for _collaboratively_ focusing on long-lasting problems and pain points in the D ecosystem,

Re: Harbored-mod 0.2.1 and DYaml 0.6.1 at dlang-community

2017-05-16 Thread Seb via Digitalmars-d-announce
On Tuesday, 16 May 2017 at 22:03:17 UTC, Daniel Kozak wrote: Nice, I have wait so many months until I decided to fork yamkeys because of d-yaml. Now I can delete it thanks. This makes my live easier. This is something I want to propose many times, that there is something like dlang-community.

Re: 101 LINQ examples in D

2017-05-24 Thread Seb via Digitalmars-d-announce
On Wednesday, 24 May 2017 at 16:06:01 UTC, Pradeep Gowda wrote: Inspired by Demis Bellot's "Kotlin LINQ examples" [1], I have started a github repo to port the 101 LINQ examples to D - https://github.com/btbytes/dlang-linq-examples So far, I've completed one section on "Restriction Operators".

Re: Release D 2.074.1

2017-06-03 Thread Seb via Digitalmars-d-announce
On Saturday, 3 June 2017 at 18:08:40 UTC, Joseph Rushton Wakeling wrote: On Thursday, 1 June 2017 at 21:04:00 UTC, Martin Nowak wrote: This point release fixes a few issues over 2.074.0, see the changelog for more details. I'm afraid that the release has another fault: the VERSION file still

Re: Release D 2.074.1

2017-06-03 Thread Seb via Digitalmars-d-announce
On Saturday, 3 June 2017 at 19:02:36 UTC, Joseph Rushton Wakeling wrote: On Saturday, 3 June 2017 at 18:42:57 UTC, Seb wrote: So, I guess your problem is the VERSION file on the dmd stable branch? No, it's the VERSION file present if one checks out the v2.074.1 tag. Tags are only made from

Re: Release D 2.074.1

2017-06-03 Thread Seb via Digitalmars-d-announce
On Saturday, 3 June 2017 at 19:57:36 UTC, Joseph Rushton Wakeling wrote: It's a mistake that remains tolerated, despite the problem being known and having an associated issue, because the dlang/installer scripts work around it, meaning the fundamental problem never gets fixed. I understand th

Re: Compile-Time Sort in D

2017-06-05 Thread Seb via Digitalmars-d-announce
On Monday, 5 June 2017 at 14:23:34 UTC, Mike Parker wrote: The crowd-edited (?) blog post exploring some of D's compile-time features is now live. Thanks again to everyone who helped out with it. The blog: https://dlang.org/blog/2017/06/05/compile-time-sort-in-d/ Reddit: https://www.reddit.co

docarchives.dlang.io - go back in time to previous released versions of dlang.org

2017-07-03 Thread Seb via Digitalmars-d-announce
Hi all, I remember that especially long-time users of GDC and LDC complained from time to time about non-versioned docs. There's a simple solution now: docarchives.dlang.io and contains snapshots from dlang.org at every release from 2.074.0 to 2.066.0: https://docarchives.dlang.io/v2.074.0 .

Re: docarchives.dlang.io - go back in time to previous released versions of dlang.org

2017-07-05 Thread Seb via Digitalmars-d-announce
On Wednesday, 5 July 2017 at 18:38:33 UTC, Jack Stouffer wrote: On Tuesday, 4 July 2017 at 01:39:23 UTC, Seb wrote: ... Thanks for doing this. IMO there should be a link under the "switch to pre-release." link in the current docs. Maybe replace it with a dropdown to select the version from

Re: Beta 2.075.0-b2

2017-07-08 Thread Seb via Digitalmars-d-announce
On Saturday, 8 July 2017 at 23:53:57 UTC, Martin Nowak wrote: On Friday, 7 July 2017 at 09:27:15 UTC, Paolo Invernizzi wrote: /Paolo We've recently changed the versioning of development builds and when we bump the hardcoded VERSION file https://github.com/dlang/dmd/pull/6935. Looks like we n

Re: Call for arms: Arch Linux D package maintenance

2017-07-09 Thread Seb via Digitalmars-d-announce
On Monday, 17 April 2017 at 11:04:11 UTC, R McGuire wrote: On Thursday, 13 April 2017 at 09:34:00 UTC, Atila Neves wrote: On Tuesday, 11 April 2017 at 16:17:32 UTC, John Colvin wrote: On Thursday, 16 February 2017 at 19:58:47 UTC, Rory McGuire wrote: [...] Any news on this? The arch packages

Re: Hiring D programmers (with cryptography and blockchain knowledge are preferred)

2017-07-12 Thread Seb via Digitalmars-d-announce
On Wednesday, 12 July 2017 at 04:40:16 UTC, Vitor Rozsas wrote: * First of all, does Dlang.org have it's own website for hiring D programmers or offering D programming services? If not, it should! There is https://dlang.org/orgs-using-d.html where companies using D can link to their hiring of

Re: Beta 2.075.0-b4

2017-07-13 Thread Seb via Digitalmars-d-announce
On Thursday, 13 July 2017 at 11:52:13 UTC, Martin Nowak wrote: On Thursday, 13 July 2017 at 07:22:00 UTC, Eugene Wissner wrote: The ChangeLog link is: http://dlang.org/changelog/2.075.0_pre.html Works for now, but it shouldn't be under that URL. Will check what broke with dlang.org's Makefile.

Re: Munich D Meetup July 2017

2017-07-17 Thread Seb via Digitalmars-d-announce
On Monday, 17 July 2017 at 12:16:13 UTC, Stefan Koch wrote: On Monday, 3 July 2017 at 18:23:27 UTC, Dragos Carp wrote: Hi all, On 18 July, we will have our next Munich meetup. Mario will give a talk with the title "Avoiding the Big Ball of Mud". As usual before and after the talk we will also

Re: static foreach is now in github master

2017-07-18 Thread Seb via Digitalmars-d-announce
On Monday, 17 July 2017 at 21:27:40 UTC, Martin Nowak wrote: On Monday, 17 July 2017 at 18:14:35 UTC, Andrei Alexandrescu wrote: For those who want to play with our new static foreach feature and are willing to take the steps to building their own dmd, Or just wait for the next nightly until t

Re: static foreach is now in github master

2017-07-18 Thread Seb via Digitalmars-d-announce
On Tuesday, 18 July 2017 at 10:06:33 UTC, Vladimir Panteleev wrote: On Tuesday, 18 July 2017 at 10:02:10 UTC, Seb wrote: And thanks to dmd-nightly, also on run.dlang.io: https://run.dlang.io/?compiler=dmd-nightly&source=void%20main(string%5B%5D%20args)%0A%7B%0A%20%20%20%20static%20foreach%20(i;

Re: Release D 2.075.0 does not install on Windows 10 with VS2017

2017-07-20 Thread Seb via Digitalmars-d-announce
On Thursday, 20 July 2017 at 17:44:29 UTC, Jolly James wrote: On Thursday, 20 July 2017 at 16:28:54 UTC, jan wrote: seems like i am not the first one to have that problem. please fix. everything working fine from here :) Maybe you should state what exactly is not working for you and paste so

Re: static foreach is now in github master

2017-07-20 Thread Seb via Digitalmars-d-announce
On Thursday, 20 July 2017 at 19:53:46 UTC, Jack Stouffer wrote: On Tuesday, 18 July 2017 at 15:46:04 UTC, Seb wrote: https://is.gd/1TCQOh Hmmm, that code is printing 0 1 2 3 0 1 2 3 for me. Shouldn't it just be printing once? I bet you are using `rdmd`? It runs dmd twice on your main fil

Re: static foreach is now in github master

2017-07-20 Thread Seb via Digitalmars-d-announce
On Thursday, 20 July 2017 at 20:33:47 UTC, Steven Schveighoffer wrote: On 7/20/17 4:08 PM, Seb wrote: On Thursday, 20 July 2017 at 19:53:46 UTC, Jack Stouffer wrote: On Tuesday, 18 July 2017 at 15:46:04 UTC, Seb wrote: https://is.gd/1TCQOh Hmmm, that code is printing 0 1 2 3 0 1 2 3 for

Re: WebConfig - a vibe.d HTML form generator & validator from D structs

2017-07-21 Thread Seb via Digitalmars-d-announce
On Friday, 21 July 2017 at 15:16:30 UTC, NVolcz wrote: On Thursday, 20 July 2017 at 15:57:55 UTC, WebFreak001 wrote: [...] I am getting OpenSSL linker errors when I run "dub test": https://gist.github.com/NVolcz/d1731f92622b018e1cebbc42b195028c FYI: http://forum.dlang.org/post/ok29hs$iio$1..

Re: static foreach is now in github master

2017-07-22 Thread Seb via Digitalmars-d-announce
On Saturday, 22 July 2017 at 21:13:47 UTC, Steven Schveighoffer wrote: On Thursday, 20 July 2017 at 21:02:20 UTC, Seb wrote: Oh because I thought run.dlang.io wasn't using `rdmd`. However, there was a minor glitch today when I added support for flags and stdin to the docker images [2]. The goo

Re: H2 2017 Vision Document

2017-07-25 Thread Seb via Digitalmars-d-announce
On Tuesday, 25 July 2017 at 14:16:18 UTC, Atila Neves wrote: "We have added merge rights to three contributors and are looking for more" How would one go about volunteering? Atila Btw we have introduced a CODEOWNERS file at Phobos two weeks ago (druntime and dmd will come soon as well). Thi

Re: Vectorflow: a neural network library for sparse data from Netflix

2017-08-02 Thread Seb via Digitalmars-d-announce
On Wednesday, 2 August 2017 at 18:02:10 UTC, Ali Çehreli wrote: On 08/02/2017 10:40 AM, Benoit Rostykus wrote: Netflix is happy to open-source its first D library. Blog post: https://medium.com/@NetflixTechBlog/introducing-vectorflow-fe10d7f126b8 Repo: https://github.com/Netflix/vectorflow Am

Re: Beta D 2.075.1

2017-08-09 Thread Seb via Digitalmars-d-announce
On Tuesday, 8 August 2017 at 20:32:34 UTC, Martin Nowak wrote: On Tuesday, 8 August 2017 at 15:45:45 UTC, Vladimir Panteleev wrote: On Tuesday, 8 August 2017 at 14:57:58 UTC, Daniel Kozak wrote: https://issues.dlang.org/show_bug.cgi?id=17731 Thanks. I've submitted a fix. Thanks, considering

Re: I'm the new package maintainer for D on ArchLinux

2017-08-09 Thread Seb via Digitalmars-d-announce
On Wednesday, 9 August 2017 at 20:42:48 UTC, Wild wrote: Hi everyone, The D packages for ArchLinux has been orphaned since Dicebot stepped down as the maintainer and no one else stepped up. So I decided to step up and apply to become a Trusted User, and I got accepted yesterday[1]. So from no

Re: Release D 2.077.0

2017-11-03 Thread Seb via Digitalmars-d-announce
On Friday, 3 November 2017 at 14:00:38 UTC, Arun Chandrasekaran wrote: Mike, thanks for the blog post. Few lines about how the name mangling issue was addressed would've been interesting know on the blog. The regarding main PR contains a lot of info: https://github.com/dlang/dmd/pull/5855 Fo

GSoC 2018 - Your project ideas

2017-12-05 Thread Seb via Digitalmars-d-announce
Hi all, Google Summer of Code (GSoC) 2018 is about to start soon [1] (the application period for organizations is in January 2018). Hence, I would very happy about any project ideas you have or projects which are important to you. And, of course, if you would be willing to mentor a student, pl

Re: GSoC 2018 - Your project ideas

2017-12-10 Thread Seb via Digitalmars-d-announce
On Sunday, 10 December 2017 at 13:01:43 UTC, Mengu wrote: On Tuesday, 5 December 2017 at 18:20:40 UTC, Seb wrote: Hi all, Google Summer of Code (GSoC) 2018 is about to start soon [1] (the application period for organizations is in January 2018). Hence, I would very happy about any project idea

run.dlang.io - a modern way to run D code

2017-12-12 Thread Seb via Digitalmars-d-announce
After it has been in stealth mode for quite a while, I'm happy to announce that there's https://run.dlang.io === Features === * Color-highlighted DMD errors * Format source code with dfmt * Generate a short URL for link sharing * Import/Export to GitHub Gist * Typical key shortcuts like CTRL+En

Re: Released vibe.d 0.8.2

2017-12-12 Thread Seb via Digitalmars-d-announce
On Tuesday, 12 December 2017 at 19:44:17 UTC, Sönke Ludwig wrote: The major changes in this release are HTTP forward proxy support, handling incoming HTTP requests on custom transports and a MongoDB based session store. On top of that, there are many smaller improvements in the HTTP server, web

Re: run.dlang.io - a modern way to run D code

2017-12-12 Thread Seb via Digitalmars-d-announce
On Wednesday, 13 December 2017 at 00:32:11 UTC, rikki cattermole wrote: On 12/12/2017 6:37 PM, Seb wrote: === Supported D Compilers === * Latest DMD nightly * Latest DMD beta * Latest DMD * Latest LDC beta * Latest LDC The Docker images are rebuilt every day automatically. Can we please sele

Re: run.dlang.io - a modern way to run D code

2017-12-12 Thread Seb via Digitalmars-d-announce
On Wednesday, 13 December 2017 at 00:50:40 UTC, Meta wrote: This is a real life saver considering dpaste is blocked at work. It gets very tedious having to create a file, invoke the compiler, and run it in 3 separate steps just to test out some quick snippet. Great to hear that it's useful fo

Re: run.dlang.io - a modern way to run D code

2017-12-12 Thread Seb via Digitalmars-d-announce
On Wednesday, 13 December 2017 at 06:53:02 UTC, rikki cattermole wrote: On 13/12/2017 6:46 AM, bauss wrote: On Wednesday, 13 December 2017 at 01:14:26 UTC, Seb wrote: On Wednesday, 13 December 2017 at 00:32:11 UTC, rikki cattermole wrote: On 12/12/2017 6:37 PM, Seb wrote: === Supported D Comp

Re: run.dlang.io - a modern way to run D code

2017-12-13 Thread Seb via Digitalmars-d-announce
On Thursday, 14 December 2017 at 02:57:42 UTC, David Nadlinger wrote: On Wednesday, 13 December 2017 at 01:14:26 UTC, Seb wrote: Also the storage on the machine is limited and we can't drop an unlimited amount of Docker images there. Shouldn't the overhead from that be fairly manageable? After

Re: run.dlang.io - a modern way to run D code

2017-12-14 Thread Seb via Digitalmars-d-announce
On Thursday, 14 December 2017 at 13:22:54 UTC, Mengu wrote: On Thursday, 14 December 2017 at 06:43:58 UTC, Mike Franklin wrote: On Thursday, 14 December 2017 at 06:26:16 UTC, Seb wrote: It's interesting to see that no one complained about gdc not being there - I thought that this would be the

Re: run.dlang.io - a modern way to run D code

2017-12-17 Thread Seb via Digitalmars-d-announce
On Sunday, 17 December 2017 at 22:57:58 UTC, Walter Bright wrote: On 12/16/2017 2:45 AM, Iain Buclaw wrote: However dmd doesn't do assembly output. ;-) dmd -c test obj2asm test.obj >test.asm FYI: There's http://asm.dlang.org which seems to be a bit outdated. Moreover, there's an open issue

A list of all the awesome people who made D possible

2017-12-18 Thread Seb via Digitalmars-d-announce
D wouldn't be this powerful, rocking language as it is today without all its contributors who worked very hard on improving. To start showing our gratitude and as a token of appreciation, we have started listing all the awesome people who made D possible on dlang.org: https://dlang.org/contrib

Re: A list of all the awesome people who made D possible

2017-12-18 Thread Seb via Digitalmars-d-announce
On Monday, 18 December 2017 at 19:48:30 UTC, H. S. Teoh wrote: On Mon, Dec 18, 2017 at 03:58:59PM +, Seb via Digitalmars-d-announce wrote: D wouldn't be this powerful, rocking language as it is today without all its contributors who worked very hard on improving. To start showin

Re: A list of all the awesome people who made D possible

2017-12-18 Thread Seb via Digitalmars-d-announce
On Monday, 18 December 2017 at 19:32:16 UTC, Mengu wrote: On Monday, 18 December 2017 at 15:58:59 UTC, Seb wrote: D wouldn't be this powerful, rocking language as it is today without all its contributors who worked very hard on improving. To start showing our gratitude and as a token of apprecia

Re: A list of all the awesome people who made D possible

2017-12-18 Thread Seb via Digitalmars-d-announce
On Monday, 18 December 2017 at 21:34:25 UTC, Basile B. wrote: On Monday, 18 December 2017 at 15:58:59 UTC, Seb wrote: [...] There are a few dups: - "Adam D. Ruppe" and "adamdruppe" - "UplinkCoder" and "Stefan Koch" - "Hackerpilot" and "Brian Schott" - "Iain Buclaw" and "ibuclaw" - "Timothee C

DLang docker images for CircleCi 2.0

2018-01-03 Thread Seb via Digitalmars-d-announce
tl;dr: you can now use special D docker images for CircleCi 2.0 --- version: 2 jobs: build: docker: - image: dlang2/dmd-circleci --- Available tags -- The default tag (`latest`) is the last stable release. ### DMD ```yaml - image: dlang2/dmd-circleci:nightly - image:

Re: Release D 2.078.0

2018-01-03 Thread Seb via Digitalmars-d-announce
On Wednesday, 3 January 2018 at 17:43:36 UTC, Martin Nowak wrote: Glad to announce D 2.078.0. This release comes with runtime detection of Visual Studio installation paths, an integral promotion transition for unary operations on byte and short sized integers, more -betterC features, and a co

Re: Release D 2.078.0

2018-01-03 Thread Seb via Digitalmars-d-announce
On Wednesday, 3 January 2018 at 19:40:17 UTC, H. S. Teoh wrote: On Wed, Jan 03, 2018 at 06:43:36PM +0100, Martin Nowak via Digitalmars-d-announce wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Glad to announce D 2.078.0. Awesome! [...] https://dlang.org/contributors.html. [...] N

Re: DLang docker images for CircleCi 2.0

2018-01-06 Thread Seb via Digitalmars-d-announce
On Saturday, 6 January 2018 at 05:02:48 UTC, Jon Degenhardt wrote: On Wednesday, 3 January 2018 at 13:12:48 UTC, Seb wrote: tl;dr: you can now use special D docker images for CircleCi 2.0 [snip PS: I'm aware of Stefan Rohe's great D Docker images [1], but this Docker image is built on top of

Re: DLang docker images for CircleCi 2.0

2018-01-06 Thread Seb via Digitalmars-d-announce
On Thursday, 4 January 2018 at 12:18:13 UTC, aberba wrote: On Wednesday, 3 January 2018 at 13:12:48 UTC, Seb wrote: tl;dr: you can now use special D docker images for CircleCi 2.0 --- version: 2 jobs: build: docker: - image: dlang2/dmd-circleci --- [...] do you orchestrate your c

Re: [howto] Serve ddox documentation on github.io deployed by Travis CI

2018-01-08 Thread Seb via Digitalmars-d-announce
On Monday, 8 January 2018 at 22:06:44 UTC, Bastiaan Veelo wrote: I was looking for this, it wasn't there, so I wrote it myself. - You have a D poject on GitHub? - You want your documentation online? For free? - You think it should always be up to date without you lifting a finger? - You wonder

Re: [howto] Serve ddox documentation on github.io deployed by Travis CI

2018-01-08 Thread Seb via Digitalmars-d-announce
On Monday, 8 January 2018 at 22:20:37 UTC, Bastiaan Veelo wrote: On Monday, 8 January 2018 at 22:12:17 UTC, Seb wrote: On Monday, 8 January 2018 at 22:06:44 UTC, Bastiaan Veelo wrote: Here's how: https://gist.github.com/veelo/f7668510bad2e8c9212ab66104541fcc FYI: You could reduce the size of

Re: Another take on decimal data types

2018-01-11 Thread Seb via Digitalmars-d-announce
On Thursday, 11 January 2018 at 11:19:41 UTC, Robert M. Münch wrote: On 2018-01-08 22:16:25 +, rumbu said: This is my first D finalized project (+16k loc). Great stuff! Will this work in betterC mode? Side-Note: I'm always missing the betterC information or is the philosophy to just try

Re: [howto] Serve ddox documentation on github.io deployed by Travis CI

2018-01-12 Thread Seb via Digitalmars-d-announce
On Saturday, 13 January 2018 at 04:59:25 UTC, Martin Nowak wrote: On Wednesday, 10 January 2018 at 08:50:37 UTC, Bastiaan Veelo wrote: [...] What do you mean with "taking care of it"? It's a bit of a hen and egg problem, first you need a project before you can register it with code.dlang.org.

Re: run.dlang.io - a modern way to run D code

2018-01-13 Thread Seb via Digitalmars-d-announce
On Thursday, 14 December 2017 at 15:46:03 UTC, Walter Bright wrote: On 12/12/2017 10:37 AM, Seb wrote: After it has been in stealth mode for quite a while, I'm happy to announce that there's https://run.dlang.io Very impressive! Nice work! Can I add a suggestion? Have an option to show the as

run.dlang.io can now display ASM + AST + IR

2018-01-13 Thread Seb via Digitalmars-d-announce
It was bad weather in Munich on Saturday, so run.dlang.io got a couple of new cool features: 1) Assembly output https://run.dlang.io/is/qtk8Wq However, if you are seriously interested in looking at the ASM output, I recommend https://d.godbolt.org for LDC and GDC. 2) AST of DMD frontend (af

GSOC 2018 - Final call for project ideas and mentors

2018-01-18 Thread Seb via Digitalmars-d-announce
Hi all, Google Summer of Code (GSoC) 2018 is about to start soon [1] (the deadline for organizations is next Tuesday, 23.1). So if you have any project ideas or things that you consider important to the D ecosystem - please let me know! And, of course, if you would be willing to mentor a stud

Re: dub release package

2018-01-22 Thread Seb via Digitalmars-d-announce
On Monday, 22 January 2018 at 23:16:38 UTC, Arun Chandrasekaran wrote: I was looking at the recent DUB release for binary package of 1.7.1 at https://github.com/dlang/dub/releases The assets don't seem to contain the binary packages. Was it unnoticed or was it intentionally skipped? Mirrorin

  1   2   3   >