Hi Ponnumani!
Do you suggest an InterSystems Community Slack conference?
- Log in to post comments
Hi Ponnumani!
Do you suggest an InterSystems Community Slack conference?
Hi Bernard! The Atelier 1.3 beta tag is introduced! Thank you!
Hi Rob! QEWD.JS is approved and posted.
Thanks Ed! Will it work in IRIS too?
About the version - I see 2,44,33 with commas:

Please put dots in the next Approval request?
About the Community Article URL - it waits for the link to a related article on DC (yes, we want to cross-promote DC with this).

This was fast! Rob, all is good, please update the article link and version and you are all set!
Hi @Rob Tweed !
Submit your QEWD framework on Open Exchange! You'll get the option to advertise it on Global Masters and DC Social media, on Youtube and even here soon.
The project also available on InterSystems Open Exchange
In what config, Ed?
Dear Community Members!
Thank you so much for making reviews! You made InterSystems Data Platforms Caché and InterSystems IRIS a Gartner Customers' Choice 2019 in Operational Database management Systems!
Hi Bert! Hi guys!
I'll be on a Symposium as well on the 5th of February and we can arrange demos of different VSCode plugins for InterSystems ObjectScript!
Hi Anthony!
It's a greeting from the DC manager )
This comment looks like an answer for me and because we have a nice feature on DC to convert comments to answers and vice-versa. So I converted it for you and if you want you can mark it as accepted answer now.
Hi David!
Emails of DC members are not exposed publicly.
BTW, do we need private messaging on DC?
Dmitry, congrats!
This is a huge step forward! But I'm looking for Open Exchange entry too ;)
Thank you, Francisco! Thanks for your contribution and involvement! And it seems we need to fix our mentioning system because of your name :) We'll be fixed )
Robert! Thanks for sharing your experience and passion!
Hi Jose!
If your dashboards need the authentication for the access it's logical that it demands to enter login and password.
If you want embedded DSW iframe to use same login/password as another application on the same web page where the user already logged in, it's the matter of how to transfer the access to an embedded iframe.
I cannot answer at the moment how to manage this, and pinging @Eduard Lebedyuk: Eduard, do you think it is possible to transfer session to an MDX2JSON app of the embedded DSW iframe?
Hi Kevin!
I examined the article. It has two sources of figures: from EISA and from Andrey's personal research. Both have no relation to InterSystems official benchmarking.
So, the answer is no - nothing Intersystems official here, only 3rd party researches.
Hi Jose!
it's not the matter of DSW, it's the matter of setup IRIS or Caché with an external web server (which is recommended of course).
E.g. check this discussion or the documentation.
Hi Joel!
Finam.ru is a trade broker for MOEX - Russian stock exchange. Previously they had an API to download quotes for any securities. What I see now they at still have the UI to download quotes e.g. in CSV - here is the link do download GAZPROM quotes.
Hi Scott!
First, thanks for mentioning Open Exchange, I appreciate :) Here is the link of Sysmon Dashboards on OEX.
Also, here is the article by @Semyon Makarov, which could help.
The tool just visualizes the data you have %SYSMONMGR, I believe the utility appeared at early versions of Caché.
The visualization is better with DeepSee Web, this will require at least Caché 2014 for REST and JSON.
Also I'll ping @Daniel Kutac for more details who initially introduced the tool
Hi Wolf!
It's not the substitution for Studio, but have you tried InterSystems ObjectScript plugin for VS.Code by @Dmitry Maslennikov?
It became much more sophisticated in recent weeks. It shows method signatures, drills down to methods and documentation, compiles, highlights and many more.
It is cross-platform, free and light-weight, I like it.
What was the issue? Share the code )
Yes, the 1st one is a full match)
@Peter Steiwer, do you plan also to share the short screencast on how to use the tool in the best way? We could deploy it on Community Channel
But on a long distance (very, very long intag string) my approach with $D will start win! (maybe :)
Wow. That(!) simple. Impressive. Bravo, Sean!
Actually, the case is very practical.
We need to know, which of the tags in DC relate to InterSystems Products and Services.
Every post on DC has a Tags field, which is a comma delimited string, consists of any of 150+ tags.
We need to form a Big Tag field, which is filtered Tags field with only the following values: Caché, Ensemble, HealthShare, Intersystems IRIS, DeepSee, iKnow, Atelier, Online Learning, Documentation, WRC.
E.g. this particular post has Tags: Beginner, Caché
Big Tags will be: Caché
My variant is the following. General function of extracting subtag from tagsring which contains certain tags (intag):
ClassMethod SubTag(intag, tag, dlm As %String) As %String
{
for i=1:1:$L(intag,dlm) set intag($p(intag,dlm,i))=""
for i=1:1:$L(tag,dlm) {
set t=$p(tag,dlm,i)
if $D(intag(t)) set subtag($Seq(subtag))=t
}
while $d(subtag($Seq(l))) {
set $p(subtag,dlm,l) = subtag(l)
}
return $G(subtag)
}
And the calling function:
ClassMethod BigTag(tag As %String) As %String
{
set intag="Caché,Ensemble,HealthShare,Intersystems IRIS,DeepSee,iKnow,Atelier,Online Learning,Documentation,WRC"
return ..SubTag(intag,tag,",")
}Usage:
USER>w ##class(Utils.Strings).BigTag("Beginner,Caché,Ensemble")
Caché,Ensemble
USER>w ##class(Utils.Strings).BigTag("Beginner,Caché")
Caché
USER>Sorry, Alexey )
They are clickable for real but on the leaderboard pages. Here is the ObjectScript leaderboard, which you can join if you register on Advent of code site with email - and you'll have normal "white" name, and "green clickable one", if you join via Github or any other applicable for Advent site OpenID provider.
E.g. see the overall "world-wide" leaderboard which is available without authentication.
Hi, Alexey! Greens are clickable )