Re: Google Summer of Code 2016

2016-01-15 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 15:11:39 UTC, Tavi wrote: On Thursday, 14 January 2016 at 18:56:21 UTC, Craig Dillabaugh wrote: Deadline is getting closer, any new project ideas are welcome. Starting to get some contact from students now. FlatBuffers for DLang -

Re: Google Summer of Code 2016

2016-01-15 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 20:20:29 UTC, Jacob Carlborg wrote: On 2016-01-15 13:36, Andrei Alexandrescu wrote: I recall there has been one (or two?) unsuccessful attempts. -- Andrei Yes, twice. It mainly needs to be rangified. How much work do you think that would involve? Would it be

Re: Google Summer of Code 2016

2016-01-15 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 20:46:59 UTC, Tavi wrote: On Friday, 15 January 2016 at 16:06:00 UTC, Craig Dillabaugh wrote: On Friday, 15 January 2016 at 15:11:39 UTC, Tavi wrote: On Thursday, 14 January 2016 at 18:56:21 UTC, Craig Dillabaugh wrote: Deadline is getting closer, any new project

Re: Google Summer of Code 2016

2016-01-14 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 03:33:23 UTC, Andrei Alexandrescu wrote: On 01/14/2016 01:56 PM, Craig Dillabaugh wrote: Deadline is getting closer, any new project ideas are welcome. Starting to get some contact from students now. A few quick ideas: * Bringing a parser generator library into

Re: Google Summer of Code 2016

2016-01-14 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 31 December 2015 at 23:58:32 UTC, Craig Dillabaugh wrote: The deadline for the Google Summer of Code, 2016 is February 19th. Which means we have about a month and a half to put something together. For the time being I've recycled last years projects (with one dropped so far):

Re: Google Summer of Code 2016

2016-01-05 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 6 January 2016 at 02:27:05 UTC, Rikki Cattermole wrote: On 06/01/16 11:28 AM, Laeeth Isharc wrote: On Monday, 4 January 2016 at 22:58:43 UTC, CraigDillabaugh clip For Android you really need an easy way to interface with JNI. And that means another library. There is a library

Google Summer of Code 2016

2015-12-31 Thread Craig Dillabaugh via Digitalmars-d
The deadline for the Google Summer of Code, 2016 is February 19th. Which means we have about a month and a half to put something together. For the time being I've recycled last years projects (with one dropped so far): http://wiki.dlang.org/GSOC_2016_Ideas#Ideas Since we were rejected with,

Re: How is D doing?

2015-12-23 Thread Craig Dillabaugh via Digitalmars-d-learn
On Thursday, 24 December 2015 at 00:16:16 UTC, rsw0x wrote: On Tuesday, 22 December 2015 at 21:38:22 UTC, ZombineDev wrote: On Tuesday, 22 December 2015 at 17:49:34 UTC, Jakob Jenkov wrote: clip removed C++ because it just dwarfs the others. D, as I expected, has a massive following in

Re: Three people out of four dislike SDL

2015-12-01 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 1 December 2015 at 23:34:12 UTC, Gary Willoughby wrote: I think the default should be the obscure, hipster language that no-one has heard of and who's website is currently offline[1]. Using this language for dub configuration should increase the barrier-to-entry just enough to weed

Re: I hate new DUB config format

2015-11-30 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 1 December 2015 at 04:54:23 UTC, James Hofmann wrote: FWIW, I'm tempted to take the side of "make JS the default, compile existing SDL and JSON to JS when run, add compilers for TOML or YAML if there's demand". If you make code your lowest common denominator, nothing else

Google Summer of Code 2016 Ideas Page

2015-11-05 Thread Craig Dillabaugh via Digitalmars-d-announce
The ideas page for the 2016 Google Summer of Code is now up: http://wiki.dlang.org/GSOC_2016_Ideas Right now it is remarkably similar to the 2015 page! The Google folks seem rather busy, so maybe no one would notice, but if anyone has ideas for new projects that would be fantastic. Also,

Re: std.data.json formal review

2015-08-13 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 14 August 2015 at 00:16:47 UTC, Walter Bright wrote: On 8/13/2015 5:22 AM, CraigDillabaugh wrote: No configuration file should be in a format that doesn't support comments. [ comment : and you thought it couldn't have comments! ] You are cheating :o) There do seem to be some

Re: DUB linking to local library

2015-08-04 Thread Craig Dillabaugh via Digitalmars-d-learn
On Tuesday, 4 August 2015 at 08:18:58 UTC, John Colvin wrote: On Tuesday, 4 August 2015 at 03:20:38 UTC, Craig Dillabaugh wrote: I can now run it with: LD_LIBRARY_PATH=/home/craig2/code/gdal-2.0.0/lib64 ./gdaltest But it appears the LD_LIBRARY_PATH hack is causing havoc with other libraries,

Re: DUB linking to local library

2015-08-04 Thread Craig Dillabaugh via Digitalmars-d-learn
On Tuesday, 4 August 2015 at 04:21:27 UTC, Joakim Brännström wrote: On Tuesday, 4 August 2015 at 03:20:38 UTC, Craig Dillabaugh wrote: clip Linkers, so fun they are... https://wiki.debian.org/RpathIssue As you can see in the search order RPATH takes precedence over LD_LIBRARY_PATH. If we

DUB linking to local library

2015-08-03 Thread Craig Dillabaugh via Digitalmars-d-learn
I have been writing bindings for the GDAL library (www.gdal.org). I recently updated my bindings to the latest release of GDAL (2.0). Before adding my bindings to code.dlang.org I want to run some tests. I've built GDAL2 locally and want to link my bindings to this library. However, I

Re: DUB linking to local library

2015-08-03 Thread Craig Dillabaugh via Digitalmars-d-learn
On Tuesday, 4 August 2015 at 02:45:21 UTC, Joakim Brännström wrote: On Tuesday, 4 August 2015 at 02:26:17 UTC, Craig Dillabaugh wrote: So how can I force my application to link to my local copy of GDAL2 at /home/craig2/code/gdal-2.0.0/lib64. Any help is appreciated. Hi, I recently ran into

Re: Binding Nested C Structs

2015-07-09 Thread Craig Dillabaugh via Digitalmars-d-learn
On Friday, 10 July 2015 at 03:38:49 UTC, Craig Dillabaugh wrote: I am trying to bind to a C union with a number of nested structs declared as follows: typedef union { int Integer; struct { int nCount; int *paList; } IntegerList; struct {

Binding Nested C Structs

2015-07-09 Thread Craig Dillabaugh via Digitalmars-d-learn
I am trying to bind to a C union with a number of nested structs declared as follows: typedef union { int Integer; struct { int nCount; int *paList; } IntegerList; struct { int nCount; GIntBig *paList; } Integer64List; }

Re: Martin Nowak is officially MIA

2015-06-18 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 17 June 2015 at 18:35:48 UTC, Andrei Alexandrescu wrote: On 6/17/15 5:38 AM, IgorStepanov wrote: He returned back to github and posted some messages. End alarm:) Glad to hear that. However, the need for two other release managers is still there. The role of Release Manager

Re: Martin Nowak is officially MIA

2015-06-18 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 18 June 2015 at 14:43:15 UTC, Andrei Alexandrescu wrote: Thanks all for the feedback; a follow up is in order seeing as there are a few misunderstandings of the situation. [...] clip Yah, ideally the autotester would just build the release as well for each platform on the same

Re: std.xml2 (collecting features)

2015-05-09 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 9 May 2015 at 10:28:53 UTC, Joakim wrote: On Monday, 4 May 2015 at 18:50:43 UTC, Marco Leise wrote: On Sunday, 3 May 2015 at 17:47:15 UTC, Joakim wrote: clip Remember that while JSON is simpler, XML is not just a structured container for bool, Number and String data. It comes

Re: Converting void* to D array

2015-04-14 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 15 April 2015 at 04:43:39 UTC, Daniel Kozák wrote: On Wed, 15 Apr 2015 04:24:20 + Craig Dillabaugh via Digitalmars-d-learn digitalmars-d-learn@puremagic.com wrote: Hi. I want to call a C library function that returns a data buffer as a void*. How do I convert the resulting

Converting void* to D array

2015-04-14 Thread Craig Dillabaugh via Digitalmars-d-learn
Hi. I want to call a C library function that returns a data buffer as a void*. How do I convert the resulting void* into something I can process in D? //I have the following function from the GDAL C library. extern(C) CPLErr GDALReadBlock( GDALRasterBandH, int, int, void* ); So I have

Re: Dgame RC #1

2015-04-03 Thread Craig Dillabaugh via Digitalmars-d-announce
One small note about the tutorials. In the tutorial on Game Loop and Event handling: http://rswhite.de/dgame5/?page=tutorialtut=handle_events In the first example, I believe you are missing an import for Dgame.Window.Event. It shows up int the second example, so no big deal, but I figured I

Re: Dgame RC #1

2015-04-02 Thread Craig Dillabaugh via Digitalmars-d-announce
On Thursday, 2 April 2015 at 18:49:15 UTC, Namespace wrote: The master branch should now make an automatic downgrade. I am still using rc1 but managed to get everything working. I built SDL(and the other libraries) from source and now everything works great. Thanks for your help. Craig

Re: Dgame RC #1

2015-04-01 Thread Craig Dillabaugh via Digitalmars-d-announce
On Wednesday, 1 April 2015 at 18:30:01 UTC, Namespace wrote: Since the weekend Dgame went into the release phase: https://github.com/Dgame/Dgame/releases/tag/v0.5.0-rc.1 http://dgame-dev.de/?page=download The Website (http://dgame-dev.de/) is fully updated and should be useable on every

Re: Dgame RC #1

2015-04-01 Thread Craig Dillabaugh via Digitalmars-d-announce
On Thursday, 2 April 2015 at 02:36:52 UTC, Craig Dillabaugh wrote: On Wednesday, 1 April 2015 at 18:30:01 UTC, Namespace wrote: Since the weekend Dgame went into the release phase: https://github.com/Dgame/Dgame/releases/tag/v0.5.0-rc.1 http://dgame-dev.de/?page=download The Website

Re: They wrote the fastest parallelized BAM parser in D

2015-03-30 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 30 March 2015 at 22:55:37 UTC, lobo wrote: On Monday, 30 March 2015 at 20:25:33 UTC, CraigDillabaugh wrote: On Monday, 30 March 2015 at 20:09:35 UTC, Laeeth Isharc wrote: clip You're right about the lack of visualization being a shame. I have been thinking about porting Bokeh

Contributing to Phobos Documentation

2015-03-21 Thread Craig Dillabaugh via Digitalmars-d-learn
Motivated by this thread: http://forum.dlang.org/thread/measc3$qic$1...@digitalmars.com I was hoping to see if I could do some work on the Phobos documentation, but I am curious to know what the easiest way for someone with limited/no ddoc experience to get involved in this would be. I

Re: Contributing to Phobos Documentation

2015-03-21 Thread Craig Dillabaugh via Digitalmars-d-learn
On Saturday, 21 March 2015 at 21:53:00 UTC, H. S. Teoh wrote: On Sat, Mar 21, 2015 at 05:48:40PM +, Craig Dillabaugh via Digitalmars-d-learn wrote: Motivated by this thread: http://forum.dlang.org/thread/measc3$qic$1...@digitalmars.com I was hoping to see if I could do some work

Re: Dlang seems like java now,but why not let d more like C# Style?

2015-03-14 Thread Craig Dillabaugh via Digitalmars-d-learn
On Saturday, 14 March 2015 at 09:59:05 UTC, dnewer wrote: yes,java is good lang,but i dont think it's better than c#,if no oracle or google support java will less and less. C# is a good and easy lang. i like C# . but,C# cant compiled to native code. So far, I have been searching for a

Re: GSoC 2015 - Application Rejected

2015-03-02 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 3 March 2015 at 01:07:25 UTC, Martin Nowak wrote: On 03/03/2015 01:45 AM, Andrei Alexandrescu wrote: Comparing our application with that of the accepted language projects might yield some insight. I ran a cursory read of Clojure's idea page and on first sight it seems comparable

Re: GSoC 2015 - Application Rejected

2015-03-02 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 3 March 2015 at 01:03:21 UTC, Martin Nowak wrote: On 03/03/2015 01:42 AM, Andrei Alexandrescu wrote: We've done well, I think, in 2011 and 2012 (except for the one student who failed to deliver) so something about our reporting might have failed GSoC's expectations. Are there

Re: Google Summer of Code - Again

2015-02-18 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 17 February 2015 at 11:52:15 UTC, Russel Winder wrote: On Mon, 2015-02-16 at 21:20 +, CraigDillabaugh via Digitalmars-d wrote: […] I haven't yet heard from Martin on his Melange name. Do you mind me putting your name down as assistant administrator if by submission time I

Re: Google Summer of Code - Again

2015-02-18 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 19 February 2015 at 04:28:35 UTC, Craig Dillabaugh wrote: On Tuesday, 17 February 2015 at 11:52:15 UTC, Russel Winder wrote: On Mon, 2015-02-16 at 21:20 +, CraigDillabaugh via Digitalmars-d wrote: […] I haven't yet heard from Martin on his Melange name. Do you mind me

Re: Botan Crypto and TLS for D

2015-02-18 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 18 February 2015 at 04:17:16 UTC, Rikki Cattermole wrote: On 18/02/2015 5:01 p.m., Etienne Cimon wrote: On 2015-02-17 20:54, Rikki Cattermole wrote: On 18/02/2015 10:00 a.m., Etienne wrote: I'd like to announce the first release of Botan, which implements all features of

Re: Botan Crypto and TLS for D

2015-02-18 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 18 February 2015 at 04:17:16 UTC, Rikki Cattermole wrote: On 18/02/2015 5:01 p.m., Etienne Cimon wrote: On 2015-02-17 20:54, Rikki Cattermole wrote: On 18/02/2015 10:00 a.m., Etienne wrote: I'd like to announce the first release of Botan, which implements all features of

Re: Packt is looking for someone to author a Learning D

2015-02-15 Thread Craig Dillabaugh via Digitalmars-d-announce
On Sunday, 15 February 2015 at 11:36:22 UTC, Russel Winder wrote: On Sun, 2015-02-15 at 04:38 +, Craig Dillabaugh via Digitalmars-d-announce wrote: […] Well, if you do the document with Latex on git (or some similar version control), you get most of the same stuff. Latex has a comment

Re: Consistency

2015-02-15 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 15 February 2015 at 18:45:45 UTC, bearophile wrote: Meta: Oh, whoops. I mixed up average-case complexity with worst-case. Although, isn't lookup O(n) in the worst case for hash tables? D associative arrays used to be O(1) amortized and O(n ln n) in worst case. Now they are O(1)

Re: Google Summer of Code - Again

2015-02-14 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 14 February 2015 at 06:56:00 UTC, Russel Winder wrote: Craig, I have signed up on Melange as a potential mentor, user name russel_winder. Thank you.

Re: Packt is looking for someone to author a Learning D

2015-02-14 Thread Craig Dillabaugh via Digitalmars-d-announce
On Saturday, 14 February 2015 at 18:15:09 UTC, Vladimir Panteleev wrote: On Saturday, 14 February 2015 at 17:04:24 UTC, Russel Winder wrote: Obviously XeLaTeX is the correct medium, but AsciiDoc is acceptable as a second best. During the editing of the Russian translation of TDPL, I've

Re: Testing package proposed for Phobos

2015-02-08 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 9 February 2015 at 01:41:33 UTC, Walter Bright wrote: More and more, D code is written as a component that takes a type parameters that are ranges. Unit testing becomes inconvenient, as types must be mocked up to call them. Using an array of data often is inadequate, because the

Re: Renaming DMD File Extensions from C to C++

2015-02-07 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 7 February 2015 at 06:23:43 UTC, ketmar wrote: On Fri, 06 Feb 2015 18:48:16 +, deadalnix wrote: Well you are talking for talking, we are waiting on your awesome PRs. easy deal. and i'm waiting for Andrei and Walter preapprovement. i'm not interested in writing code for

Re: Google Summer of Code - Again

2015-02-05 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 6 February 2015 at 00:23:59 UTC, Rikki Cattermole wrote: On 6/02/2015 9:30 a.m., CraigDillabaugh wrote: On Friday, 30 January 2015 at 04:32:14 UTC, Craig Dillabaugh wrote: It seems like its been too long since I posted asking for GSOC help. The start of submissions for the 2015

Re: Google Summer of Code - Again

2015-01-31 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 31 January 2015 at 08:57:15 UTC, Martin Nowak wrote: On Friday, 30 January 2015 at 14:11:27 UTC, CraigDillabaugh wrote: http://en.flossmanuals.net/GSoCMentoring/managing-the-mentors/ Sounds good, count me in. Thank you very much.

Re: Google Summer of Code - Again

2015-01-31 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 30 January 2015 at 22:30:18 UTC, Rikki Cattermole wrote: On 31/01/2015 3:24 a.m., CraigDillabaugh wrote: Window creation isn't conception. Its a very nice reality :) I was just throwing it out there however about an image library. In case somebody wanted to mentor for it. I

Re: Mars Drafting Library - Official community driven library

2015-01-31 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 31 January 2015 at 20:48:01 UTC, Walter Bright wrote: On 1/31/2015 7:10 AM, Piotrek wrote: I know that, but the naming is the least important aspect of the proposal. I agree. Let's not have endless posts bikeshedding the name, no matter how tempting. Yeah, lets just call it

Re: Window creation, for phobos?

2015-01-31 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 1 February 2015 at 05:10:52 UTC, Craig Dillabaugh wrote: On Saturday, 31 January 2015 at 11:34:42 UTC, Paulo Pinto wrote: On Saturday, 31 January 2015 at 10:34:29 UTC, ponce wrote: Regarding C++ that might change.

Re: Window creation, for phobos?

2015-01-31 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 31 January 2015 at 11:34:42 UTC, Paulo Pinto wrote: On Saturday, 31 January 2015 at 10:34:29 UTC, ponce wrote: Regarding C++ that might change. https://msopentech.com/blog/2015/01/28/experimenting-with-a-proposed-standard-gui-for-the-c-language/

Google Summer of Code - Again

2015-01-29 Thread Craig Dillabaugh via Digitalmars-d
It seems like its been too long since I posted asking for GSOC help. The start of submissions for the 2015 Google Summer of Code is fast approaching, so once again I would like to approach the community for some assistance. My immediate needs are: 1) I need a volunteer for 'backup'

Re: GSOC - Holiday Edition

2015-01-17 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 3 January 2015 at 03:33:29 UTC, Rikki Cattermole wrote: On 3/01/2015 3:59 p.m., Craig Dillabaugh wrote: On Saturday, 3 January 2015 at 00:15:42 UTC, Rikki Cattermole wrote: On 3/01/2015 4:30 a.m., Craig Dillabaugh wrote: On Thursday, 1 January 2015 at 06:19:14 UTC, Rikki

Re: GSOC - Holiday Edition

2015-01-13 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 13 January 2015 at 12:23:16 UTC, Bruno Medeiros wrote: On 31/12/2014 03:25, Craig Dillabaugh wrote: 7) Bruno Medeiros - you suggested a DDT project. I've added it. Can you provide me with a few more details, and a bio. Also, under what license is DDT released, I couldn't access

Re: Could D compete in a competition like this?

2015-01-11 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 11 January 2015 at 13:10:12 UTC, Ola Fosheim Grøstad wrote: On Sunday, 11 January 2015 at 13:01:36 UTC, Gary Willoughby wrote: Could D compete in a competition like this? The guts will have to be done in assembly or Intel intrinsics... Why do you say that. Seems like picking the

Re: Phobos Contributor Tutorial

2015-01-10 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 10 January 2015 at 19:08:07 UTC, Ulrich Küttler wrote: Hi, with one phobos PR accepted any a second one submitted, I feel it is about time I write a tutorial. No, seriously, I spend some time to get started. Others might have a rough time, too. So here is a draft of a

Re: GSOC - Holiday Edition

2015-01-10 Thread Craig Dillabaugh via Digitalmars-d
8) Russel Winder and QML ... see #4. Should we drop QML support from our GSOC due to: http://forum.dlang.org/thread/hapeegrotkazppwdn...@forum.dlang.org

Re: GSOC - Holiday Edition

2015-01-04 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 4 January 2015 at 17:25:49 UTC, Martin Nowak wrote: On 01/04/2015 04:50 AM, Mike wrote: On Saturday, 3 January 2015 at 14:14:42 UTC, Adam D. Ruppe wrote: clip It's a known issue that certain language constructs require memory management. That's not a big deal, you can't use C++'s

Re: GSOC - Holiday Edition

2015-01-02 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 3 January 2015 at 00:15:42 UTC, Rikki Cattermole wrote: On 3/01/2015 4:30 a.m., Craig Dillabaugh wrote: On Thursday, 1 January 2015 at 06:19:14 UTC, Rikki Cattermole wrote: clip 10) Rikki had mentioned a 'Web Development' project, but I don't have enough to post on the project

Re: GSOC - Holiday Edition

2015-01-02 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 1 January 2015 at 02:18:40 UTC, Mike wrote: On Wednesday, 31 December 2014 at 11:24:00 UTC, Dmitry Olshansky wrote: The key guy to get in touch though is Michael Franklin: http://dconf.org/2014/talks/franklin.html Would be great to know if he open-sourced some of his stuff. My

Re: GSOC - Holiday Edition

2015-01-02 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 1 January 2015 at 06:19:14 UTC, Rikki Cattermole wrote: clip 10) Rikki had mentioned a 'Web Development' project, but I don't have enough to post on the project ideas page. Are you still interested in doing this. Yes I am. I don't know what I'm doing in the near future (need

Re: GSOC - Holiday Edition

2014-12-31 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 31 December 2014 at 11:24:00 UTC, Dmitry Olshansky wrote: 31-Dec-2014 06:25, Craig Dillabaugh пишет: I was hoping folks to take a brief break from bickering about features, and arguing over which posters have been naughty, and which have been nice, to get a bit of input on our

Re: Happy new year!

2014-12-31 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 31 December 2014 at 14:55:00 UTC, Joseph Rushton Wakeling wrote: On Wednesday, 31 December 2014 at 14:20:28 UTC, Manu via Digitalmars-d wrote: Here's to an awesome 2015! Blwyddyn Newydd Dda :-) Is that welsh?

GSOC - Holiday Edition

2014-12-30 Thread Craig Dillabaugh via Digitalmars-d
I was hoping folks to take a brief break from bickering about features, and arguing over which posters have been naughty, and which have been nice, to get a bit of input on our 2015 Google Summer of Code Proposal ... :o) First off, I've been able to get some work done on the Idea's page,

Re: GSOC - Holiday Edition

2014-12-30 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 31 December 2014 at 03:25:53 UTC, Craig Dillabaugh wrote: 7) Bruno Medeiros - you suggested a DDT project. I've added it. Can you provide me with a few more details, and a bio. Also, under what license is DDT released, I couldn't access any code on your GitHub page to check

Re: GSOC - Holiday Edition

2014-12-30 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 31 December 2014 at 03:44:42 UTC, Adam D. Ruppe wrote: On Wednesday, 31 December 2014 at 03:25:53 UTC, Craig Dillabaugh wrote: 3) I would like to have a 'backup' mentor for each project. Any volunteers! I think we have enough for the Phobos project, but other projects could

Re: Worst Phobos documentation evar!

2014-12-28 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 28 December 2014 at 17:55:26 UTC, Nick Treleaven wrote: On 28/12/2014 17:51, Russel Winder via Digitalmars-d wrote: Trying to fix this problem seems to require people who want to contribute to have to clone Phobos and submit pull requests. You can do it all from your browser if

Re: Comparing Parallelization in HPC with D, Chapel, and Go

2014-11-24 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 24 November 2014 at 03:48:27 UTC, Andrei Amatuni wrote: This prompted me to google for recent academic papers on D, which led me to this: http://research.ijcaonline.org/volume104/number7/pxc3898921.pdf not exactly the most rigorous research, but it's pretty favorable... My main

Re: GSOC Summer 2015 - Second call for Proposals

2014-11-22 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 22 November 2014 at 09:05:26 UTC, Rainer Schuetze wrote: On 21.11.2014 05:38, Craig Dillabaugh wrote: Unsure of Status (2012) 1. Removing the global gc lock from common allocations in D. (2012) Student: Antti-Ville Tuunainen Mentor: David Simcha I haven't found much info on

Re: GSOC Summer 2015 - Second call for Proposals

2014-11-22 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 22 November 2014 at 15:27:00 UTC, Russel Winder via Digitalmars-d wrote: On Wed, 2014-11-05 at 03:54 +, Craig Dillabaugh via Digitalmars-d wrote: […] Apologies for being late to reply. Long story, no sensible tl;dr. […] Russel Winder Phobos/QML: std.parallelism

Re: GSOC Summer 2015 - Second call for Proposals

2014-11-22 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 22 November 2014 at 16:38:43 UTC, safety0ff wrote: On Wednesday, 5 November 2014 at 03:54:23 UTC, Craig Dillabaugh wrote: This is my second Call for Proposals for the 2015 Google Summer of Code. Anyone interested in mentoring, or who has good idea's for a project for 2015 please

Re: GSOC Summer 2015 - Second call for Proposals

2014-11-20 Thread Craig Dillabaugh via Digitalmars-d
I've done a tiny bit a research on past GSOC projects, and based on that is my guess is we have been successful on 5/6 projects - but I am not really sure about the unsuccessful project. Successes 1. Linear Algebra Library based on SciD (2011) Student: Cristi CobzarencoMentor: David

Re: GSOC Summer 2015 - Second call for Proposals

2014-11-05 Thread Craig Dillabaugh via Digitalmars-d
Our 2011 GSOC projects, if any of the participants would like to report on how things went, it would be appreciated. Project Student Mentor Linear Algebra Library Cristi Cobzarenco David Simcha based on SciD An Apache Thrift David Nadlinger

GSOC Summer 2015 - Second call for Proposals

2014-11-04 Thread Craig Dillabaugh via Digitalmars-d
This is my second Call for Proposals for the 2015 Google Summer of Code. Anyone interested in mentoring, or who has good idea's for a project for 2015 please post here. So far I have the following people who have expressed interest in mentoring: Mentor's with specific projects in mind:

Re: Thanks for the bounty!

2014-06-20 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 19 June 2014 at 22:27:58 UTC, Andrej Mitrovic via Digitalmars-d wrote: I claimed a bounty recently, and I just wanted to say thanks to Andrei and his company for backing the bounty. I won't be able to take any future bounties from Facebook due to internal competition policies,

Re: Adding the ?. null verification

2014-06-19 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 19 June 2014 at 10:10:30 UTC, Jacob Carlborg wrote: On 2014-06-18 17:46, Kapps wrote: C# is getting the same syntax, and I remember there being some discussion about it here. It's somewhat useful I suppose, though I think it's made significantly more useful in C# with 'a ?? b' (a

Re: foreach

2014-06-12 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 12 June 2014 at 22:38:26 UTC, Daniel Kozák via Digitalmars-d wrote: V Thu, 12 Jun 2014 15:33:37 -0300 No problem for me: http://stackoverflow.com/questions/23950796/how-to-repeat-a-statement-n-times-simple-loop/23952012#23952012 That is sweet. Well done.

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-06-09 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 2 June 2014 at 23:47:27 UTC, deadalnix wrote: On Monday, 2 June 2014 at 15:03:09 UTC, Dicebot wrote: I'd propose deadalnix to stand up as mentor with SDC ;) I already did. I'm discussing the details with Craig so we can find a good topic for a student to work on. Less posting, more

Re: Call for testers -- new next-gen random number library

2014-06-09 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 9 June 2014 at 18:10:50 UTC, Joseph Rushton Wakeling wrote: Hello all, Apologies for what is effectively cross-posting, but I want to be sure that this announcement reaches the widest possible audience. I've just published a new dub package that is intended to serve as testing

Re: Offtopic: AMA (Was: Interview at Lang.NEXT)

2014-06-06 Thread Craig Dillabaugh via Digitalmars-d-announce
On Friday, 6 June 2014 at 19:27:35 UTC, Ary Borenszweig wrote: On 6/4/14, 3:19 AM, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/27911b/conversation_with_andrei_alexandrescu_all_things/ Andrei This is offtopic, but why are people obsessed with writing English

Re: Chuck Allison's talk is up

2014-06-05 Thread Craig Dillabaugh via Digitalmars-d-announce
On Thursday, 5 June 2014 at 20:24:21 UTC, Mattcoder wrote: On Thursday, 5 June 2014 at 19:36:36 UTC, Craig Dillabaugh wrote: Are these eventually going to be posted for download somewhere (like last year)? Andrei said on reedit they will. My connection is just too slow for streaming. But

Re: vibe.d 0.7.20 has been released

2014-06-04 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 3 June 2014 at 18:27:20 UTC, Sönke Ludwig wrote: Lot's of smaller improvements in this release, please have a look at the full change log. Some notable points: - Various additions to the web framework package [1], including compile-time localization support - New graph based

Re: Interview at Lang.NEXT

2014-06-04 Thread Craig Dillabaugh via Digitalmars-d-announce
On Wednesday, 4 June 2014 at 17:31:56 UTC, Ary Borenszweig wrote: On 6/4/14, 1:27 PM, Meta wrote: On Wednesday, 4 June 2014 at 06:19:05 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/27911b/conversation_with_andrei_alexandrescu_all_things/ Andrei When that

Re: Interview at Lang.NEXT

2014-06-04 Thread Craig Dillabaugh via Digitalmars-d-announce
On Wednesday, 4 June 2014 at 18:54:00 UTC, Andrew Edwards wrote: On 6/4/14, 2:37 PM, Craig Dillabaugh wrote: On Wednesday, 4 June 2014 at 18:14:22 UTC, Adam D. Ruppe wrote: On Wednesday, 4 June 2014 at 18:03:48 UTC, Ary Borenszweig wrote: clip But shouldn't the '26' be '1016'? That should

Re: Interview at Lang.NEXT

2014-06-04 Thread Craig Dillabaugh via Digitalmars-d-announce
On Wednesday, 4 June 2014 at 20:10:51 UTC, Ary Borenszweig wrote: On 6/4/14, 3:33 PM, Craig Dillabaugh wrote: On Wednesday, 4 June 2014 at 17:31:56 UTC, Ary Borenszweig wrote: On 6/4/14, 1:27 PM, Meta wrote: On Wednesday, 4 June 2014 at 06:19:05 UTC, Andrei Alexandrescu wrote: clip But

Re: Getting started with vibe.d

2014-06-03 Thread Craig Dillabaugh via Digitalmars-d-learn
On Tuesday, 3 June 2014 at 16:16:10 UTC, Chris Saunders wrote: I've made my first attempt to use dub/vibe.d and I'm running into some issues I can't find on the list. I'm on Ubuntu 14.04/x86_64, using the latest stable dub (0.9.21). I can create a new dub project: “”” $ dub init test vibe.d

Re: Getting started with vibe.d

2014-06-03 Thread Craig Dillabaugh via Digitalmars-d-learn
On Tuesday, 3 June 2014 at 17:41:27 UTC, Chris Saunders wrote: Thanks, I somehow missed the vibe.d forums... I'd need an ldc solution in the end, but trying dmd is a good idea. The result is some kind of link error to libevent?: dub build vibe-d: [vibe-d, libevent, openssl] test: [test,

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-06-02 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 2 June 2014 at 15:03:09 UTC, Dicebot wrote: I'd propose deadalnix to stand up as mentor with SDC ;) Thanks He already did (emailed me directly), so I have that on my list.

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-06-02 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 2 June 2014 at 14:22:02 UTC, Steven Schveighoffer wrote: On Sat, 31 May 2014 14:33:15 -0400, Craig Dillabaugh craig.dillaba...@gmail.com wrote: On Saturday, 31 May 2014 at 10:19:03 UTC, Tobias Pankrath wrote: On Saturday, 31 May 2014 at 02:44:00 UTC, Craig Dillabaugh wrote: clip

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-06-02 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 2 June 2014 at 17:14:04 UTC, Steven Schveighoffer wrote: On Mon, 02 Jun 2014 12:11:39 -0400, Craig Dillabaugh clip But I didn't see the GSOC thing being a grunt work type of thing. Wouldn't such a student be interested in his/her own project rather than filling out someone

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-05-31 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 31 May 2014 at 08:30:17 UTC, Rikki Cattermole wrote: On 31/05/2014 5:34 a.m., Craig Dillabaugh wrote: I had a couple of things I wanted to post about the D Google Summer of Code submission for 2015. 1. After Andrei had asked for someone interested in taking over the D GSOC

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-05-31 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 31 May 2014 at 08:30:17 UTC, Rikki Cattermole wrote: On 31/05/2014 5:34 a.m., Craig Dillabaugh wrote: I had a couple of things I wanted to post about the D Google Summer of Code submission for 2015. 1. After Andrei had asked for someone interested in taking over the D GSOC

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-05-31 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 31 May 2014 at 10:19:03 UTC, Tobias Pankrath wrote: On Saturday, 31 May 2014 at 02:44:00 UTC, Craig Dillabaugh wrote: On Friday, 30 May 2014 at 19:49:31 UTC, Tobias Pankrath wrote: I know this is very early, but I work slowly :o) * Something like boost::log * Something like

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-05-31 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 31 May 2014 at 14:03:58 UTC, Andrei Alexandrescu wrote: On 5/31/14, 1:30 AM, Rikki Cattermole wrote: As I said with this years one. I'll most likely be available as a mentor. I'll be able to definitely help with anything involving web development. You're welcome to cc me in /

1st Call for Ideas for Google Summer of Code 2015

2014-05-30 Thread Craig Dillabaugh via Digitalmars-d
I had a couple of things I wanted to post about the D Google Summer of Code submission for 2015. 1. After Andrei had asked for someone interested in taking over the D GSOC submission for 2015, I, along with a few others of you volunteered to pitch in. I can't find that thread right now, but

Re: 1st Call for Ideas for Google Summer of Code 2015

2014-05-30 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 30 May 2014 at 19:49:31 UTC, Tobias Pankrath wrote: I know this is very early, but I work slowly :o) * Something like boost::log * Something like boost::program_options * An parser generator on par with antlr4 * std.stream replacement / buffers * std.xml * SSL implementation?

Re: D Users Survey: Primary OS?

2014-05-29 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 29 May 2014 at 19:29:11 UTC, Orfeo wrote: Arch Linux x86_64 OpenSuse Linux 12.3

Re: Scott Meyers' DConf 2014 keynote The Last Thing D Needs

2014-05-28 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 27 May 2014 at 21:40:00 UTC, Walter Bright wrote: On 5/27/2014 2:22 PM, w0rp wrote: I'm actually a native speaker of 25 years and I didn't get it at first. Natural language communicates ideas approximately. What bugs me is when people say: I could care less. when they mean:

Re: D Newbie Trying to Use D with Major C Libraries

2014-05-15 Thread Craig Dillabaugh via Digitalmars-d-learn
On Thursday, 15 May 2014 at 22:25:47 UTC, Tom Browder via Digitalmars-d-learn wrote: I am a volunteer developer with the well-known 3D CAD FOSS project BRL-CAD: http://brlcad.org I have wanted to use D for a long time but I hadn't taken the plunge. Yesterday I advertised to the BRL-CAD

Re: D Newbie Trying to Use D with Major C Libraries

2014-05-15 Thread Craig Dillabaugh via Digitalmars-d-learn
On Friday, 16 May 2014 at 01:16:46 UTC, Craig Dillabaugh wrote: On Thursday, 15 May 2014 at 22:25:47 UTC, Tom Browder via Digitalmars-d-learn wrote: I am a volunteer developer with the well-known 3D CAD FOSS project BRL-CAD: http://brlcad.org I have wanted to use D for a long time but I

Writing to stdin of a process

2014-04-26 Thread Craig Dillabaugh via Digitalmars-d-learn
I want to be able to write to the stdin stream of an external process using std.process. I have the following small test app. myecho.d -- import std.stdio; void main(string[] args) { foreach (line; stdin.byLine()) {

Re: Writing to stdin of a process

2014-04-26 Thread Craig Dillabaugh via Digitalmars-d-learn
On Saturday, 26 April 2014 at 13:30:41 UTC, Adam D. Ruppe wrote: On Saturday, 26 April 2014 at 08:45:59 UTC, Craig Dillabaugh wrote: Can anyone tell me what I am dong wrong. In this case, I'd close the pipe when you're done. pipes.stdin().writeln(Hello world); pipes.stdin.close;

<    1   2   3   >