Re: Dub, Cargo, Go, Gradle, Maven

2018-02-14 Thread Pjotr Prins via Digitalmars-d
On Thursday, 15 February 2018 at 04:11:51 UTC, Graham St Jack wrote: Maybe a compromise position would be for a package management system to define an interface through which it can do things like: * Discover what the external dependencies are, * Provide those external dependencies, and * In

Re: Dub, Cargo, Go, Gradle, Maven

2018-02-14 Thread Graham St Jack via Digitalmars-d
On Tue, 13 Feb 2018 10:21:49 +, Abdulhaq wrote: > On Tuesday, 13 February 2018 at 10:06:43 UTC, welkam wrote: >> ADG? Google doesnt find anything relevant > > Acyclic directed graph A.K.A "DAG" - directed acyclic graph. I am also interested in build systems, and am currently convinced that

Re: Multiple Alis

2018-02-14 Thread Ali By via Digitalmars-d
On Tuesday, 13 February 2018 at 02:38:56 UTC, Walter Bright wrote: We can definitely use some more awesome Alis! I'm pretty awsesome too. Ali.

Re: Multiple Alis

2018-02-14 Thread Ali Baba via Digitalmars-d
On Thursday, 15 February 2018 at 01:32:21 UTC, Ali By wrote: On Tuesday, 13 February 2018 at 02:38:56 UTC, Walter Bright wrote: We can definitely use some more awesome Alis! I'm pretty awsesome too. Ali. Huh? What you talking about? I am the awesome one! Ali.

Re: Multiple Alis

2018-02-14 Thread aliak via Digitalmars-d
On Tuesday, 13 February 2018 at 18:14:08 UTC, Ali Çehreli wrote: On 02/13/2018 03:05 AM, Andrea Fontana wrote: > I read this thread just because it was so strange that Ali was calling > "Multiple Alias This" in this way. I like it! :) Actually, I tried to make a code joke for this thread with

Re: Flow-Design: OOP component programming

2018-02-14 Thread Ola Fosheim Grøstad via Digitalmars-d
On Wednesday, 14 February 2018 at 18:43:34 UTC, Mark wrote: Luna [1], a new programming language that was recently mentioned on Reddit, also appears to take this "flow-oriented design" approach. It's purely functional, not OO, and I'm curious to see how it evolves. [1] http://www.luna-lang.or

Re: Flow-Design: OOP component programming

2018-02-14 Thread Mark via Digitalmars-d
On Wednesday, 14 February 2018 at 19:53:31 UTC, H. S. Teoh wrote: On Wed, Feb 14, 2018 at 06:43:34PM +, Mark via Digitalmars-d wrote: On Wednesday, 14 February 2018 at 09:39:20 UTC, Luís Marques wrote: > It seems that someone once again rediscovered the benefits > of component programming,

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Jon Degenhardt via Digitalmars-d
On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor. https://www.epsrc.ac.uk/newsevents/news/single-trapped-atom-captures-science-photography-competitions-top-prize/ Ali More than cool!! Congrats David!

Re: How to represent multiple files in a forum post?

2018-02-14 Thread Jonathan Marler via Digitalmars-d
On Wednesday, 14 February 2018 at 20:16:32 UTC, John Gabriele wrote: Can the har file delimiter be more than three characters? Yes. So long as the delimiter is the consistent across the whole file, i.e. file1 file2 (See https://github.com/marler8997/har#custom-delimiters)

Re: Multiple Alis

2018-02-14 Thread aberba via Digitalmars-d
On Tuesday, 13 February 2018 at 04:33:54 UTC, Nick Sabalausky (Abscissa) wrote: On 02/12/2018 09:38 PM, Walter Bright wrote: On 2/12/2018 4:47 PM, Ali Çehreli wrote: Nothing serious but in case you are confused, there are at least three separate and awesome Alis frequenting these newsgroups. :

Re: How to represent multiple files in a forum post?

2018-02-14 Thread John Gabriele via Digitalmars-d
On Wednesday, 14 February 2018 at 18:33:23 UTC, Jonathan Marler wrote: @timotheecour and I came up with a solution to a common problem: How to represent multiple files in a forum post? So we decided to take a stab at creating a standard! (queue links to https://xkcd.com/927) We're calling it

Re: Flow-Design: OOP component programming

2018-02-14 Thread H. S. Teoh via Digitalmars-d
On Wed, Feb 14, 2018 at 06:43:34PM +, Mark via Digitalmars-d wrote: > On Wednesday, 14 February 2018 at 09:39:20 UTC, Luís Marques wrote: > > It seems that someone once again rediscovered the benefits of > > component programming, in the context of OOP, but (as usual) without > > the more mathe

Re: How to represent multiple files in a forum post?

2018-02-14 Thread Jonathan Marler via Digitalmars-d
On Wednesday, 14 February 2018 at 18:52:35 UTC, user1234 wrote: On Wednesday, 14 February 2018 at 18:47:31 UTC, Jonathan Marler wrote: On Wednesday, 14 February 2018 at 18:44:06 UTC, user1234 wrote: how does it mix with markdown, html etc ? They'll have to use escapes to be compliant, haven't t

Re: How to represent multiple files in a forum post?

2018-02-14 Thread user1234 via Digitalmars-d
On Wednesday, 14 February 2018 at 18:47:31 UTC, Jonathan Marler wrote: On Wednesday, 14 February 2018 at 18:44:06 UTC, user1234 wrote: how does it mix with markdown, html etc ? They'll have to use escapes to be compliant, haven't they ? Works great with mardown. ``` --- file1 Contents of file

Re: How to represent multiple files in a forum post?

2018-02-14 Thread Vladimir Panteleev via Digitalmars-d
On Wednesday, 14 February 2018 at 18:33:23 UTC, Jonathan Marler wrote: @timotheecour and I came up with a solution to a common problem: How to represent multiple files in a forum post? I've been using: https://github.com/CyberShadow/misc/blob/master/dir2bug.d Looks pretty similar to har, but

Re: How to represent multiple files in a forum post?

2018-02-14 Thread Jonathan Marler via Digitalmars-d
On Wednesday, 14 February 2018 at 18:44:06 UTC, user1234 wrote: how does it mix with markdown, html etc ? They'll have to use escapes to be compliant, haven't they ? Works great with mardown. ``` --- file1 Contents of file1 --- file2 Contents of file2 ```

Re: How to represent multiple files in a forum post?

2018-02-14 Thread Jonathan Marler via Digitalmars-d
On Wednesday, 14 February 2018 at 18:45:59 UTC, Seb wrote: On Wednesday, 14 February 2018 at 18:33:23 UTC, Jonathan Marler wrote: @timotheecour and I came up with a solution to a common problem: How to represent multiple files in a forum post? What's wrong with https://gist.github.com? I'm

Re: How to represent multiple files in a forum post?

2018-02-14 Thread Seb via Digitalmars-d
On Wednesday, 14 February 2018 at 18:33:23 UTC, Jonathan Marler wrote: @timotheecour and I came up with a solution to a common problem: How to represent multiple files in a forum post? What's wrong with https://gist.github.com? FYI: I have it on my agenda to work with Vladimir to add run.dla

Re: How to represent multiple files in a forum post?

2018-02-14 Thread user1234 via Digitalmars-d
On Wednesday, 14 February 2018 at 18:33:23 UTC, Jonathan Marler wrote: @timotheecour and I came up with a solution to a common problem: How to represent multiple files in a forum post? So we decided to take a stab at creating a standard! (queue links to https://xkcd.com/927) We're calling it

Re: Flow-Design: OOP component programming

2018-02-14 Thread Mark via Digitalmars-d
On Wednesday, 14 February 2018 at 09:39:20 UTC, Luís Marques wrote: It seems that someone once again rediscovered the benefits of component programming, in the context of OOP, but (as usual) without the more mathematical and principled approach of something like ranges and algorithms: [...]

How to represent multiple files in a forum post?

2018-02-14 Thread Jonathan Marler via Digitalmars-d
@timotheecour and I came up with a solution to a common problem: How to represent multiple files in a forum post? So we decided to take a stab at creating a standard! (queue links to https://xkcd.com/927) We're calling it "har" (inspired by the name tar). Here's the REPO: https://github.com/

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread user1234 via Digitalmars-d
On Wednesday, 14 February 2018 at 17:58:49 UTC, Meta wrote: On Wednesday, 14 February 2018 at 16:45:49 UTC, user1234 wrote: On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longt

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Meta via Digitalmars-d
On Wednesday, 14 February 2018 at 16:45:49 UTC, user1234 wrote: On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the am

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread user1234 via Digitalmars-d
On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the amount of media interest this has attracted. ;) — David Damn

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread data pulverizer via Digitalmars-d
On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor. https://www.epsrc.ac.uk/newsevents/news/single-trapped-atom-captures-science-photography-competitions-top-prize/ Ali Well done David. I saw this news on my twitter feed and t

Re: Flow-Design: OOP component programming

2018-02-14 Thread psychoticRabbit via Digitalmars-d
On Wednesday, 14 February 2018 at 09:39:20 UTC, Luís Marques wrote: It seems that someone once again rediscovered the benefits of component programming, in the context of OOP, but (as usual) without the more mathematical and principled approach of something like ranges and algorithms:

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Sönke Ludwig via Digitalmars-d
Am 14.02.2018 um 02:11 schrieb David Nadlinger: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the amount of media interest this has attracted. ;)  — David Also saw it cited by severa

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Andrea Fontana via Digitalmars-d
On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor. https://www.epsrc.ac.uk/newsevents/news/single-trapped-atom-captures-science-photography-competitions-top-prize/ Ali Hey I read that news, but I didn't realize it was that Da

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Chris via Digitalmars-d
On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the amount of media interest this has attracted. ;) — David Congr

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Joakim via Digitalmars-d
On Wednesday, 14 February 2018 at 09:09:32 UTC, Mike Franklin wrote: On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at t

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread 9il via Digitalmars-d
On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor. https://www.epsrc.ac.uk/newsevents/news/single-trapped-atom-captures-science-photography-competitions-top-prize/ Ali Fantastic! Congratulations!

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Luís Marques via Digitalmars-d
On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the amount of media interest this has attracted. ;) Nice! Congratula

Flow-Design: OOP component programming

2018-02-14 Thread Luís Marques via Digitalmars-d
It seems that someone once again rediscovered the benefits of component programming, in the context of OOP, but (as usual) without the more mathematical and principled approach of something like ranges and algorithms:

Re: A betterC base

2018-02-14 Thread JN via Digitalmars-d
On Friday, 9 February 2018 at 16:54:35 UTC, Seb wrote: FYI: and for the lazy ones, there will hopefully be std.experimental.scripting soon: https://github.com/dlang/phobos/pull/5916 Shouldn't something like this be handled by better tooling (i.e. IDEs)? In Java you have to import every sin

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Nicholas Wilson via Digitalmars-d
On Wednesday, 14 February 2018 at 09:09:32 UTC, Mike Franklin wrote: On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at t

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Mike Franklin via Digitalmars-d
On Wednesday, 14 February 2018 at 01:11:33 UTC, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the amount of media interest this has attracted. ;) David, this is s

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Nick Sabalausky (Abscissa) via Digitalmars-d
On 02/14/2018 03:44 AM, Nick Sabalausky (Abscissa) wrote: On 02/13/2018 08:11 PM, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the amount of media interest this ha

Re: OT: Photo of a single atom by David Nadlinger wins top prize

2018-02-14 Thread Nick Sabalausky (Abscissa) via Digitalmars-d
On 02/13/2018 08:11 PM, David Nadlinger wrote: On Tuesday, 13 February 2018 at 23:09:07 UTC, Ali Çehreli wrote: David (aka klickverbot) is a longtime D contributor […] … who is slightly surprised at the amount of media interest this has attracted. ;)  — David Heh, dude, you photographed