go to post Evgeny Shvarov · Jun 19, 2018 Hi Francisco! Maybe, if we see a lot of requests on it. Your vote is counted!
go to post Evgeny Shvarov · Jun 19, 2018 Hi Minsu!We didn't plan that for this time. But there will be recording we'll publish on InterSystems Developers YouTube Channel.
go to post Evgeny Shvarov · Jun 17, 2018 Hi, Community!You can apply your enhancement requests to DC in this repository.And you can monitor the progress in this kanban projects. E.g. here is the June 2018 project.
go to post Evgeny Shvarov · Jun 15, 2018 We can. Request it in InterSystems Brazil office and we'll arrange it.
go to post Evgeny Shvarov · Jun 15, 2018 Could you please share a sample code with ordering of the main grouping to understand the problem better?
go to post Evgeny Shvarov · Jun 15, 2018 Hi, Community members!It's just a reminder on a meetup we are having on 25th in UK, Birmingham!And! We have a time slot available! So if you want to tell about your solution or share your best practices with InterSytems Data Platform please contact me or comment to this post!
go to post Evgeny Shvarov · Jun 14, 2018 No.There is official documentation in English and Japanese.Maybe there are versions of documentations in other languages.
go to post Evgeny Shvarov · Jun 14, 2018 Hi, Guilherme!Could you please send the code how do you try and can not?
go to post Evgeny Shvarov · Jun 14, 2018 Hi, John!Yes, we had the issue here - it is fixed now.Thanks for pointing this out!
go to post Evgeny Shvarov · Jun 11, 2018 Hi, Marco!If you are looking to play with InterSystems IRIS or other Data Platforms try Online Learning Experiences - all of them launch a temporary sandbox in the cloud for you to let you exercise and try the system.
go to post Evgeny Shvarov · Jun 11, 2018 Hi, David! Yes, actually all of them are already listed in your profile if you happen to accomplish it in the past.
go to post Evgeny Shvarov · Jun 9, 2018 No advantage of course if Locale Defaults works for you. That was not obvious. Does it work?
go to post Evgeny Shvarov · Jun 9, 2018 Also there is a common approach to use the root as a counter of the one-level array using $seq(uence) or $I(ncrement). E.g. Class Test.Arrays { ClassMethod ArrayExample() { set a($seq(a))="blue" set a($seq(a))="red" set a($seq(a))="yellow" write a,! // will return 3 zwrite a // will out the full array to the device } } And if we execute the following in terminal you'll get: USER>d ##class(Test.Arrays).ArrayExample() 3 a=3a(1)="blue"a(2)="red"a(3)="yellow" Also see the good article on $seq vs $I by @Alexander.Koblov HTH
go to post Evgeny Shvarov · Jun 9, 2018 Hi, Ed!You can build your own Localised dimension via expressions and put whatever language you want for the months.
go to post Evgeny Shvarov · Jun 9, 2018 Hi, Ed! Thanks!And how docker configuration looks like to go with direct-lvm?
go to post Evgeny Shvarov · Jun 6, 2018 BTW, here is what we did in May for public issues on DC.And here is the current kanban for June.Add your bug reports and enhancement requests!
go to post Evgeny Shvarov · Jun 6, 2018 Thanks Vitaly!Really great!Classmethod Public: is it to be able to call for $$functions in a class?