Raj Singh · Sep 30, 2020 go to post

Many code snippets exist for ObjectScript already. You can learn how they work in the VS Code docs here.  And if you're comfortable reading JSON, you can then go and see what's already implemented in the ObjectScript extension in this JSON file. If you don't find what you're looking for, I hope you'll consider building some of your favorites and submitting a pull request!

Raj Singh · Nov 5, 2020 go to post

This is a very common error. You may be in a rush, or doing too much multi-tasking, then open VS Code expecting to see the IRIS icon signifying your favorite programming extension is ready and waiting. Then to your surprise, it's missing! The likely problem is that you haven't opened a folder yet in VS Code. Just do that and you should see the icon again. 

Raj Singh · Dec 28, 2020 go to post

Hello @Werner.Noske. Now that VS Code has replaced Atelier as our cross-platform IDE (Studio is still supported), we have removed the plugin from the Eclipse Marketplace. The page you reference will soon make this clear as well. As @Dmitry Maslennikov says, we encourage developers to follow the guidance in this announcement and move to the VS Code platform if at all possible. Thanks!

Raj Singh · Jan 1, 2021 go to post

Amazing accomplishments in such a challenging year. I salute you all. 

Raj Singh · May 4, 2022 go to post

Hi @Matjaz.Murko. Can you provide a code sample to help clarify your question?

Raj Singh · May 30, 2022 go to post

And if you are lucky enough to have an Apple computer with an ARM chip (with M1 and M2 names so far...) look at the containers with a "-arm64" suffix:

docker-ls tags --registry https://containers.intersystems.com intersystems/iris-community-arm64

Raj Singh · Oct 14, 2022 go to post

@Guillaume Rongier I've had trouble getting this setup to work. Can you share your configuration (settings.json file?) to get VS Code to use irispython?

Raj Singh · Jan 3, 2023 go to post

Hi @Jordan.Everett. Version 2017.2 should work fine. It's not too old of a version. Did the @Yuri Marx article help?

Raj Singh · Jan 11, 2023 go to post

Even quicker way to get there is CMD-E twice (on Mac) or CTRL-E twice (Windows)

Raj Singh · Jan 18, 2023 go to post

Are you sure you are connected to IRIS? One way to check this is to make sure you can browse using the ObjectScript explorer pane.

Raj Singh · Jan 27, 2023 go to post

For those who find this post, a JVM is now included in official InterSystems IRIS images, so it is no longer necessary to build your own. 

Raj Singh · Mar 1, 2023 go to post

That's an important clarification. The command will open the error location in the uneditable generated INT document. You will still need to switch to the CLS/MAC/CSP to make changes.

Raj Singh · Mar 6, 2023 go to post

Just for clarification, the lines starting with `ARG IMAGE = ` replace each other. Only the last one is actually used. I'm not sure why the others  are left in there but I think its so users will know what worked before. So you can simplify the Dockerfile to:

ARG IMAGE=intersystemsdc/iris-community:preview 
FROM $IMAGE 
RUN iris start IRIS
 \ && iris merge IRIS /tmp/merge.cpf
 \ && iris stop IRIS quietly