Evgeny Shvarov · Dec 9, 2020 go to post

All the backends will be implemented in InterSystems, and 50% of teams will be online. Join the Hack to help teams build the backend in IRIS!

Evgeny Shvarov · Dec 7, 2020 go to post

We added the InterSystems Reports bonus:

InterSystems Reports is a feature of InterSystems IRIS which lets you design printing reports, send them via email by schedule, and deliver interactive reports for clients. InterSystems Reports is a repackaging of Logi Report (formerly named JReport®), a product of Logi Analytics®. Learn more in Documentation.

Check the Github repo with examples of InterSystems Reports.

Also, watch the video with the demo of InterSystems Reports and try with the Learning Lab.

You can download InterSystems Reports designer and server in WRC download section.

License keys for InterSystms Reports Designer and Server will be available in Discord.

Evgeny Shvarov · Dec 4, 2020 go to post

The proposed topic for the analytics contest: introduce a utility that can go through all the pivots used in dashboards, run it, and create a report with errors. This is very useful to understand if changes to cubes and data structures brake pivots and dashboards.

Evgeny Shvarov · Dec 3, 2020 go to post

and if you want to use IntegratedML images with ZPM included use the following images:

intersystemsdc/iris-ml-community:2020.3.0.302.0-zpm

Which you can run as:

docker run --rm --name my-iris -d --publish 9091:1972 --publish 9092:52773 intersystemsdc/iris-ml-community:2020.3.0.302.0-zpm
Evgeny Shvarov · Dec 3, 2020 go to post

added the line for IntegratedML image with ZPM:

intersystemsdc/iris-ml-community:2020.3.0.302.0-zpm
Evgeny Shvarov · Nov 27, 2020 go to post

I think he just deleted his reply. We have a moderation regime on Developer Community too, of course) Moderator's team registers and blocks spam attempts every day.

Evgeny Shvarov · Nov 25, 2020 go to post

Security settings synchronization for mirroring and ECP is a different problem though a serious one. 

But there are strong recommendations from very experienced specialists to follow the Application-based security model. I want to have a discussion around - what are the key reasons for it?

Evgeny Shvarov · Nov 23, 2020 go to post

Congrats to the winners and all the participants! It was very hard to choose the best project in the contest, we had a really amazing set of applications! 

Happy to see all the participants on Friday in the celebration meetup!

Evgeny Shvarov · Nov 20, 2020 go to post

Do we still need it?

We can make it if the concept is resonating with a lot of developers. The multi-model approach expects that we use Object, or SQL, or direct global usage. Or IRIS document model usage. Or even your personal custom structure (e.g. graph, columnar, etc).

Evgeny Shvarov · Nov 17, 2020 go to post

Just wait a few days, Fabiana - it takes a while to make the account available for voting.

Evgeny Shvarov · Nov 17, 2020 go to post

Hi Mark!

CSVGEN creates a class and imports data into it vs a given CSV file or URL which could be done with one line. E.g. here is how to import fameous titanic data into IRIS:

zw ##class(community.csvgen).GenerateFromURL("https://raw.githubusercontent.com/datasciencedojo/datasets/master/titanic.csv",",","Data.Titanic)

Or from file:

USER>zw ##class(community.csvgen).Generate("/folder/filename.csv")

And of course, this task could be automated - this is what the Interoperability feature of IRIS for. Check the sample Interoperability production template which periodically loads news from Reddit and filters it upon criteria and writes into files or sends via email.  I bet we have a ton of examples of how to process folders with files, calling @Stefan Wittmann