digitalmars.D - Editable and runnable code sample on dlang.org by Damian Ziemba (nazriel)
- Andrei Alexandrescu (5/5) Jul 05 2012 Check this out: on http://dlang.org you can actually click in the code
- Jacob Carlborg (4/9) Jul 05 2012 That is really cool.
- H. S. Teoh (9/14) Jul 05 2012 [...]
- Justin Whear (5/21) Jul 05 2012 It appears to at the very least strip out calls to shell(). I just tried...
- Iain Buclaw (6/17) Jul 05 2012 If it's using the same engine as dpaste ( http://dpaste.dzfl.pl ),
- =?UTF-8?B?IkFuZHLDqSI=?= (7/31) Jul 05 2012 Great tool!
- maarten van damme (2/8) Jul 05 2012 same bug with chrome
- nazriel (2/26) Jul 05 2012 Yea, its using dpaste backend :~)
- Paulo Pinto (3/9) Jul 05 2012 Great!
- Dmitry Olshansky (10/14) Jul 05 2012 Wonderful! It's fast and fluid, looks good.
- nazriel (4/22) Jul 05 2012 That would be really nice, but I am afraid it's currently not
- Dmitry Olshansky (8/31) Jul 05 2012 The truth be told I'd love to get this kind of infrastructure for a
- Peter Alexander (6/6) Jul 05 2012 Nice.
- nazriel (3/9) Jul 05 2012 Partially fixed.
- Andrei Alexandrescu (5/9) Jul 05 2012 Updated to a much nicer shape. http://dlang.org. Thanks Damian! He'll
- Nick Sabalausky (4/13) Jul 05 2012 It looks nice, but do we really need to be pulling in a giant JS-bomb
- Bernard Helyer (8/25) Jul 05 2012 If you have JS enabled, you will hit JQuery on a large portion of
- Walter Bright (3/5) Jul 06 2012 Young whippersnappers with your fancy cell phones and color monitors! Wh...
- Bernard Helyer (3/9) Jul 06 2012 Aieeee, it's the crypt keeper! D=
- nazriel (3/13) Jul 06 2012 Haha, I still got something like that in home alongside with good
- nazriel (12/41) Jul 06 2012 To be honest I really kept Nick in my head while working on
- Walter Bright (4/5) Jul 06 2012 I still have one in my equipment closet, and a 2400 one in the basement.
- nazriel (15/32) Jul 06 2012 It's same question like
- Nick Sabalausky (8/47) Jul 06 2012 Yea, sorry, in my haste I worded it all very poorly. I was just
- Stefan Scholl (9/15) Jul 06 2012 This is the address: http://code.jquery.com/jquery.min.js
- Jacob Carlborg (9/15) Jul 06 2012 jQuery is actually preferred to load from another server because it's
- xenon325 (2/2) Jul 06 2012 Looks just great!
- Andrei Alexandrescu (9/11) Jul 06 2012 I think that's a good idea. We can show the compile and run time
- Paulo Pinto (5/19) Jul 06 2012 Well, they are always helpful when comparing compile times with
- Paulo Pinto (7/21) Jul 06 2012 Not sure if this will be a double post.
- Andrei Alexandrescu (3/5) Jul 06 2012 Damian is working on integrating accurate compilation and run times.
- Dejan Lekic (4/18) Jul 06 2012 I humbly believe that information is useless.
- Andrei Alexandrescu (7/10) Jul 06 2012 I decided to include those only after Damian mentioned (a) there's
- Walter Bright (3/5) Jul 06 2012 I don't think the compile time of 10 line programs is relevant. All you'...
- nazriel (13/20) Jul 07 2012 Machines running compilers are rather high quality with enough
- Walter Bright (4/6) Jul 07 2012 I'd be wary about providing such data just because we can, because it is...
- David Nadlinger (6/8) Jul 06 2012 When on dlang.org/ and pressing Back and then Forward again, the
- nazriel (15/22) Jul 07 2012 Nice catch David,
- Paulo Pinto (6/12) Jul 09 2012 Hi,
- nazriel (8/23) Jul 09 2012 Can you collaborate? I have FF 13 and it works fine. We had small
- David Nadlinger (4/6) Jul 09 2012 Yes, they are indeed.
Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! Andrei
Jul 05 2012
On 2012-07-05 18:26, Andrei Alexandrescu wrote:Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiThat is really cool. -- /Jacob Carlborg
Jul 05 2012
On Thu, Jul 05, 2012 at 12:26:01PM -0400, Andrei Alexandrescu wrote:Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback![...] Won't that be open to abuse? Like if somebody wrote a fork bomb and tried to run it... Unless the backend server has tight resource control over the code sample executor, of course T -- Nothing in the world is more distasteful to a man than to take the path that leads to himself. -- Herman Hesse
Jul 05 2012
On Thu, 05 Jul 2012 09:51:50 -0700, H. S. Teoh wrote:On Thu, Jul 05, 2012 at 12:26:01PM -0400, Andrei Alexandrescu wrote:It appears to at the very least strip out calls to shell(). I just tried adding: writeln(shell("whoami")); and just got a blank line.Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback![...] Won't that be open to abuse? Like if somebody wrote a fork bomb and tried to run it... Unless the backend server has tight resource control over the code sample executor, of course T
Jul 05 2012
On 5 July 2012 17:51, H. S. Teoh <hsteoh quickfur.ath.cx> wrote:On Thu, Jul 05, 2012 at 12:26:01PM -0400, Andrei Alexandrescu wrote:If it's using the same engine as dpaste ( http://dpaste.dzfl.pl ), then it is fairly locked down. -- Iain Buclaw *(p < e ? p++ : p) = (c & 0x0f) + '0';Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback![...] Won't that be open to abuse? Like if somebody wrote a fork bomb and tried to run it... Unless the backend server has tight resource control over the code sample executor, of course
Jul 05 2012
Great tool! Just a small layout bug: On Firefox 3.6.4 (on Mac) the [your code here] tags is misplaced after clicking the "Run" button. It then overlaps the appearing output box. Cheers, André On Thursday, 5 July 2012 at 16:59:33 UTC, Iain Buclaw wrote:On 5 July 2012 17:51, H. S. Teoh <hsteoh quickfur.ath.cx> wrote:On Thu, Jul 05, 2012 at 12:26:01PM -0400, Andrei Alexandrescu wrote:If it's using the same engine as dpaste ( http://dpaste.dzfl.pl ), then it is fairly locked down.Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback![...] Won't that be open to abuse? Like if somebody wrote a fork bomb and tried to run it... Unless the backend server has tight resource control over the code sample executor, of course
Jul 05 2012
2012/7/5 "Andr=E9" <nospam spambog.com>:Great tool! Just a small layout bug: On Firefox 3.6.4 (on Mac) the [your code here] tags is misplaced after clicking the "Run" button. It then overlaps the appearing output box. Cheers, Andr=E9same bug with chrome
Jul 05 2012
On Thursday, 5 July 2012 at 16:59:33 UTC, Iain Buclaw wrote:On 5 July 2012 17:51, H. S. Teoh <hsteoh quickfur.ath.cx> wrote:Yea, its using dpaste backend :~)On Thu, Jul 05, 2012 at 12:26:01PM -0400, Andrei Alexandrescu wrote:If it's using the same engine as dpaste ( http://dpaste.dzfl.pl ), then it is fairly locked down.Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback![...] Won't that be open to abuse? Like if somebody wrote a fork bomb and tried to run it... Unless the backend server has tight resource control over the code sample executor, of course
Jul 05 2012
On Thursday, 5 July 2012 at 16:26:02 UTC, Andrei Alexandrescu wrote:Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiGreat!
Jul 05 2012
On 05-Jul-12 20:26, Andrei Alexandrescu wrote:Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback!Wonderful! It's fast and fluid, looks good. Still I would request adding interactive console input. Some magic with WebSockets & some server daemon on worker machines should do the trick. And being able to run for some time if network client is active. Browsers without WebSockets can just use non-interactive input with some text area which contents are fed to the program. -- Dmitry Olshansky
Jul 05 2012
On Thursday, 5 July 2012 at 17:56:34 UTC, Dmitry Olshansky wrote:On 05-Jul-12 20:26, Andrei Alexandrescu wrote:That would be really nice, but I am afraid it's currently not doable with current design of whole infrastructure. Although I will think about it, dpaste probably could benefit from this too.Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback!Wonderful! It's fast and fluid, looks good. Still I would request adding interactive console input. Some magic with WebSockets & some server daemon on worker machines should do the trick. And being able to run for some time if network client is active. Browsers without WebSockets can just use non-interactive input with some text area which contents are fed to the program.
Jul 05 2012
On 06-Jul-12 01:28, nazriel wrote:On Thursday, 5 July 2012 at 17:56:34 UTC, Dmitry Olshansky wrote:The truth be told I'd love to get this kind of infrastructure for a personal use. I've seen firsthand Claud9 IDE with node.js working on a very tiny device and, of course, I got jealous. I thought: such a waste of cycles, it would be so much better if it was D running on it :) -- Dmitry OlshanskyOn 05-Jul-12 20:26, Andrei Alexandrescu wrote:That would be really nice, but I am afraid it's currently not doable with current design of whole infrastructure. Although I will think about it, dpaste probably could benefit from this too.Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback!Wonderful! It's fast and fluid, looks good. Still I would request adding interactive console input. Some magic with WebSockets & some server daemon on worker machines should do the trick. And being able to run for some time if network client is active. Browsers without WebSockets can just use non-interactive input with some text area which contents are fed to the program.
Jul 05 2012
Nice. Should probably remove the references to local files when compilation fails. Not very user friendly to see: /home/jail/compileme369.d(14): expression expected, not '}' Would probably suffice just to switch the filename with something less distracting.
Jul 05 2012
On Thursday, 5 July 2012 at 19:10:57 UTC, Peter Alexander wrote:Nice. Should probably remove the references to local files when compilation fails. Not very user friendly to see: /home/jail/compileme369.d(14): expression expected, not '}' Would probably suffice just to switch the filename with something less distracting.Partially fixed. Thanks!
Jul 05 2012
On 7/5/12 12:26 PM, Andrei Alexandrescu wrote:Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback!Updated to a much nicer shape. http://dlang.org. Thanks Damian! He'll work soon on enabling such compilation for all code examples in the Phobos pages. Andrei
Jul 05 2012
On Thu, 05 Jul 2012 12:26:01 -0400 Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> wrote:Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiIt looks nice, but do we really need to be pulling in a giant JS-bomb like JQuery on D's homepage?
Jul 05 2012
On Friday, 6 July 2012 at 05:45:25 UTC, Nick Sabalausky wrote:On Thu, 05 Jul 2012 12:26:01 -0400 Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> wrote:If you have JS enabled, you will hit JQuery on a large portion of modern web-pages. It looks like it degrades gracefully when JS is disabled, so I don't really see the problem. If you want to suggest specific solutions (why are you doing X with JQuery? Isn't doing Y sufficient?) that would be useful, otherwise everyone is just going to filter you out as "old man nick is complaining about JS again" :)Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiIt looks nice, but do we really need to be pulling in a giant JS-bomb like JQuery on D's homepage?
Jul 05 2012
On 7/5/2012 11:06 PM, Bernard Helyer wrote:otherwise everyone is just going to filter you out as "old man nick is complaining about JS again" :)Young whippersnappers with your fancy cell phones and color monitors! Why, in my day we had ASR-33 teletypes at 10 characters per second, and we were blessed!
Jul 06 2012
On Friday, 6 July 2012 at 07:39:14 UTC, Walter Bright wrote:On 7/5/2012 11:06 PM, Bernard Helyer wrote:Aieeee, it's the crypt keeper! D= <3otherwise everyone is just going to filter you out as "old man nick is complaining about JS again" :)Young whippersnappers with your fancy cell phones and color monitors! Why, in my day we had ASR-33 teletypes at 10 characters per second, and we were blessed!
Jul 06 2012
On Friday, 6 July 2012 at 08:07:19 UTC, Bernard Helyer wrote:On Friday, 6 July 2012 at 07:39:14 UTC, Walter Bright wrote:Haha, I still got something like that in home alongside with good ol' type writter!On 7/5/2012 11:06 PM, Bernard Helyer wrote:Aieeee, it's the crypt keeper! D= <3otherwise everyone is just going to filter you out as "old man nick is complaining about JS again" :)Young whippersnappers with your fancy cell phones and color monitors! Why, in my day we had ASR-33 teletypes at 10 characters per second, and we were blessed!
Jul 06 2012
On Friday, 6 July 2012 at 06:06:28 UTC, Bernard Helyer wrote:On Friday, 6 July 2012 at 05:45:25 UTC, Nick Sabalausky wrote:To be honest I really kept Nick in my head while working on no-javascript fallback. No joke, really. I remember his statements about JS and I really took it to heart :) It should give ol' good dlang.org site when running without JS. When everything will settle down and hit stable state, we will also compress all js files (jQuery is already shipped compressed) so loading times shouldn't be an issue. I believe there are not much 56kbps modem users this days anyways! *grins*On Thu, 05 Jul 2012 12:26:01 -0400 Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> wrote:If you have JS enabled, you will hit JQuery on a large portion of modern web-pages. It looks like it degrades gracefully when JS is disabled, so I don't really see the problem.Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiIt looks nice, but do we really need to be pulling in a giant JS-bomb like JQuery on D's homepage?If you want to suggest specific solutions (why are you doing X with JQuery? Isn't doing Y sufficient?) that would be useful, otherwise everyone is just going to filter you out as "old man nick is complaining about JS again" :)Nick is right, JS is way overused these days and it's wrong, but sometimes it is a must. And yes please, any suggestions are welcome!
Jul 06 2012
On 7/6/2012 1:06 AM, nazriel wrote:I believe there are not much 56kbps modem users this days anyways! *grins*I still have one in my equipment closet, and a 2400 one in the basement. Funny how the only computer I didn't keep turned out to be the collector one worth a tidy sum.
Jul 06 2012
On Friday, 6 July 2012 at 05:45:25 UTC, Nick Sabalausky wrote:On Thu, 05 Jul 2012 12:26:01 -0400 Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> wrote:It's same question like Why use binary bomb like D instead of using C? Using jQuery, despite rapid development I gain one, very important thing. It's well tested framework and I don't need to care about IE glitches and use hacks to support all browsers. I respect your state about JavaScript, but please, lets not make in another "X language sux" thread. D community is already full of this comparing crap including "D sux, Lua rox" statements :P Work needs to be done. Of course I am open for suggestions and have will to replace jQuery with any same good and scale-able solution but more lightweight. Best regards, Damian ZiembaCheck this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiIt looks nice, but do we really need to be pulling in a giant JS-bomb like JQuery on D's homepage?
Jul 06 2012
On Fri, 06 Jul 2012 09:51:59 +0200 "nazriel" <nazriel6969 gmail.com> wrote:On Friday, 6 July 2012 at 05:45:25 UTC, Nick Sabalausky wrote:Yea, sorry, in my haste I worded it all very poorly. I was just concerned about whether using jquery (and pulling it in from a whole separate server) might have a lot of (or too much) bloat for the homepage. I haven't used jquery, but if I understand correctly it's considered one of the bulkier JS libs out there, hence my concern. That's what I was trying to say (and yes, totally missed the mark!).On Thu, 05 Jul 2012 12:26:01 -0400 Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> wrote:It's same question like Why use binary bomb like D instead of using C? Using jQuery, despite rapid development I gain one, very important thing. It's well tested framework and I don't need to care about IE glitches and use hacks to support all browsers. I respect your state about JavaScript, but please, lets not make in another "X language sux" thread. D community is already full of this comparing crap including "D sux, Lua rox" statements :P Work needs to be done. Of course I am open for suggestions and have will to replace jQuery with any same good and scale-able solution but more lightweight. Best regards, Damian ZiembaCheck this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiIt looks nice, but do we really need to be pulling in a giant JS-bomb like JQuery on D's homepage?
Jul 06 2012
Nick Sabalausky <SeeWebsiteToContactMe semitwist.com> wrote:Yea, sorry, in my haste I worded it all very poorly. I was just concerned about whether using jquery (and pulling it in from a whole separate server) might have a lot of (or too much) bloat for the homepage. I haven't used jquery, but if I understand correctly it'sThis is the address: http://code.jquery.com/jquery.min.js As many sites use this address (and the one at ajax.googleapis.com), chances are good you already have a copy in your browser cache. Only problem I see: There's no version number in the address. I guess it's always the current version. You could lose some visitors when the current version hits 2.0 :-) (jQuery 2.0 won't support old browsers like Internet Explorer 8.)
Jul 06 2012
On 2012-07-06 10:55, Nick Sabalausky wrote:Yea, sorry, in my haste I worded it all very poorly. I was just concerned about whether using jquery (and pulling it in from a whole separate server) might have a lot of (or too much) bloat for the homepage. I haven't used jquery, but if I understand correctly it's considered one of the bulkier JS libs out there, hence my concern. That's what I was trying to say (and yes, totally missed the mark!).jQuery is actually preferred to load from another server because it's such a common JS library that there's a pretty good chance that the client already has it cached. But I would prefer to load it from Google instead of jquery.com, for example: https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js Remember, the fastest request it the one that never needs to be made :) -- /Jacob Carlborg
Jul 06 2012
Looks just great! Maybe it should output compilation/execution times as well ?
Jul 06 2012
On 7/6/12 4:43 AM, xenon325 wrote:Looks just great! Maybe it should output compilation/execution times as well ?I think that's a good idea. We can show the compile and run time separately, where the compilation speed should come shining. Right now clicking on "run" brings a frame title "Application output". I'm thinking, after the program finished the title could change to e.g. "Application output [compile time: 228ms; run time 157ms]". On the other hand the load on the compilation machine will influence the timings, so the numbers are not very relevant. Andrei
Jul 06 2012
On Friday, 6 July 2012 at 12:47:59 UTC, Andrei Alexandrescu wrote:On 7/6/12 4:43 AM, xenon325 wrote:Well, they are always helpful when comparing compile times with Go. :) -- PauloLooks just great! Maybe it should output compilation/execution times as well ?I think that's a good idea. We can show the compile and run time separately, where the compilation speed should come shining. Right now clicking on "run" brings a frame title "Application output". I'm thinking, after the program finished the title could change to e.g. "Application output [compile time: 228ms; run time 157ms]". On the other hand the load on the compilation machine will influence the timings, so the numbers are not very relevant. Andrei
Jul 06 2012
On Friday, 6 July 2012 at 12:47:59 UTC, Andrei Alexandrescu wrote:On 7/6/12 4:43 AM, xenon325 wrote:Not sure if this will be a double post. We can always make use of that information to compare compile times with Go. :) -- PauloLooks just great! Maybe it should output compilation/execution times as well ?I think that's a good idea. We can show the compile and run time separately, where the compilation speed should come shining. Right now clicking on "run" brings a frame title "Application output". I'm thinking, after the program finished the title could change to e.g. "Application output [compile time: 228ms; run time 157ms]". On the other hand the load on the compilation machine will influence the timings, so the numbers are not very relevant. Andrei
Jul 06 2012
On 7/6/12 10:11 AM, Paulo Pinto wrote:We can always make use of that information to compare compile times with Go. :)Damian is working on integrating accurate compilation and run times. Andrei
Jul 06 2012
On Friday, 6 July 2012 at 12:47:59 UTC, Andrei Alexandrescu wrote:On 7/6/12 4:43 AM, xenon325 wrote:I humbly believe that information is useless. Why? - Because at any point of time the server can be congested and those running time figures will go high...Looks just great! Maybe it should output compilation/execution times as well ?I think that's a good idea. We can show the compile and run time separately, where the compilation speed should come shining. Right now clicking on "run" brings a frame title "Application output". I'm thinking, after the program finished the title could change to e.g. "Application output [compile time: 228ms; run time 157ms]". On the other hand the load on the compilation machine will influence the timings, so the numbers are not very relevant. Andrei
Jul 06 2012
On 7/6/12 10:43 AM, Dejan Lekic wrote:I humbly believe that information is useless. Why? - Because at any point of time the server can be congested and those running time figures will go high...I decided to include those only after Damian mentioned (a) there's sufficient reserve power for the time being, and (b) we can easily scale up with need. If we get more sophisticated about it all we might be able to report the time actually spent in that particular process. Andrei
Jul 06 2012
On 7/6/2012 5:47 AM, Andrei Alexandrescu wrote:On the other hand the load on the compilation machine will influence the timings, so the numbers are not very relevant.I don't think the compile time of 10 line programs is relevant. All you're measuring is the time it takes to load the compiler/linker/library into memory.
Jul 06 2012
On Friday, 6 July 2012 at 19:45:42 UTC, Walter Bright wrote:On 7/6/2012 5:47 AM, Andrei Alexandrescu wrote:Machines running compilers are rather high quality with enough power to handle 100 requests same time but, you maybe right, every execution of produced binary has applied it's resources limits. It has 10mb stack size, 30mb virtual memory and 5secs of CPU clock. Compilation times maybe accurate but binary run-time may not be. Adding this feature is 10seconds work as returned JSON already includes timers so no need to hurry with this, we should rethink this. Personally I would say no for this. Already enough trolls around, no need to feed them more :)On the other hand the load on the compilation machine will influence the timings, so the numbers are not very relevant.I don't think the compile time of 10 line programs is relevant. All you're measuring is the time it takes to load the compiler/linker/library into memory.
Jul 07 2012
On 7/7/2012 1:44 AM, nazriel wrote:Personally I would say no for this. Already enough trolls around, no need to feed them more :)I'd be wary about providing such data just because we can, because it is not reflective of what people will experience using dmd on their own machines, and so it is misleading and will be misused.
Jul 07 2012
On Thursday, 5 July 2012 at 16:26:02 UTC, Andrei Alexandrescu wrote:Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback!When on dlang.org/ and pressing Back and then Forward again, the contents of the input area disappear on Chrome 20.0.1132.47 (OS X): http://imgur.com/TgfnT David
Jul 06 2012
On Saturday, 7 July 2012 at 06:23:03 UTC, David Nadlinger wrote:On Thursday, 5 July 2012 at 16:26:02 UTC, Andrei Alexandrescu wrote:Nice catch David, Unfortunately I can't do much about it as it is Webkit bug, so Chromium and Safari suffers from this. Doesn't happen on Firefox, Opera (and probably IE - can't test right now). It's bug described here: http://code.google.com/p/chromium/issues/detail?id=64467 and here: https://bugs.webkit.org/show_bug.cgi?id=90259 Looks like fix for this has been applied 8 days ago: http://trac.webkit.org/changeset/121552 I will try to find workaround tho. Thanks for report David. Best regards, Damian ZiembaDamian is actively working on the UI as I'm writing this. Feel free to chime in with feedback!When on dlang.org/ and pressing Back and then Forward again, the contents of the input area disappear on Chrome 20.0.1132.47 (OS X): http://imgur.com/TgfnT
Jul 07 2012
On Thursday, 5 July 2012 at 16:26:02 UTC, Andrei Alexandrescu wrote:Check this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiHi, just noticed than this is broken in Firefox 13. -- Paulo
Jul 09 2012
On Monday, 9 July 2012 at 11:35:59 UTC, Paulo Pinto wrote:On Thursday, 5 July 2012 at 16:26:02 UTC, Andrei Alexandrescu wrote:Can you collaborate? I have FF 13 and it works fine. We had small glitch with updating website itself, although it should work fine from now. David (klickverbot), are examples working for you now? (Back - Forward transition)? Thanks Damian ZiembaCheck this out: on http://dlang.org you can actually click in the code example and edit it, then click "Run" and pronto, you see the output! Damian is actively working on the UI as I'm writing this. Feel free to chime in with feedback! AndreiHi, just noticed than this is broken in Firefox 13. -- Paulo
Jul 09 2012
On Monday, 9 July 2012 at 16:58:26 UTC, nazriel wrote:David (klickverbot), are examples working for you now? (Back - Forward transition)?Yes, they are indeed. Keep up the good work, David
Jul 09 2012