Re: Found on twitter: a long comparison of C with D, in Russian

2016-02-10 Thread Joakim via Digitalmars-d-announce
On Wednesday, 10 February 2016 at 20:12:18 UTC, Andre Polykanine wrote: JvDda> https://habrahabr.ru/post/276227/ It states that it actually is the translation of this one: http://dlang.org/ctod.html :) But thanks anyway! A ndre. Oh h

Re: code-debug 0.3.0 released (GDB for vscode)

2016-02-10 Thread Joel via Digitalmars-d-announce
On Thursday, 11 February 2016 at 00:34:57 UTC, WebFreak001 wrote: On Wednesday, 10 February 2016 at 21:57:49 UTC, Joel wrote: I get this with the debug gear button: { "version": "0.2.0", "configurations": [ { "name": "Debug",

Re: code-debug 0.3.0 released (GDB for vscode)

2016-02-10 Thread WebFreak001 via Digitalmars-d-announce
On Wednesday, 10 February 2016 at 21:57:49 UTC, Joel wrote: I get this with the debug gear button: { "version": "0.2.0", "configurations": [ { "name": "Debug", "type": "gdb", "request": "launch

Re: Sublime Text 3 Gets Better D Support

2016-02-10 Thread jmh530 via Digitalmars-d-announce
On Wednesday, 10 February 2016 at 18:00:42 UTC, sigod wrote: New syntax highlighting is not as good as I expected it to be. I was surprised by how good it looks. I just don't have any interest in using Sublime.

Re: Release vibe.d 0.7.27

2016-02-10 Thread sigod via Digitalmars-d-announce
Did some benchmarks between `std.net.curl.get` and `vibe.http.client.requestHTTP`. Only GET requests. 100 requests, ~1.4mb file: curl total: 131304, average: 1 sec and 313 ms vibe total: 21975, average: 219 ms 52 different files: curl total: 24851, average: 477 ms vibe total:

Re: code-debug 0.3.0 released (GDB for vscode)

2016-02-10 Thread Joel via Digitalmars-d-announce
On Wednesday, 10 February 2016 at 13:04:43 UTC, WebFreak001 wrote: On Wednesday, 10 February 2016 at 06:51:43 UTC, Joel wrote: Thanks Mike. But now what? when you have installed the extension, you can create the debug config as described in the README I've looked at the read me, but it seem

Re: Found on twitter: a long comparison of C with D, in Russian

2016-02-10 Thread Daniel Kozak via Digitalmars-d-announce
It is sad we still have official pages with something like this :( The D Way The length of an array is accessible through the property "length". int array[17]; foreach (i; 0 .. array.length) func(array[i]); or even better: int array[17]; foreach (int value; array) func(v

Re: Found on twitter: a long comparison of C with D, in Russian

2016-02-10 Thread Andre Polykanine via Digitalmars-d-announce
JvDda> https://habrahabr.ru/post/276227/ It states that it actually is the translation of this one: http://dlang.org/ctod.html :) But thanks anyway! A ndre.

Re: Sublime Text 3 Gets Better D Support

2016-02-10 Thread sigod via Digitalmars-d-announce
On Tuesday, 9 February 2016 at 21:08:37 UTC, Brian Schott wrote: On Wednesday, 27 January 2016 at 17:34:35 UTC, Jack Stouffer wrote: Sublime Text is a very popular text editor, and for a while now it's had marginal D support. What has changed recently is updated syntax highlighting to support a

Re: code-debug 0.3.0 released (GDB for vscode)

2016-02-10 Thread Daniel Kozak via Digitalmars-d-announce
On Wednesday, 10 February 2016 at 14:09:43 UTC, Daniel Kozak wrote: Dne 9.2.2016 v 23:31 WebFreak001 via Digitalmars-d-announce napsal(a): ext install debug How can I install it? Where I should put this command? ext install debug OK I found it :). I cant just put ext install debug and hit

Re: code-debug 0.3.0 released (GDB for vscode)

2016-02-10 Thread Daniel Kozak via Digitalmars-d-announce
Dne 9.2.2016 v 23:31 WebFreak001 via Digitalmars-d-announce napsal(a): ext install debug How can I install it? Where I should put this command? ext install debug

Re: code-debug 0.3.0 released (GDB for vscode)

2016-02-10 Thread WebFreak001 via Digitalmars-d-announce
On Wednesday, 10 February 2016 at 06:51:43 UTC, Joel wrote: Thanks Mike. But now what? when you have installed the extension, you can create the debug config as described in the README

Re: uefi-d: Booting to D

2016-02-10 Thread Satoshi via Digitalmars-d-announce
On Tuesday, 9 February 2016 at 20:15:03 UTC, Jakub Szewczyk wrote: I have started developing a hobbyist OS, I decided I want it to be written in D, but the only possibility to write code that can be ran by the UEFI chips that replaced BIOS in modern computers was to use either assembler or C. (

Re: Release vibe.d 0.7.27

2016-02-10 Thread Iain Buclaw via Digitalmars-d-announce
On 10 February 2016 at 10:49, Sönke Ludwig < digitalmars-d-announce@puremagic.com> wrote: > Am 10.02.2016 um 09:50 schrieb Iain Buclaw via Digitalmars-d-announce: > >> >> Not a problem. We may be on 2.068 sooner than you think (I know that >> 2.067 has been in branch/PR forever ;-) >> >> Iain. >>

Re: Release vibe.d 0.7.27

2016-02-10 Thread Sönke Ludwig via Digitalmars-d-announce
Am 10.02.2016 um 09:50 schrieb Iain Buclaw via Digitalmars-d-announce: Not a problem. We may be on 2.068 sooner than you think (I know that 2.067 has been in branch/PR forever ;-) Iain. Really glad to hear that! BTW, is anything moving w.r.t. integrating GDC (and LDC) to the auto tester for

Found on twitter: a long comparison of C with D, in Russian

2016-02-10 Thread Joakim via Digitalmars-d-announce
From habrahabr.ru, a kind of Russian Slashdot: https://habrahabr.ru/post/276227/ I used Chrome's auto-translate to read it, he mentions some D features I'd never seen before.

Re: Release vibe.d 0.7.27

2016-02-10 Thread Daniel Kozak via Digitalmars-d-announce
Dne 10.2.2016 v 09:50 Iain Buclaw via Digitalmars-d-announce napsal(a): On 9 February 2016 at 20:16, Sönke Ludwig > wrote: This release brings some larger changes: - The library has been split up into sub packages: code, utils, data,

Re: uefi-d: Booting to D

2016-02-10 Thread ZombineDev via Digitalmars-d-announce
On Tuesday, 9 February 2016 at 20:15:03 UTC, Jakub Szewczyk wrote: I have started developing a hobbyist OS, I decided I want it to be written in D, but the only possibility to write code that can be ran by the UEFI chips that replaced BIOS in modern computers was to use either assembler or C. (

Re: Poodinis (DI framework) 6.1.0 released

2016-02-10 Thread Dejan Lekic via Digitalmars-d-announce
You got a star from me there, sir. :) Really nice DI framework. Thanks!

Re: Release vibe.d 0.7.27

2016-02-10 Thread Suliman via Digitalmars-d-announce
On Wednesday, 10 February 2016 at 08:50:54 UTC, Iain Buclaw wrote: On 9 February 2016 at 20:16, Sönke Ludwig < digitalmars-d-announce@puremagic.com> wrote: This release brings some larger changes: - The library has been split up into sub packages: code, utils, data, http, mail, diet, mon

Re: Release vibe.d 0.7.27

2016-02-10 Thread Iain Buclaw via Digitalmars-d-announce
On 9 February 2016 at 20:16, Sönke Ludwig < digitalmars-d-announce@puremagic.com> wrote: > This release brings some larger changes: > > - The library has been split up into sub packages: code, utils, data, >http, mail, diet, mongodb, redis and web. This is an intermediate >step to moving

Re: Release vibe.d 0.7.27

2016-02-10 Thread Robert M. Münch via Digitalmars-d-announce
On 2016-02-09 19:16:49 +, Snke Ludwig said: - Full list of changes: http://vibed.org/blog/posts/vibe-release-0.7.27 Great stuff!! Thanks a lot for your engagement. -- Robert M. Münch http://www.saphirion.com smarter | better | faster