Re: Thank you Sociomantic for hosting DConf!

2017-05-09 Thread Nicholas Wilson via Digitalmars-d-announce

On Tuesday, 9 May 2017 at 08:18:45 UTC, Walter Bright wrote:

http://dconf.org/2017/index.html

This was a huge success, from the full house, to the great 
talks, the cameraderie, and to the tsunami of Pull Requests 
that resulted from Sunday's hackathon!


(Definitely the post-conference hackathon will become a 
standard part of the schedule!)


I hope everyone who attended had a pleasant journey back home.

And now, back to work! Looking forward to next year.


Seconded, it was the most fun I've had in a long time.
Looking forward to doing it again next year!

Nic


Re: Thank you Sociomantic for hosting DConf!

2017-05-09 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 9 May 2017 at 17:44:12 UTC, Steven Schveighoffer 
wrote:

On 5/9/17 6:17 AM, Martin Tschierschke wrote:

On Tuesday, 9 May 2017 at 08:18:45 UTC, Walter Bright wrote:

http://dconf.org/2017/index.html




Last wish: Please change the text on the home page :)

  DConf 2017 is coming up: May 4-7 in Berlin, Germany.
  Secure your seat before it's sold out!


It's on github, where's your PR? ;)

Actually, Vladimir already obliged.

https://github.com/dlang/dconf.org/pull/201

-Steve
Sorry, but my reference was misleading: please look at dlang.org, 
yes it is on github and yes I might figure out where, but I hope 
there will be someone who has it allready in his bookmarks, and 
don't need to try to clone it on an ipad :-)




Re: Thank you Sociomantic for hosting DConf!

2017-05-09 Thread Steven Schveighoffer via Digitalmars-d-announce

On 5/9/17 6:17 AM, Martin Tschierschke wrote:

On Tuesday, 9 May 2017 at 08:18:45 UTC, Walter Bright wrote:

http://dconf.org/2017/index.html

This was a huge success, from the full house, to the great talks, the
cameraderie, and to the tsunami of Pull Requests that resulted from
Sunday's hackathon!

(Definitely the post-conference hackathon will become a standard part
of the schedule!)

I hope everyone who attended had a pleasant journey back home.

And now, back to work! Looking forward to next year.

Yes, thank you everybody, who made this event happen.

Thank you, that it was in D. (short for Germany (Deutschland))
So it was easy to attend coming from Hamburg.

Specially, a big thank you to all the speakers, sharing their D experience.

Stay tuned for the announcement of the first great upcoming D Meet-up in
Hamburg :D

Last wish: Please change the text on the home page :)

  DConf 2017 is coming up: May 4-7 in Berlin, Germany.
  Secure your seat before it's sold out!


It's on github, where's your PR? ;)

Actually, Vladimir already obliged.

https://github.com/dlang/dconf.org/pull/201

-Steve



Re: Mir Algorithm v0.5.8: Interpolation, Timeseries and 17 new functions

2017-05-09 Thread 9il via Digitalmars-d-announce

On Tuesday, 9 May 2017 at 17:35:18 UTC, 9il wrote:

OK, I changed return type for *Pos functions.
No they return positions :-)


Now*



Re: Mir Algorithm v0.5.8: Interpolation, Timeseries and 17 new functions

2017-05-09 Thread 9il via Digitalmars-d-announce

On Monday, 8 May 2017 at 14:26:35 UTC, jmh530 wrote:

On Monday, 8 May 2017 at 08:51:32 UTC, 9il wrote:

## New modules
...


Great work.

Some comments:

mir.timeseries is a welcome addition. Calling (time, data) 
pairs moments will confuse because moment has another meaning 
in statistics. Perhaps observation?


Thanks. Fixed.
Also, Series might also include data labels for columns. And 
access by data label.


I do not see good @nogc solution for now. PRs are welcome!


The second part of the example for
mir.ndslice.topology: slide
is not that intuitive. It seems like what you're basically 
doing is the same as

assert(sw == [8, 12, 16, 20, 24, 28, 32, 36]);
(or something) but it's just less obvious to do it by a formula.


Fixed

I don't know how strongly I feel about this, but I find the 
naming between minIndex/maxIndex and minPos/maxPos and 
minmaxIndex/minmaxPos strange. All three produce indices, it's 
just that the Pos do it backwards and minmax give both min and 
max. It seems like a lot of separate functions for things that 
could be done with one multi-purpose template. Regardless, if 
you keep it the way it is, then maybe given the plethora of 
finding functions, split it off to a separate module?


OK, I changed return type for *Pos functions.
No they return positions :-)

Thank you for the comments!

Best,
Ilya


Re: Working code in an upcoming PR by Timon Gehr

2017-05-09 Thread Yuxuan Shui via Digitalmars-d-announce

On Tuesday, 9 May 2017 at 13:19:09 UTC, Timon Gehr wrote:

On 07.05.2017 19:03, Stanislav Blinov wrote:
On Sunday, 7 May 2017 at 16:57:58 UTC, Andrei Alexandrescu 
wrote:

[...]


I see only unsurprising Jpeg artifacts and not much more :)
It's too low resolution to make anything out.


It's approximately this:

---
alias Seq(T...)=T;

void main(){
import std.stdio: writeln;
import std.conv: to;
static foreach(i;Seq!(0,1,2)){
mixin(`int x`~to!string(i)~" = i;");
}
writeln(x0," ",x1," ",x2);
}

---
./src/dmd -run staticforeach.d
DMD v2.075.0-devel-fd4ff76 DEBUG
0 1 2
---

That was the first test case that worked.
I have made it almost feature-complete yesterday:

https://github.com/tgehr/dmd/blob/static-foreach/test_staticforeach.d


Yes! Finally!


D language usage by hour of the day and workday/weekend

2017-05-09 Thread Juanjo Alvarez via Digitalmars-d-announce
A coworker from the data science department of my company did 
some commit-crunching and plotting over 452 million commits on 
github:


https://www.reddit.com/r/programming/comments/6a5bb8/workdays_vs_weekends_morning_vs_night_github/

Looks like (PST timezone) D programmers are more active from 
15:00 to 01:00 and weekends!





Re: Working code in an upcoming PR by Timon Gehr

2017-05-09 Thread Timon Gehr via Digitalmars-d-announce

On 07.05.2017 19:03, Stanislav Blinov wrote:

On Sunday, 7 May 2017 at 16:57:58 UTC, Andrei Alexandrescu wrote:

Zoom in on the screen for a nice surprise! http://imgur.com/a/qjI4l --
Andrei


I see only unsurprising Jpeg artifacts and not much more :)
It's too low resolution to make anything out.


It's approximately this:

---
alias Seq(T...)=T;

void main(){
import std.stdio: writeln;
import std.conv: to;
static foreach(i;Seq!(0,1,2)){
mixin(`int x`~to!string(i)~" = i;");
}
writeln(x0," ",x1," ",x2);
}

---
./src/dmd -run staticforeach.d
DMD v2.075.0-devel-fd4ff76 DEBUG
0 1 2
---

That was the first test case that worked.
I have made it almost feature-complete yesterday:

https://github.com/tgehr/dmd/blob/static-foreach/test_staticforeach.d


Re: Thank you Sociomantic for hosting DConf!

2017-05-09 Thread Martin Tschierschke via Digitalmars-d-announce

On Tuesday, 9 May 2017 at 08:18:45 UTC, Walter Bright wrote:

http://dconf.org/2017/index.html

This was a huge success, from the full house, to the great 
talks, the cameraderie, and to the tsunami of Pull Requests 
that resulted from Sunday's hackathon!


(Definitely the post-conference hackathon will become a 
standard part of the schedule!)


I hope everyone who attended had a pleasant journey back home.

And now, back to work! Looking forward to next year.

Yes, thank you everybody, who made this event happen.

Thank you, that it was in D. (short for Germany (Deutschland))
So it was easy to attend coming from Hamburg.

Specially, a big thank you to all the speakers, sharing their D 
experience.


Stay tuned for the announcement of the first great upcoming D 
Meet-up in Hamburg :D


Last wish: Please change the text on the home page :)

  DConf 2017 is coming up: May 4-7 in Berlin, Germany.
  Secure your seat before it's sold out!

To something like:
  DConf 2017 was a great success, more then ... participants, 
watch recorded videos here.




Re: Thank you Sociomantic for hosting DConf!

2017-05-09 Thread Joakim via Digitalmars-d-announce

On Tuesday, 9 May 2017 at 08:18:45 UTC, Walter Bright wrote:

http://dconf.org/2017/index.html

This was a huge success, from the full house, to the great 
talks, the cameraderie, and to the tsunami of Pull Requests 
that resulted from Sunday's hackathon!


(Definitely the post-conference hackathon will become a 
standard part of the schedule!)


I hope everyone who attended had a pleasant journey back home.

And now, back to work! Looking forward to next year.


Yes, I was able to stream many of the talks, thanks from the 
online viewers too.


Thank you Sociomantic for hosting DConf!

2017-05-09 Thread Walter Bright via Digitalmars-d-announce

http://dconf.org/2017/index.html

This was a huge success, from the full house, to the great talks, the 
cameraderie, and to the tsunami of Pull Requests that resulted from Sunday's 
hackathon!


(Definitely the post-conference hackathon will become a standard part of the 
schedule!)


I hope everyone who attended had a pleasant journey back home.

And now, back to work! Looking forward to next year.