digitalmars.D - GSoC 2013: CfM (Call for Mentors)
- Andrei Alexandrescu (15/15) Mar 24 2013 Hello,
- deadalnix (3/21) Mar 24 2013 Count me in. What should I do ?
- Andrei Alexandrescu (3/4) Mar 25 2013 Thanks! We'll synchronize via email.
- Adam Wilson (15/30) Mar 24 2013 Count me in! I really enjoyed last years edition and I'd definitely be u...
- Andrei Alexandrescu (3/10) Mar 25 2013 Sounds great. Should I put you under flyboynw at gmail?
- Don (23/59) Mar 26 2013 The reason why CTFE real-time evaluation hasn't happened yet,
- =?ISO-8859-1?Q?Alex_R=F8nne_Petersen?= (6/21) Mar 24 2013 I'll be available as mentor.
- Andrei Alexandrescu (3/4) Mar 25 2013 Terrific. You're on!
- Jens Mueller (3/26) Mar 25 2013 I'd like to mentor a student.
- Andrei Alexandrescu (3/4) Mar 25 2013 Added, thanks!
- Martin Nowak (2/3) Mar 26 2013 Is the code still floating around somewhere?
- Martin Nowak (2/3) Mar 26 2013 Is the code still floating around somewhere?
- Andrei Alexandrescu (3/6) Mar 26 2013 https://github.com/Tuna-Fish/druntime/tree/gc_poolwise_bitmap
- Dmitry Olshansky (5/12) Mar 26 2013 And more recent - the Rainer's fork of it
Hello, Google Summer of code 2013 is accepting applications. Just like in the past years, we need a few mentors to ensure a successful event. This year we plan to get significantly better organized and make sure the event is successful in measurable ways (finalized projects or committed contributions to dmd/druntime/phobos etc). We have made a mistake in the past of approving the GC project by Antti-Ville Tuuainen who subsequently became unreachable to follow through with merging his project in the mainline. We don't want to repeat such mistakes in the future, which means a closer, stronger mentor/mentee relationship. So please reply to this or email Walter and myself if you have the time and inclination to mentor a student this summer. For a detailed mentor's manual, peruse http://en.flossmanuals.net/GSoCMentoring/. Thanks, Andrei
Mar 24 2013
On Sunday, 24 March 2013 at 15:52:45 UTC, Andrei Alexandrescu wrote:Hello, Google Summer of code 2013 is accepting applications. Just like in the past years, we need a few mentors to ensure a successful event. This year we plan to get significantly better organized and make sure the event is successful in measurable ways (finalized projects or committed contributions to dmd/druntime/phobos etc). We have made a mistake in the past of approving the GC project by Antti-Ville Tuuainen who subsequently became unreachable to follow through with merging his project in the mainline. We don't want to repeat such mistakes in the future, which means a closer, stronger mentor/mentee relationship. So please reply to this or email Walter and myself if you have the time and inclination to mentor a student this summer. For a detailed mentor's manual, peruse http://en.flossmanuals.net/GSoCMentoring/. Thanks, AndreiCount me in. What should I do ?
Mar 24 2013
On 3/24/13 12:00 PM, deadalnix wrote:Count me in. What should I do ?Thanks! We'll synchronize via email. Andrei
Mar 25 2013
On Sun, 24 Mar 2013 08:52:45 -0700, Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> wrote:Hello, Google Summer of code 2013 is accepting applications. Just like in the past years, we need a few mentors to ensure a successful event. This year we plan to get significantly better organized and make sure the event is successful in measurable ways (finalized projects or committed contributions to dmd/druntime/phobos etc). We have made a mistake in the past of approving the GC project by Antti-Ville Tuuainen who subsequently became unreachable to follow through with merging his project in the mainline. We don't want to repeat such mistakes in the future, which means a closer, stronger mentor/mentee relationship. So please reply to this or email Walter and myself if you have the time and inclination to mentor a student this summer. For a detailed mentor's manual, peruse http://en.flossmanuals.net/GSoCMentoring/. Thanks, AndreiCount me in! I really enjoyed last years edition and I'd definitely be up for doing it again this year. Although I would be willing to work with anybody that has a good idea, I think Mr. Bothe has an interesting idea for this years work. Compiling D to CIL would be a huge boon to Mono-D as it would make real-time CTFE evaluation a reality. Or at least get us on the right path. We'll have to hammer out what can actually be done in three months. -- Adam Wilson IRC: LightBender Project Coordinator The Horizon Project http://www.thehorizonproject.org/
Mar 24 2013
On 3/24/13 4:36 PM, Adam Wilson wrote:Count me in! I really enjoyed last years edition and I'd definitely be up for doing it again this year. Although I would be willing to work with anybody that has a good idea, I think Mr. Bothe has an interesting idea for this years work. Compiling D to CIL would be a huge boon to Mono-D as it would make real-time CTFE evaluation a reality. Or at least get us on the right path. We'll have to hammer out what can actually be done in three months.Sounds great. Should I put you under flyboynw at gmail? Andrei
Mar 25 2013
On Sunday, 24 March 2013 at 20:37:36 UTC, Adam Wilson wrote:On Sun, 24 Mar 2013 08:52:45 -0700, Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> wrote:The reason why CTFE real-time evaluation hasn't happened yet, isn't related to that. It's not particularly hard to do JIT it. You probably imagine that the CTFE engine is given a syntax tree which has been semantically analyzed, and just has to compile it and run it. Just like a backend. Unfortunately, that's not the case. The problem is rather that the interface between compiler and CTFE is very, very messy. So the challenge is knowing what to JIT. Basically, in the compiler, the evil lies in a file called optimize.c which is sort-of part of CTFE, and sort-of not, and has very complicated behaviour. For example: static int k = [1,2,3] [ $ - 2 + { return $-2; }() ]; The delegate literal gets evaluated in CTFE. But, $ exists _outside_ the delegate literal. There were literally more than a hundred of these corner cases. I've been working on them for well over a year, I'm close to getting them all. Until this is done, attempting to compile CTFE code would be an exercise in frustration. You'll get it to work in 95% of cases, and then fail miserably with the rest. Right now, this project is a trap.Hello, Google Summer of code 2013 is accepting applications. Just like in the past years, we need a few mentors to ensure a successful event. This year we plan to get significantly better organized and make sure the event is successful in measurable ways (finalized projects or committed contributions to dmd/druntime/phobos etc). We have made a mistake in the past of approving the GC project by Antti-Ville Tuuainen who subsequently became unreachable to follow through with merging his project in the mainline. We don't want to repeat such mistakes in the future, which means a closer, stronger mentor/mentee relationship. So please reply to this or email Walter and myself if you have the time and inclination to mentor a student this summer. For a detailed mentor's manual, peruse http://en.flossmanuals.net/GSoCMentoring/. Thanks, AndreiCount me in! I really enjoyed last years edition and I'd definitely be up for doing it again this year. Although I would be willing to work with anybody that has a good idea, I think Mr. Bothe has an interesting idea for this years work. Compiling D to CIL would be a huge boon to Mono-D as it would make real-time CTFE evaluation a reality. Or at least get us on the right path. We'll have to hammer out what can actually be done in three months.
Mar 26 2013
On 24-03-2013 16:52, Andrei Alexandrescu wrote:Hello, Google Summer of code 2013 is accepting applications. Just like in the past years, we need a few mentors to ensure a successful event. This year we plan to get significantly better organized and make sure the event is successful in measurable ways (finalized projects or committed contributions to dmd/druntime/phobos etc). We have made a mistake in the past of approving the GC project by Antti-Ville Tuuainen who subsequently became unreachable to follow through with merging his project in the mainline. We don't want to repeat such mistakes in the future, which means a closer, stronger mentor/mentee relationship. So please reply to this or email Walter and myself if you have the time and inclination to mentor a student this summer. For a detailed mentor's manual, peruse http://en.flossmanuals.net/GSoCMentoring/. Thanks, AndreiI'll be available as mentor. -- Alex Rønne Petersen alex alexrp.com / alex lycus.org http://lycus.org
Mar 24 2013
On 3/25/13 2:37 AM, Alex Rønne Petersen wrote:I'll be available as mentor.Terrific. You're on! Andrei
Mar 25 2013
Andrei Alexandrescu wrote:Hello, Google Summer of code 2013 is accepting applications. Just like in the past years, we need a few mentors to ensure a successful event. This year we plan to get significantly better organized and make sure the event is successful in measurable ways (finalized projects or committed contributions to dmd/druntime/phobos etc). We have made a mistake in the past of approving the GC project by Antti-Ville Tuuainen who subsequently became unreachable to follow through with merging his project in the mainline. We don't want to repeat such mistakes in the future, which means a closer, stronger mentor/mentee relationship. So please reply to this or email Walter and myself if you have the time and inclination to mentor a student this summer. For a detailed mentor's manual, peruse http://en.flossmanuals.net/GSoCMentoring/. Thanks, AndreiI'd like to mentor a student. Jens
Mar 25 2013
On 3/25/13 5:30 AM, Jens Mueller wrote:I'd like to mentor a student.Added, thanks! Andrei
Mar 25 2013
On 03/24/2013 04:52 PM, Andrei Alexandrescu wrote:GC project by Antti-Ville TuuainenIs the code still floating around somewhere?
Mar 26 2013
On 03/24/2013 04:52 PM, Andrei Alexandrescu wrote:GC project by Antti-Ville TuuainenIs the code still floating around somewhere?
Mar 26 2013
On 3/26/13 12:08 PM, Martin Nowak wrote:On 03/24/2013 04:52 PM, Andrei Alexandrescu wrote:https://github.com/Tuna-Fish/druntime/tree/gc_poolwise_bitmap AndreiGC project by Antti-Ville TuuainenIs the code still floating around somewhere?
Mar 26 2013
26-Mar-2013 21:10, Andrei Alexandrescu пишет:On 3/26/13 12:08 PM, Martin Nowak wrote:And more recent - the Rainer's fork of it https://github.com/rainers/druntime/tree/gcx_precise -- Dmitry OlshanskyOn 03/24/2013 04:52 PM, Andrei Alexandrescu wrote:https://github.com/Tuna-Fish/druntime/tree/gc_poolwise_bitmap AndreiGC project by Antti-Ville TuuainenIs the code still floating around somewhere?
Mar 26 2013