Re: Signed DMD binaries

2018-08-14 Thread Timoses via Digitalmars-d
On Monday, 13 August 2018 at 19:09:55 UTC, Jacob Carlborg wrote: Any plans for doing the same thing for the installer on macOS? It complains that it's from an unidentified developer and forces the user to go into System Preferences and reopen the installer. Can't you just usually right-click

Re: DMD installation prompts "Windows protected your PC"

2018-08-07 Thread Timoses via Digitalmars-d
On Monday, 6 August 2018 at 16:22:51 UTC, rjframe wrote: On Mon, 06 Aug 2018 14:13:02 +, Timoses wrote: Thanks Windows, not! Since our department switched to Windows 10 I'm now unable to install DMD. To make it even worse, there's no way I see to install a virtual machine any more (Vir

Re: DMD installation prompts "Windows protected your PC"

2018-08-06 Thread Timoses via Digitalmars-d
On Monday, 6 August 2018 at 14:19:47 UTC, rikki cattermole wrote: dmd works fine on W10. So the question is, are you seeing AV or are you seeing some other thing that your IT put in place (e.g. require code signing). Well, there is Kaspersky installed and I know there's been a discussion ab

DMD installation prompts "Windows protected your PC"

2018-08-06 Thread Timoses via Digitalmars-d
Thanks Windows, not! Since our department switched to Windows 10 I'm now unable to install DMD. To make it even worse, there's no way I see to install a virtual machine any more (VirtualBox or VMWare) since they collide with Hyper-V. I've disabled Hyper-V, but it seems there can be a lot of

Re: DIP 1016--ref T accepts r-values--Community Review Round 1

2018-07-20 Thread Timoses via Digitalmars-d
On Friday, 20 July 2018 at 05:16:53 UTC, Mike Parker wrote: Thanks in advance to all who participate. "It has been noted that is it possible" switch: it <-> is

Re: DMD, Vibe.d, and Dub

2018-07-18 Thread Timoses via Digitalmars-d
On Wednesday, 18 July 2018 at 12:56:05 UTC, Russel Winder wrote: Package installed, now I get: /usr/bin/ld: ../../../../../.dub/packages/vibe-d-0.8.4/vibe-d/tls/.dub/build/openssl-debug-linux.posix-x86_64-ldc_2081-B4D8997CFF9906E4CA7C7DC4C81EF881/libvibe-d_tls.a(vibe.stream.openssl.o): in fun

Re: Error: only one main allowed. Previously found main at *

2018-07-18 Thread Timoses via Digitalmars-d
On Tuesday, 19 June 2018 at 17:16:28 UTC, Brian wrote: dmd latest version bug? ```sh source/bootstrap.d(4,6): Error: only one main allowed. Previously found main at /tmp/dub_test_root-ad0fb2e3-6be1-4ca8-9153-e4fdd5c1b191.d(10,12) dmd failed with exit code 1. ``` Build logs: https://travis-ci

Re: Adding more projects to the Project Tester

2018-07-07 Thread Timoses via Digitalmars-d
On Friday, 6 July 2018 at 23:56:01 UTC, Basile B. wrote: On Friday, 6 July 2018 at 21:47:34 UTC, JN wrote: By the way, is there any policy for outdated dub packages? You just found an idea for the score algorithm. Why isn't there something like "compiler compatibility" in a dub config file

Re: `update` and `require` properties for AA

2018-06-26 Thread Timoses via Digitalmars-d
On Tuesday, 26 June 2018 at 15:51:00 UTC, H. S. Teoh wrote: On Tue, Jun 26, 2018 at 07:25:09AM +, Mike Franklin via Digitalmars-d wrote: [...] I think the documentation gets published prematurely. The new methods for the associative arrays should come in the next release, scheduled for Jul

Re: Phobos' std.conv.to-conversion from enum to string doesn't scale beyond hundreds of enumerators

2018-06-25 Thread Timoses via Digitalmars-d
On Monday, 25 June 2018 at 00:35:40 UTC, Jonathan M Davis wrote: On Sunday, June 24, 2018 23:53:09 Timoses via Digitalmars-d wrote: On Sunday, 24 June 2018 at 23:34:49 UTC, Per Nordlöw wrote: > Provided that > > __traits(allMembers, E) > > is a cheap operation as it's c

Re: Bug on website code.dlang.org

2018-06-25 Thread Timoses via Digitalmars-d
On Monday, 25 June 2018 at 14:45:31 UTC, Miguel L wrote: Sorry, I don't know where is the right place to report a bug on the web site. I just noticed searching for "code" in code.dlang.org generates this crash: I suppose it's related to: https://forum.dlang.org/post/tbdxlunlactuypmep...@forum

Re: Phobos' std.conv.to-conversion from enum to string doesn't scale beyond hundreds of enumerators

2018-06-24 Thread Timoses via Digitalmars-d
On Sunday, 24 June 2018 at 23:34:49 UTC, Per Nordlöw wrote: Provided that __traits(allMembers, E) is a cheap operation as it's called once for every enumerator. I could get it out of the loop; if I do as @property string toString() @safe pure nothrow @nogc { final switch

Re: Parenthesis around if/for/while condition is not necessary

2018-06-24 Thread Timoses via Digitalmars-d
On Sunday, 24 June 2018 at 22:03:13 UTC, Dennis wrote: if (!("key" in dict)) {...} if ("key" !in dict) {...} At least that one has a shorter form. The others may be rewritten to not have a leading "!" as well, e.g. if (!(t1.ty == Tarray && t2.ty == Tarray && needsDirectEq(t1, t2)) if (t1

Re: dub search

2018-05-08 Thread Timoses via Digitalmars-d
On Tuesday, 8 May 2018 at 15:50:01 UTC, Nicholas Wilson wrote: I was searching for zmq-d on code.dlang.org to find the git page for it ( to differentiate it from the other ama wrappers) and was greeted with 500 - Internal Server Error Internal Server Error Internal error information: vibe.db

Re: New Deimos project (neo4j-client)

2018-04-28 Thread Timoses via Digitalmars-d
On Saturday, 28 April 2018 at 13:56:49 UTC, Timoses wrote: Hey there, the link http://forum.dlang.org/group/digitalmars.D redirected me here (from http://jkm.github.io/phobos/deimos.html - digitalmars.D). Apparently, the digitalmars.D group does not exist any more!? Anyway, I'd like to ad

Re: New Deimos project (neo4j-client)

2018-04-28 Thread Timoses via Digitalmars-d
On Saturday, 28 April 2018 at 13:58:32 UTC, rikki cattermole wrote: On 29/04/2018 1:56 AM, Timoses wrote: Hey there, the link http://forum.dlang.org/group/digitalmars.D redirected me here (from http://jkm.github.io/phobos/deimos.html - digitalmars.D). Apparently, the digitalmars.D group do

New Deimos project (neo4j-client)

2018-04-28 Thread Timoses via Digitalmars-d
Hey there, the link http://forum.dlang.org/group/digitalmars.D redirected me here (from http://jkm.github.io/phobos/deimos.html - digitalmars.D). Apparently, the digitalmars.D group does not exist any more!? Anyway, I'd like to add a Deimos repository (libneo4j-client). How would I go abo