Re: D Language Foundation Monthly Meeting Summary for November 2022

2023-01-13 Thread Daniel Kozak via Digitalmars-d-announce
Dne čt 12. 1. 2023 12:51 uživatel Mike Parker > ... > Next, Razvan reported he had been looking at a PR to implement > the `throw` attribute for functions. The problem with it was that > it potentially breaks code that uses the `getAttributes` trait > when testing for the presence of `nothrow`. Wa

Re: Our community seems to have grown, so many people are joining the Facebook group

2020-12-28 Thread Daniel Kozak via Digitalmars-d-announce
On Mon, Dec 28, 2020 at 11:45 PM Ali Çehreli via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On 12/28/20 9:31 AM, Murilo wrote: > > > they thought a Facebook group was unnecessary, > > Not only unnecessary but divisive as well. For example, because I will > never have

Re: HTTP frameworks benchmark focused on D libraries

2020-09-28 Thread Daniel Kozak via Digitalmars-d-announce
On Sun, Sep 27, 2020 at 12:10 PM tchaloupka via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > ... > Some results are a bit surprising, ie that even with 10 runs > there are tests that are faster than C/dlang raw tests - as they > should be at the top because they really d

Re: Rationale for accepting DIP 1028 as is

2020-05-28 Thread Daniel Kozak via Digitalmars-d-announce
On Thu, May 28, 2020 at 4:56 AM Jonathan M Davis via Digitalmars-d-announce wrote: > > As far as I can tell, Walter understands the issues but fundamentally > disagrees with pretty much everyone else on the issue. I do not think so, the issue is, that there could be more people who agree with Wal

Re: during: a io_uring wrapper library

2019-12-09 Thread Daniel Kozak via Digitalmars-d-announce
On Sunday, 8 December 2019 at 10:35:24 UTC, tchaloupka wrote: As of Linux kernel 5.1 new promissing io_uring interface was introduced (see introduction document https://kernel.dk/io_uring.pdf). During[1] is a low level wrapper directly around Linux https://bitbucket.org/kozzi11/during_io/src

Re: D for microservices: ldc, rdmd, dub now available on Alpine x86_64

2019-11-05 Thread Daniel Kozak via Digitalmars-d-announce
On Tue, Nov 5, 2019 at 12:05 PM Dejan Lekic via Digitalmars-d-announce wrote: > > On Tuesday, 5 November 2019 at 02:16:28 UTC, Mathias Lang wrote: > > Hi all, > > Recently there have been inquiries about support for D on > > Alpine Linux, a distribution mostly used in combination with > > Docker t

Re: D code running on the Nintendo 3DS

2019-10-21 Thread Daniel Kozak via Digitalmars-d-announce
On Sun, Oct 20, 2019 at 11:40 PM TheGag96 via Digitalmars-d-announce wrote: > > On Sunday, 20 October 2019 at 20:31:04 UTC, Johan wrote: > > (snip) > > Awesome, I just might try to get LDC working with this... > > ... > ...in order to fit the D naming style, since the semantics for > the enum was

Re: Release D 2.088.0

2019-09-03 Thread Daniel Kozak via Digitalmars-d-announce
On Tue, Sep 3, 2019 at 10:48 AM Manu via Digitalmars-d-announce wrote: > > On Tue., 3 Sep. 2019, 1:00 am Martin Nowak via Digitalmars-d-announce, > wrote: >> >> Glad to announce D 2.088.0, ♥ to the 58 contributors. >> >> This release comes with a new getLocation trait, a getAvailableDiskSpace >>

Re: Intellij: Support for TextMate Bundled

2019-07-25 Thread Daniel Kozak via Digitalmars-d-announce
On Thu, Jul 25, 2019 at 8:50 PM bachmeier via Digitalmars-d-announce wrote: > Curious if there are a lot of D programmers using IntelliJ. It's > $500 just for the first year. Thats not true. I have all products pack (include idea, clion, pystorm, phpstorm ...) and I am paying something like $200

Re: Blog post: What D got wrong

2018-12-20 Thread Daniel Kozak via Digitalmars-d-announce
default(attributes..) is no needed. You can already do this by: pure @safe: // your code But what is needed is some way to disable those attributes. As you mentioned one way could be done by allowing this: pure(false) or pure!false or @disable(pure,@nogc...) >From implementation point of vie

Re: Blog post: What D got wrong

2018-12-11 Thread Daniel Kozak via Digitalmars-d-announce
On Tue, Dec 11, 2018 at 11:50 AM Atila Neves via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > A few things that have annoyed me about writing D lately: > > https://atilanevesoncode.wordpress.com/2018/12/11/what-d-got-wrong/ Eponymous templates - workaround https://run

Re: D compilation is too slow and I am forking the compiler

2018-11-21 Thread Daniel Kozak via Digitalmars-d-announce
I would say opposite :) On Wed, Nov 21, 2018 at 9:55 PM Walter Bright via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On 11/21/2018 5:55 AM, Guillaume Piolat wrote: > > On Wednesday, 21 November 2018 at 11:18:22 UTC, Nicholas Wilson wrote: > >> On Wednesday, 21 Novembe

LLVM 7.0.0 no mention of D anymore

2018-09-19 Thread Daniel Kozak via Digitalmars-d-announce
http://releases.llvm.org/7.0.0/docs/ReleaseNotes.html#external-open-source-projects-using-llvm-7 no mention of D anymore :( http://releases.llvm.org/6.0.0/docs/ReleaseNotes.html#external-open-source-projects-using-llvm-6 http://releases.llvm.org/5.0.0/docs/ReleaseNotes.html#external-open-source

Re: GDC with D frontend 2.081.2

2018-08-29 Thread Daniel Kozak via Digitalmars-d-announce
On Wed, Aug 29, 2018 at 8:35 AM Johannes Pfau via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > But this only works as you build gdc and gcc separately. I.e. for gdc, > you build gcc+gdc, then throw away everything but gdc related > executables. Then you compile gcc with

Re: GDC with D frontend 2.081.2

2018-08-28 Thread Daniel Kozak via Digitalmars-d-announce
On Tue, Aug 28, 2018 at 8:40 AM Eugene Wissner via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Tuesday, 28 August 2018 at 06:18:28 UTC, Daniel Kozak wrote: > > On Mon, Aug 27, 2018 at 7:55 PM Eugene Wissner via > > Digitalmars-d-announce <

Re: GDC with D frontend 2.081.2

2018-08-27 Thread Daniel Kozak via Digitalmars-d-announce
On Mon, Aug 27, 2018 at 7:55 PM Eugene Wissner via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Monday, 27 August 2018 at 17:23:04 UTC, Arun Chandrasekaran > wrote: > > 1. It would be good to print the DMD frontend version with `gdc > > --version`. It is helpful in re

Re: GDC with D frontend 2.081.2

2018-08-27 Thread Daniel Kozak via Digitalmars-d-announce
On Sat, Aug 25, 2018 at 11:20 PM Anonymouse via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Saturday, 25 August 2018 at 20:59:56 UTC, Daniel Kozak wrote: > > August 10th. I'll wait for -2 then. > > > Installed Size : 243.72 MiB

Re: GDC with D frontend 2.081.2

2018-08-25 Thread Daniel Kozak via Digitalmars-d-announce
On Sat, Aug 25, 2018 at 10:10 PM Anonymouse via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Friday, 24 August 2018 at 08:30:35 UTC, Daniel Kozak wrote: > > On Friday, 24 August 2018 at 05:35:13 UTC, Eugene Wissner wrote: > >> As some of you

Re: GDC with D frontend 2.081.2

2018-08-24 Thread Daniel Kozak via Digitalmars-d-announce
On Fri, Aug 24, 2018 at 10:40 AM Basile B. via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Friday, 24 August 2018 at 05:35:13 UTC, Eugene Wissner wrote: > > As some of you may know D frontend was merged into GDC some > > time ago and is up to date. D version currentl

Re: GDC with D frontend 2.081.2

2018-08-24 Thread Daniel Kozak via Digitalmars-d-announce
On Friday, 24 August 2018 at 05:35:13 UTC, Eugene Wissner wrote: As some of you may know D frontend was merged into GDC some time ago and is up to date. D version currently supported by GDC is 2.081.2 and it can be found in "gdc-7" and "gdc-8" branches. I will say a bit more about GDC developme

Re: asdf json library moved to libmir

2018-07-11 Thread Daniel Kozak via Digitalmars-d-announce
On Wed, Jul 11, 2018 at 11:45 PM yannick via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > Hi All, > > Since i'll be leaving Tamedia (who sponsored development of Asdf) > and it's not under active use anymore here we decided to donate > it to libmir. > > Asdf has a few ni

Re: Hunt framework 1.0.0 released

2018-06-05 Thread Daniel Kozak via Digitalmars-d-announce
On Tue, Jun 5, 2018 at 3:54 PM, Steven Schveighoffer via Digitalmars-d-announce wrote: > On 6/5/18 3:25 AM, Brian wrote: > > source code in github https://github.com/huntlabs/hunt/ >> documents in wiki https://github.com/huntlabs/hunt/wiki/ >> hunt framework website http://www.huntframework.com/

Re: Funding for code-d/serve-d

2018-05-07 Thread Daniel Kozak via Digitalmars-d-announce
Works OK for me, on Arch linux and fedora On Mon, May 7, 2018 at 11:29 AM, Dechcaudron via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Sunday, 6 May 2018 at 16:31:02 UTC, Meta wrote: > >> Also, does anyone have an image of the supporter t-shirts? If possible I >> wa

Re: Enum and Function Parameters Attributes -- No DIP Required

2018-04-12 Thread Daniel Kozak via Digitalmars-d-announce
DIP is an abbreviation for D Improvement Proposals, so in theory we should have DIP for every bugfix (if I follow your logic), because it is an improvment :D. No I do not agree with this. UDAs has been added before DIPs and as original author said the definition of UDAs ( https://dlang.org/spec/att

Re: [OT] gdc status

2018-04-11 Thread Daniel Kozak via Digitalmars-d-announce
AFAIK, GDC does not make it, so hopefully it will be merge with gcc 9 On Wed, Apr 11, 2018 at 3:44 PM, drug via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > 11.04.2018 16:26, Uknown пишет: > > On Wednesday, 11 April 2018 at 13:17:23 UTC, drug wrote: >> >>> 11.04.2018 15

Re: Vibe.d web interface tutorial

2018-03-13 Thread Daniel Kozak via Digitalmars-d-announce
Yes PHP is always to blame :) On Tue, Mar 13, 2018 at 1:55 PM, Steven Schveighoffer via Digitalmars-d-announce wrote: > On 3/13/18 6:22 AM, Daniel Kozak wrote: > >> On contrary I really hate that :D. >> Because of this: >> >> HTTP methodRecognized prefixes &

Re: Vibe.d web interface tutorial

2018-03-13 Thread Daniel Kozak via Digitalmars-d-announce
On contrary I really hate that :D. Because of this: HTTP method Recognized prefixes GET get, query PUT set, put POST add, create, post DELETE remove, erase, delete PATCH update, patch I am calling vibed from PHP and I need to tweak my curl for every request baceuse of this :D public function se

Re: State of D 2018 Survey

2018-03-01 Thread Daniel Kozak via Digitalmars-d-announce
Ok, I have same feeling, but after trying to fill this survey with one of my colleague, I have find out that it takes "only" 15 minutes to complete. But still I thing almost everyone from our field is OK with filling surveys anyway. On Thu, Mar 1, 2018 at 10:24 PM, Bill Baxter via Digitalmars-d-an

Re: Beta 2.079.0

2018-02-22 Thread Daniel Kozak via Digitalmars-d-announce
I still believe it should be something more readable: import std.stdio, std.conv : [ to, from ], std.algorithm : doSomething, std.whatever; On Thu, Feb 22, 2018 at 11:30 AM, psychoticRabboit via Digitalmars-d-announce wrote: > On Thursday, 22 February 2018 at 09:42:47 UTC, Atila Neves wrote: >

D support for ChromeOS

2018-02-03 Thread Daniel Kozak via Digitalmars-d-announce
Today I have added basic support for D language (ldc and dub) to chromebrew: https://github.com/skycocker/chromebrew/pull/1717 So if you have ChromeBook with Chrome OS (developer mode is needed for chromebrew), you can try it, if everything works ok for you.

Re: Another take on decimal data types

2018-01-08 Thread Daniel Kozak via Digitalmars-d-announce
Wow awesome, it would be nice if you could add it as a dub package ( http://code.dlang.org/publish) to dub repository (http://code.dlang.org) On Mon, Jan 8, 2018 at 11:16 PM, rumbu via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > This is my first D finalized project (+1

Re: Intellij D Language v1.15.2

2017-11-27 Thread Daniel Kozak via Digitalmars-d-announce
On my Archlinux there is no DSCanner error so maybe it something wrong with my fedora box at work. But I have many Possibly undefined symbol warnings and I do not know what it is. On Mon, Nov 27, 2017 at 11:41 AM, Daniel Kozak wrote: > Another problem is when I am on some another project

Re: Intellij D Language v1.15.2

2017-11-27 Thread Daniel Kozak via Digitalmars-d-announce
when it takes more then one second to finish (it makes seems like nothing happened at all) On Mon, Nov 27, 2017 at 11:33 AM, Daniel Kozak wrote: > OK, right now I have test it on my another pc, and it does not even load > project (my IDE is completly frozen), but dub describe takes to lo

Re: Intellij D Language v1.15.2

2017-11-27 Thread Daniel Kozak via Digitalmars-d-announce
OK, right now I have test it on my another pc, and it does not even load project (my IDE is completly frozen), but dub describe takes to long too. So I guess it is not perfect to use it when code.dlang.org is down. On Mon, Nov 27, 2017 at 10:10 AM, Daniel Kozak wrote: > I will try it ag

Re: Intellij D Language v1.15.2

2017-11-27 Thread Daniel Kozak via Digitalmars-d-announce
I will try it again today and send more details On Fri, Nov 24, 2017 at 10:29 PM, singingbush via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Friday, 24 November 2017 at 11:52:52 UTC, Daniel Kozak wrote: > >> I have try it, but does not seem to

Re: Intellij D Language v1.15.2

2017-11-24 Thread Daniel Kozak via Digitalmars-d-announce
I have try it, but does not seem to work, Event log is full of some DScanner Error: 12:50 DScanner Error 2017-11-24T12:50:53.293:first.d:visit:325 Could not locate object.d or object.di 12:50 DScanner Error 2017-11-24T12:50:53.293:first.d:visit:411 Could not resolve location of module 'vibe/web/r

Re: Release D 2.077.0

2017-11-03 Thread Daniel Kozak via Digitalmars-d-announce
I have SIGSEGV when using DMD and simd types. This code works ok with GDC and LDC fine, but SIGSEGV with latest DMD (maybe even with previous versions I do not know) https://dpaste.dzfl.pl/5476f5bef828 On Fri, Nov 3, 2017 at 5:04 PM, Steven Schveighoffer via Digitalmars-d-announce wrote: > On 1

Re: Release D 2.077.0

2017-11-03 Thread Daniel Kozak via Digitalmars-d-announce
On Thursday, 2 November 2017 at 22:35:03 UTC, Martin Nowak wrote: Glad to announce D 2.077.0. This release comes with a new, more compact mangling, templated vector operations, reproducible dmd builds, and various fixes. Thanks to everyone involved in this 👏. http://downloads.dlang.org/releas

Re: Released vibe.d 0.8.1

2017-08-31 Thread Daniel Kozak via Digitalmars-d-announce
Same here. We are moving from mongo to postgresql. And we are going to rewrite our geolocation services from C# and mongo to D(vibe.d) and PostgreSQL Dne 31. 8. 2017 7:15 odpoledne napsal uživatel "Matthias Klumpp via Digitalmars-d-announce" : On Thursday, 31 August 2017 at 11:56:53 UTC, aberba

Re: D on Tiobe Index

2017-08-31 Thread Daniel Kozak via Digitalmars-d-announce
They have changed way how is index compute. They do this many times in history, so there is almost zero value in this graph Dne 31. 8. 2017 6:42 odpoledne napsal uživatel "SrMordred via Digitalmars-d-announce" : On Thursday, 31 August 2017 at 14:57:28 UTC, bitwise wrote: > https://www.tiobe.com

Re: I'm the new package maintainer for D on ArchLinux

2017-08-09 Thread Daniel Kozak via Digitalmars-d-announce
This is awesome :). Congratulation to your new role On Wed, Aug 9, 2017 at 10:42 PM, Wild via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > Hi everyone, > > The D packages for ArchLinux has been orphaned since Dicebot stepped down > as the maintainer and no one else step

Re: Beta D 2.075.1

2017-08-08 Thread Daniel Kozak via Digitalmars-d-announce
https://issues.dlang.org/show_bug.cgi?id=17731 On Tue, Aug 8, 2017 at 4:45 PM, Vladimir Panteleev via Digitalmars-d-announce wrote: > On Tuesday, 8 August 2017 at 08:41:15 UTC, Martin Nowak wrote: > >> This release does not ship with the dman tool due to an unresolved issue. >> > > What's the pr

Re: Visual Studio Code code-d serve-d beta release

2017-08-06 Thread Daniel Kozak via Digitalmars-d-announce
After reinstaling serve-d-git it is working ok for me now On Sun, Aug 6, 2017 at 4:28 PM, Daniel Kozak wrote: > No I have none of those directories in my system (ArchLinux), I have > install this aur package https://aur.archlinux.org/packages/serve-d-git > and then code-d serve-d

Re: Visual Studio Code code-d serve-d beta release

2017-08-06 Thread Daniel Kozak via Digitalmars-d-announce
com> wrote: > On Sunday, 6 August 2017 at 09:48:22 UTC, Daniel Kozak wrote: > >> https://pastebin.com/3hp2b5qy >> >> [...] >> > > oh right you still have the old version. Remove the serve-d directory > (~/.local/share/code-d, ~/.code-d or %APPDATA%/code-d) an

Re: Visual Studio Code code-d serve-d beta release

2017-08-06 Thread Daniel Kozak via Digitalmars-d-announce
It does not select compiler correctly: [kozak@kleopatra dbsync]$ dub build --config= --arch=x86_64 --build=debug --compiler= Error processing arguments: Missing value for argument --compiler=. Run 'dub help' for usage information. On Sun, Aug 6, 2017 at 11:48 AM, Daniel Kozak wrote

Re: Visual Studio Code code-d serve-d beta release

2017-08-06 Thread Daniel Kozak via Digitalmars-d-announce
https://pastebin.com/3hp2b5qy On Sun, Aug 6, 2017 at 10:54 AM, WebFreak001 via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote: > On Sunday, 6 August 2017 at 01:28:20 UTC, Soulsbane wrote: > >> On Saturday, 5 August 2017 at 22:43:31 UTC, WebFreak001 wrote: >> >>> You might re

Re: DCompute is now in the master branch of LDC

2017-05-31 Thread Daniel Kozak via Digitalmars-d-announce
Dne 31.5.2017 v 12:01 Jonathan M Davis via Digitalmars-d-announce napsal(a): On Wednesday, May 31, 2017 09:07:16 ParticlePeter via Digitalmars-d-announce wrote: On Tuesday, 30 May 2017 at 18:06:56 UTC, Walter Bright wrote: On 5/30/2017 5:12 AM, Nicholas Wilson wrote: Ah, isn't English wonder

Re: DCompute is now in the master branch of LDC

2017-05-30 Thread Daniel Kozak via Digitalmars-d-announce
Dne 30.5.2017 v 21:23 Jack Stouffer via Digitalmars-d-announce napsal(a): On Tuesday, 30 May 2017 at 18:06:56 UTC, Walter Bright wrote: I fear the conversation will go like this, like it has for me: N: DCompute W: What's DCompute? N: Enables GPU programming with D W: Cool! instead of: N

Re: Harbored-mod 0.2.1 and DYaml 0.6.1 at dlang-community

2017-05-16 Thread Daniel Kozak via Digitalmars-d-announce
Nice, I have wait so many months until I decided to fork yamkeys because of d-yaml. Now I can delete it thanks. This makes my live easier. This is something I want to propose many times, that there is something like dlang-community. Btw. is there some more info about it. Because I miss it somehow

Re: Introducing Diskuto - an embeddable comment system

2017-03-14 Thread Daniel Kozak via Digitalmars-d-announce
Dne 14.3.2017 v 21:24 Sönke Ludwig via Digitalmars-d-announce napsal(a): On Tuesday, 14 March 2017 at 20:02:08 UTC, Daniel Kozak wrote: Dne 14.3.2017 v 20:54 Azbuka via Digitalmars-d-announce napsal(a): On Tuesday, 14 March 2017 at 19:39:08 UTC, Daniel Kozak wrote: Sorry but I do not see

Re: Introducing Diskuto - an embeddable comment system

2017-03-14 Thread Daniel Kozak via Digitalmars-d-announce
Dne 14.3.2017 v 20:54 Azbuka via Digitalmars-d-announce napsal(a): On Tuesday, 14 March 2017 at 19:39:08 UTC, Daniel Kozak wrote: Sorry but I do not see it. Which one? Looks like it have been deleted. Okay, 2k upvotes is too much. I'll make it 100. curl 'http://rejectedso

Re: Introducing Diskuto - an embeddable comment system

2017-03-14 Thread Daniel Kozak via Digitalmars-d-announce
Dne 14.3.2017 v 20:54 Azbuka via Digitalmars-d-announce napsal(a): On Tuesday, 14 March 2017 at 19:39:08 UTC, Daniel Kozak wrote: Sorry but I do not see it. Which one? Looks like it have been deleted. Okay, 2k upvotes is too much. I'll make it 100. Deleted :D

Re: Introducing Diskuto - an embeddable comment system

2017-03-14 Thread Daniel Kozak via Digitalmars-d-announce
Dne 14.3.2017 v 20:17 Azbuka via Digitalmars-d-announce napsal(a): On Tuesday, 14 March 2017 at 14:26:35 UTC, Sönke Ludwig wrote: Yeah, still tweaking a few things here and there. Very helpful to have people try out weird things ;) I'm just not sure how well that will work after someone posts

Re: vibe.d 0.8.0 and 0.7.31 beta releases

2017-02-13 Thread Daniel Kozak via Digitalmars-d-announce
Dne 13.2.2017 v 23:49 Daniel Kozak via Digitalmars-d-announce napsal(a): On Wednesday, 1 February 2017 at 14:01:39 UTC, Sönke Ludwig wrote: Still does not works, it always try to build vibe-d:core with libevent, only way how to avoid it, is to manualy remove all others configurations from

Re: vibe.d 0.8.0 and 0.7.31 beta releases

2017-02-13 Thread Daniel Kozak via Digitalmars-d-announce
On Wednesday, 1 February 2017 at 14:01:39 UTC, Sönke Ludwig wrote: Am 01.02.2017 um 10:46 schrieb aberba: On Wednesday, 1 February 2017 at 09:35:02 UTC, Sönke Ludwig wrote: Am 31.01.2017 um 12:11 schrieb Sönke Ludwig: The first release of the revamped core module [1] is nearing, and along with

Re: Updated LDC snap package with link-time optimization (LTO) support

2017-02-10 Thread Daniel Kozak via Digitalmars-d-announce
Dne 10.2.2017 v 17:30 David Nadlinger via Digitalmars-d-announce napsal(a): On Thursday, 9 February 2017 at 17:16:35 UTC, Joseph Rushton Wakeling wrote: This package should be possible to install on Ubuntu 16.04 or later, or Ubuntu 14.04, as well as any other distro making available a recent v

Re: two points

2017-02-09 Thread Daniel Kozak via Digitalmars-d-announce
Dne 9.2.2017 v 21:43 Walter Bright via Digitalmars-d-announce napsal(a): On 2/9/2017 12:29 PM, Joseph Rushton Wakeling wrote: Yes, but it could be good to examine what can be done to more pro-actively look at open PRs that have had no recent follow-up. *Anyone* in this community can step up

Re: Call for arms: Arch Linux D package maintenance

2017-02-07 Thread Daniel Kozak via Digitalmars-d-announce
Dne 7.2.2017 v 12:52 Joseph Rushton Wakeling via Digitalmars-d-announce napsal(a): On Thursday, 2 February 2017 at 10:08:19 UTC, Daniel Kozak wrote: I belive arch would prefer flatpak ;) Didn't notice this before, but: the good thing about both snap and flatpak is one doesn'

Re: Call for arms: Arch Linux D package maintenance

2017-02-02 Thread Daniel Kozak via Digitalmars-d-announce
I belive arch would prefer flatpak ;) Dne 2. 2. 2017 11:06 AM napsal uživatel "qznc via Digitalmars-d-announce" < digitalmars-d-announce@puremagic.com>: > On Wednesday, 1 February 2017 at 12:47:51 UTC, Dicebot wrote: > >> As I have previously announced (http://forum.dlang.org/post/o >> 6fbbu$1qli

Re: mysql-native: API Refresh RC

2017-01-30 Thread Daniel Kozak via Digitalmars-d-announce
Dne 30.1.2017 v 10:53 aberba via Digitalmars-d-announce napsal(a): On Monday, 30 January 2017 at 08:09:18 UTC, Daniel Kozak wrote: Wow :) Maybe it is time to go back from mysql-lited to mysql-native :) I doubt that. Mysql-lited has support for using a struct as a Schema for DB queries. The

Re: mysql-native: API Refresh RC

2017-01-30 Thread Daniel Kozak via Digitalmars-d-announce
Dne 30.1.2017 v 10:14 Dejan Lekic via Digitalmars-d-announce napsal(a): On Monday, 30 January 2017 at 02:56:27 UTC, Nick Sabalausky wrote: I've been working on a big refresh of mysql-native's API, to take care of various issues that have appeared with it. It involves some major breaking change

Re: mysql-native: API Refresh RC

2017-01-30 Thread Daniel Kozak via Digitalmars-d-announce
Wow :) Maybe it is time to go back from mysql-lited to mysql-native :) Dne 30.1.2017 v 03:56 Nick Sabalausky via Digitalmars-d-announce napsal(a): I've been working on a big refresh of mysql-native's API, to take care of various issues that have appeared with it. It involves some major breakin

Re: Release D 2.072.0

2016-11-09 Thread Daniel Kozak via Digitalmars-d-announce
Dne 9.11.2016 v 15:17 Dicebot via Digitalmars-d-announce napsal(a): Sadly, because of overwhelming project breakage I have to revert Arch Linux dmd package version back to 2.071.2 until 2.072.1 is out :( Going to look into known regressions later this week, at least some of them look easily fix

Re: Release D 2.072.0

2016-11-06 Thread Daniel Kozak via Digitalmars-d-announce
Dne 6.11.2016 v 07:58 Sönke Ludwig via Digitalmars-d-announce napsal(a): Am 03.11.2016 um 14:18 schrieb Andre Pany: On Thursday, 3 November 2016 at 12:17:29 UTC, Sönke Ludwig wrote: Am 03.11.2016 um 06:58 schrieb Andre Pany: Temp-folder builds are only done if the special shebang invocation s

Re: New team member: Lucia

2016-10-13 Thread Daniel Kozak via Digitalmars-d-announce
Dne 13.10.2016 v 20:15 Andrei Alexandrescu via Digitalmars-d-announce napsal(a): Hello everyone, Please join me in welcoming Lucia Lucia Cojocaru to our team. Lucia is a MSc student in computer security, having Razvan Deaconescu and Razvan Rughiniș as advisers. She just completed an interns

Re: Beta 2.072.0-b1

2016-10-01 Thread Daniel Kozak via Digitalmars-d-announce
Nice work. One small issue link to Unrestricted Unions http://dlang.org/changelog/2.072.0.html#unrestricted_unions does not work Dne 1.10.2016 v 22:57 Martin Nowak via Digitalmars-d-announce napsal(a): First beta for the 2.072.0 re

Re: Terminix 1.30 Released

2016-09-30 Thread Daniel Kozak via Digitalmars-d-announce
On Friday, 30 September 2016 at 18:32:37 UTC, Gerald wrote: Terminix 1.30 has been released, for those not familiar with it Terminix is a Linux terminal emulator targeting the Gnome desktop environment. It is written in D using the GtkD library. More information about Terminix is available on

Re: Terminix 1.30 Released

2016-09-30 Thread Daniel Kozak via Digitalmars-d-announce
On Friday, 30 September 2016 at 18:32:37 UTC, Gerald wrote: Terminix 1.30 has been released, for those not familiar with it Terminix is a Linux terminal emulator targeting the Gnome desktop environment. It is written in D using the GtkD library. More information about Terminix is available on

New user, even she does not know yet

2016-09-26 Thread Daniel Kozak via Digitalmars-d-announce
https://onedrive.live.com/?authkey=!AEQ5lsngH-Oe3DA&id=87E57DF7155C89C9!24197&cid=87E57DF7155C89C9

Re: Ocean v2.1.1 released

2016-09-23 Thread Daniel Kozak via Digitalmars-d-announce
On Friday, 23 September 2016 at 03:04:29 UTC, Chris Wright wrote: What does Ocean do? From github repo: Ocean is a general purpose library, compatible with both D1 and D2, with a focus on supporting the development of high-performance, real-time applications. This focus has led to several n

Re: LDC: Speed up incremental builds with object file caching

2016-09-18 Thread Daniel Kozak via Digitalmars-d-announce
On Sunday, 18 September 2016 at 10:21:41 UTC, Daniel Kozak wrote: Dne 18.9.2016 v 10:07 Johan Engelen via Digitalmars-d-announce napsal(a): On Saturday, 17 September 2016 at 19:17:44 UTC, Daniel Kozak wrote: Nice article, however font on this site is too small to read, I have to zoom in

Re: LDC: Speed up incremental builds with object file caching

2016-09-18 Thread Daniel Kozak via Digitalmars-d-announce
Dne 18.9.2016 v 10:07 Johan Engelen via Digitalmars-d-announce napsal(a): On Saturday, 17 September 2016 at 19:17:44 UTC, Daniel Kozak wrote: Nice article, however font on this site is too small to read, I have to zoom in :( Do more people have this problem? For me, the font size is

Re: LDC: Speed up incremental builds with object file caching

2016-09-17 Thread Daniel Kozak via Digitalmars-d-announce
Dne 17.9.2016 v 20:46 Johan Engelen via Digitalmars-d-announce napsal(a): I just finished another post about LDC: https://johanengelen.github.io/ldc/2016/09/17/LDC-object-file-caching.html Thanks in advance for letting me know about any bugs you find, in the text or in the code :) -Johan

Re: Adventures in D Programming

2016-05-12 Thread Daniel Kozak via Digitalmars-d-announce
Dne 12.5.2016 v 23:08 Matthias Klumpp via Digitalmars-d-announce napsal(a): First of all, that blogpost generated way more buzz than I expected - looks like D is highly interesting to people, which is great news :-) To elaborate a bit more on the version incompatibilities thing: E.g. me as a

Re: To all DConf speakers: please upload slides!

2016-05-12 Thread Daniel Kozak via Digitalmars-d-announce
Dne 12.5.2016 v 22:55 Steven Schveighoffer via Digitalmars-d-announce napsal(a): On 5/12/16 4:13 PM, Seb wrote: On Wednesday, 11 May 2016 at 09:17:54 UTC, Dicebot wrote: To do the editing of HD videos we need presentation slides which are currently scattered over different places. It would he

Re: Adventures in D Programming

2016-05-08 Thread Daniel Kozak via Digitalmars-d-announce
Dne 8.5.2016 v 21:12 Adam D. Ruppe via Digitalmars-d-announce napsal(a): On Sunday, 8 May 2016 at 19:09:07 UTC, Daniel Kozak wrote: I remember that I have mentioned that once here, but I thing there was not big interest at it :( I'm doing it on dpldocs.info as soon as I leave the

Re: Adventures in D Programming

2016-05-08 Thread Daniel Kozak via Digitalmars-d-announce
Dne 8.5.2016 v 21:09 Daniel Kozak napsal(a): Dne 8.5.2016 v 19:19 qznc via Digitalmars-d-announce napsal(a): On Sunday, 8 May 2016 at 06:05:36 UTC, Iain Buclaw wrote: http://blog.tenstral.net/2016/05/adventures-in-d-programming.html Thanks, I missed that post until now. &quo

Re: Adventures in D Programming

2016-05-08 Thread Daniel Kozak via Digitalmars-d-announce
Dne 8.5.2016 v 19:19 qznc via Digitalmars-d-announce napsal(a): On Sunday, 8 May 2016 at 06:05:36 UTC, Iain Buclaw wrote: http://blog.tenstral.net/2016/05/adventures-in-d-programming.html Thanks, I missed that post until now. "the documentation not matching the actual code is a bad experien

2k questions on SO

2016-04-17 Thread Daniel Kozak via Digitalmars-d-announce
http://stackoverflow.com/tags/d/info

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: 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: 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: New D book available for pre-order: D Web Development

2016-01-30 Thread Daniel Kozak via Digitalmars-d-announce
On Sunday, 24 January 2016 at 14:35:53 UTC, Kai Nacke wrote: On Sunday, 24 January 2016 at 13:03:42 UTC, notna wrote: Any news? Just some days left until "January 2016" is over ;) I am checking the pre-final PDFs of the last chapters right now. Publishing date will be very soon Regards, K

Re: Vision for the first semester of 2016

2016-01-25 Thread Daniel Kozak via Digitalmars-d-announce
V Mon, 25 Jan 2016 16:25:02 + JohnCK via Digitalmars-d-announce napsáno: > On Monday, 25 January 2016 at 06:39:54 UTC, Andrew Edwards wrote: > ... > Well, I think the question is: IDE is a main thing today? If you > take the languages that emerged along the years, some of them are > backed

Re: Three Cool Things about D

2015-12-26 Thread Daniel Kozak via Digitalmars-d-announce
https://strongloop.com/strongblog/compare-javascript-templates-jade-mustache-dust/ Andrei Alexandrescu via Digitalmars-d-announce napsal So, pro 26, 2015 v 8∶58 : On 12/26/15 1:35 PM, Rory McGuire via Digitalmars-d-announce wrote: I have a full Jade template parser in Pegged that I just need

Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Daniel Kozak via Digitalmars-d-announce
On Monday, 7 December 2015 at 20:42:21 UTC, Adam D. Ruppe wrote: On Monday, 7 December 2015 at 19:37:11 UTC, deadalnix wrote: Adam won't be coming ? I haven't decided for sure yet, but probably not. I don't like travel at all and the thought of a trans-atlantic flight strikes me as the worst

Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Daniel Kozak via Digitalmars-d-announce
On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu wrote: We're over 20% full and seats are going fast! I hope I was the first one :D. We planned to send an announcement when we're 50% sold out. However, this time around registrations are coming quite a bit quicker than before

Re: Official Announcement: 'Learning D' is Released

2015-12-01 Thread Daniel Kozak via Digitalmars-d-announce
V Tue, 01 Dec 2015 15:27:35 + bachmeier via Digitalmars-d-announce napsáno: > Sorry to steal your thunder. I assumed I wasn't keeping up. I > actually went to that website because I had just noticed Kai > Nacke's book announcement from July, and there was your book, at > half price. > > I

Re: Official Announcement: 'Learning D' is Released

2015-12-01 Thread Daniel Kozak via Digitalmars-d-announce
V Tue, 01 Dec 2015 06:17:15 + Mike Parker via Digitalmars-d-announce napsáno: > Due to a minor mix up at the end of an otherwise enjoyable > process, I wasn't notified that 'Learning D' was released on Nov > 27. Today, I finally got that notification. Despite there already > being a thread

Re: Learning D

2015-11-30 Thread Daniel Kozak via Digitalmars-d-announce
V Mon, 30 Nov 2015 04:09:42 + Mike Parker via Digitalmars-d-announce napsáno: > On Monday, 30 November 2015 at 02:36:01 UTC, bachmeier wrote: > > The book "Learning D" by Michael Parker is available at half > > price through November 30: > > > > https://www.packtpub.com/application-developme

Re: D compiler daily downloads at an all-time high

2015-11-16 Thread Daniel Kozak via Digitalmars-d-announce
On Monday, 16 November 2015 at 17:49:34 UTC, ixid wrote: On Monday, 16 November 2015 at 15:20:51 UTC, Andrei Alexandrescu wrote: That's a new all-times high ever since we started measuring on January 02, 2013. The previous record, 1630 average daily downloads, was established in the four weeks

Re: DConf 2016 Early Bird Registration Open

2015-11-16 Thread Daniel Kozak via Digitalmars-d-announce
On Monday, 16 November 2015 at 17:18:04 UTC, Andrei Alexandrescu wrote: http://dconf.org/2016/registration.html The DConf 2016 registration is now open. Early bird registration is $250, regular registration (after we publish the schedule on Feb 29) is $400. Those of you who cannot attend are

Re: D compiler daily downloads at an all-time high

2015-11-16 Thread Daniel Kozak via Digitalmars-d-announce
On Monday, 16 November 2015 at 16:04:09 UTC, David Gileadi wrote: On 11/16/15 8:57 AM, Andrea Fontana wrote: So November is the dmd month and nobody knows. It would make more sense for it to have been D-cember. Not in all languages :) czech november - Listopa-D D-ecember - prosinec So Lis

Re: DConf 2016, Berlin: Call for Submissions is now open!

2015-10-28 Thread Daniel Kozak via Digitalmars-d-announce
Wow, I can't wait :-). One question, when I would be able to make a registration? Dne 23. 10. 2015 18:40 napsal uživatel "Andrei Alexandrescu via Digitalmars-d-announce" : > > Please join us at DConf 2016, the conference of the D programming language in Berlin, Germany, May 4-6 2016. > > We're ver

Re: The D Language Foundation is now incorporated

2015-10-16 Thread Daniel Kozak via Digitalmars-d-announce
Andrei Alexandrescu píše v Pá 16. 10. 2015 v 13:04 +0300: > We are pleased to announce that the D Language Foundation is now > incorporated with the state of Washington, USA. The foundation's > Board > of Directors are Walter Bright, Ali Çehreli, and myself. > > Our initial administrative meetin

Re: Fastest JSON parser in the world is a D project

2015-10-15 Thread Daniel Kozak via Digitalmars-d-announce
Daniel Kozak via Digitalmars-d-announce píše v Čt 15. 10. 2015 v 11:07 +0200: > > > Gary Willoughby via Digitalmars-d-announce remagic.com> napsal Čt, říj 15, 2015 v 10∶08 : > > On Wednesday, 14 October 2015 at 07:01:49 UTC, Marco Leise wrote: > > fast:

Re: Fastest JSON parser in the world is a D project

2015-10-15 Thread Daniel Kozak via Digitalmars-d-announce
Gary Willoughby via Digitalmars-d-announce napsal Čt, říj 15, 2015 v 10∶08 : On Wednesday, 14 October 2015 at 07:01:49 UTC, Marco Leise wrote: fast: 0.34s, 226.7Mb (GDC) RapidJSON: 0.79s, 687.1Mb (GCC) (* Timings from my computer, Haswell CPU, Linux amd64.) Where's the code? code.

Re: Vibemail - extensions for vibe's Mail class to send multi-part emails with attachments

2015-09-29 Thread Daniel Kozak via Digitalmars-d-announce
Adam D.Ruppe píše v Út 29. 09. 2015 v 12:05 +: > On Tuesday, 29 September 2015 at 08:54:39 UTC, Daniel Kozak wrote: > > Wow, I need something like this 3 weeks ago, but I dont have > > time to implement this myself, so I end up with phpMailer. Now > > I can switch my li

Re: Vibemail - extensions for vibe's Mail class to send multi-part emails with attachments

2015-09-29 Thread Daniel Kozak via Digitalmars-d-announce
Sebastiaan Koppe píše v Út 29. 09. 2015 v 03:53 +: > This library[1] allows you to send multi-part emails with > attachments. > > ``` > Mail email = new Mail; > email.headers["Date"] = Clock.currTime().toRFC822DateTimeString(); > email.headers["Sender"] = "Domain.com Contact Form "; > email.h

  1   2   >