Hey Developers! Here is a digest of new solutions and applications submitted to the InterSystems Open Exchange in September 2021.
General stats:
21 new apps
507 published apps in total
603 downloads in September
1338 developers joined
New applications (21)
AlertDashboard by John Pan
Use DeepSee to create a dashboard to show abnormal conditions of Production operation.
pop-song-analytics by Henry Hamon Pereira
Pop Songs analytics from the last decades
Analytics OKR by YURI MARX PEREIRA GOMES
This is an analytic app for OKR - Objective and Key Results
iris-analytics-for-money by Oliver Wilms
IRIS Analytics solution for money (not yet)
promjet-stats by Evgeniy Potapov
Statistics from promjet.ru site compared to Yandex.Metrika statistics
ERP Plenum by Jose Sampaio
Now have a unified information for managing your business!
iris-analytics-datastudio by Dmitry Maslennikov
Google DataStudio connector to InterSystems IRIS Analytics (DeepSee)
Med-Sync: HackMIT 2021 by Rohan Mehta
Revolutionizing blood glucose tracking
Beez-Woman-Menstrual-Tracker by Katie Le
A one-stop-shop for tracking women's reproductive health
FHIRDemoWithAPIKey by Patrick Jamieson
Simple FHIR application to retrieve patients and observations
FHIROktaIntegration by Patrick Jamieson
Example FHIR application that uses OAuth 2.0 and Okta.
MedTracker by Nicolas Camenisch
Medication tracking and drug identification
config-copy by Lorenzo Scalese
Helper to copy the config from an IRIS instance to another
Maternal Assistant by James Zhang
We built a solution for maternal physicians in South Africa to quickly and effectively conduct their examinations (5th place InterSystems winner)
OMNI-Lab by Alex Anderson
OMNI-Lab is a full featured multi-lab LIMS solution
csv2table by Evgeny Shvarov
Example on how to import CSV to any existing table
PKI-Script by Lorenzo Scalese
IRIS Public Key Infrastructure helper
Unqork by Elena G
No-code platform for enterprise
OncoSNIPER by Elena G
Discover new therapeutic targets and biomarkers
Contrast&Care by Elena G
Management solution for contrast product injections
Fhirgure by Joey Koh
Helping neurodiverse employees at book medical appointments.
New releases (14)
AnalyzeThis by Peter Steiwer
v1.2.4

Fixing ZPM version


DeepSeeWeb by Anton Gnibeda
v3.1.24 v3.1.25 v3.1.26
// Define dsw object in window using this interface:
export interface IDSW {
    onFilter: (e: IWidgetEvent) => void;
    onDrill: (e: IWidgetEvent) => void;
}
// Widget event
export interface IWidgetEvent {
    index: number;
    windget: IWidgetInfo;
    drills?: IWidgetDrill[];
    filters?: string;
}
// Example:
window.dsw = {
    onDrill: (data) => {
         // handle drill event here
    }, 
    onFilter: (data) => {
         // handle filter event here
    }
}
v3.1.27
// Extended interface for widget event
export interface IWidgetEvent {
    type: WidgetEventType;
    index: number;
    widget: IWidgetInfo;
    drills?: IWidgetDrill[];
    filters?: string;
    datasource?: string;
}

// Example
window.addEventListener('message', e => {
    const event = e.data as IWidgetEvent;
    switch (event.type) {
        case 'drill':
            // code ... 
            break;
        case 'filter': 
            // code ... 
            break;
        case 'datasource': 
            // code ... 
            break;
    }
});
v3.1.28

Config-API by Lorenzo Scalese
v1.1.0

Add mirroring configuration support.

v1.1.1

Enhancement : export configuration.

v1.1.2

Fix export config to file


Serenji by John Murray
v3.2.0

JSON2Persistent by Michael Braam
v1.0.3

Added REST API


Kano MDM by Ludmyla Valerko
v2021.1

New logo


CubeEventMonitor by Samuel Duncan
v0.1.8

DBeaver by Serge Rider
v21.2.0

Top 10 downloads of the month
VSCode-ObjectScript
by Dmitry Maslennikov
75

PythonGateway
by Eduard Lebedyuk
36

AlertDashboard
by John Pan
22

ObjectScript Package Manager
by Evgeny Shvarov
21

pop-song-analytics
by Henry Hamon Pereira
15

WebTerminal
by Nikita Savchenko
13

Caché Monitor
by Andreas Schneider
12

iris-analytics-template
by Evgeny Shvarov
12

Analytics OKR
by YURI MARX PEREIRA GOMES
12

iris-analytics-for-money
by Oliver Wilms
12

Top 10 downloads of all time
VSCode-ObjectScript
by Dmitry Maslennikov
1,584

iris-history-monitor
by Henrique Gonçalves Dias
1,111

PythonGateway
by Eduard Lebedyuk
995

Serenji
by John Murray
419

ObjectScript Package Manager
by Evgeny Shvarov
287

AnalyzeThis
by Peter Steiwer
262

WebTerminal
by Nikita Savchenko
247

Caché Monitor
by Andreas Schneider
191

DeepSeeButtons
by Peter Steiwer
178

ObjectScript-Math
by Peter Steiwer
169