Re: DLang IDE for macOS

2016-10-06 Thread Alexander Milushev via Digitalmars-d-learn

On Thursday, 6 October 2016 at 10:09:24 UTC, Andrea Fontana wrote:
On Thursday, 6 October 2016 at 09:51:20 UTC, Alexander Milushev 
wrote:
On Thursday, 6 October 2016 at 09:45:03 UTC, Andrea Fontana 
wrote:
On Thursday, 6 October 2016 at 09:31:43 UTC, Alexander 
Milushev wrote:

Hi all,

Is there any good IDE for DLang for macOS? I have used 
Xamarin Studio with D Language Addin but currently it does 
not supported by developer. Also I have tried Idea with D 
Language plugin but autocomplete did not work.


You should try visual studio code with dlang addin by 
webfreak.


Is it supports dub?


Yes, and autocomplete works.


Looks like it doesn't work with vibe.d.


Re: DLang IDE for macOS

2016-10-06 Thread Alexander Milushev via Digitalmars-d-learn

On Thursday, 6 October 2016 at 09:45:03 UTC, Andrea Fontana wrote:
On Thursday, 6 October 2016 at 09:31:43 UTC, Alexander Milushev 
wrote:

Hi all,

Is there any good IDE for DLang for macOS? I have used Xamarin 
Studio with D Language Addin but currently it does not 
supported by developer. Also I have tried Idea with D Language 
plugin but autocomplete did not work.


You should try visual studio code with dlang addin by webfreak.


Is it supports dub?


DLang IDE for macOS

2016-10-06 Thread Alexander Milushev via Digitalmars-d-learn

Hi all,

Is there any good IDE for DLang for macOS? I have used Xamarin 
Studio with D Language Addin but currently it does not supported 
by developer. Also I have tried Idea with D Language plugin but 
autocomplete did not work.


Re: JSON Serialization with runtime filtering.

2016-07-25 Thread Alexander Milushev via Digitalmars-d-learn

On Saturday, 23 July 2016 at 21:30:52 UTC, yawniek wrote:
On Friday, 22 July 2016 at 12:36:31 UTC, Alexander Milushev 
wrote:
I there any json serialization library which allow to make 
decision about ignoring fields in runtime? I trying to write 
rest client but server accept either 'cmd' or 'args' field for 
example and I need to find solution.


can you give an example? i'm not sure what you mean by "ignore 
at runtime"
if its simply ignoring fields of a struct then thats easily 
doable with https://github.com/tamediadigital/asdf


Skipping all non-initialized fields in struct/class, or skipping 
all field equal some default value which can be set compile time.


JSON Serialization with runtime filtering.

2016-07-22 Thread Alexander Milushev via Digitalmars-d-learn
I there any json serialization library which allow to make 
decision about ignoring fields in runtime? I trying to write rest 
client but server accept either 'cmd' or 'args' field for example 
and I need to find solution.