- Log in to post comments
Can you help us understand why you want each routine exported into its own separate file?
- Log in to post comments
Third choice could be phrased better:
.png)
I suggest "Doesn't matter, I will use Community regardless of interface color."
- Log in to post comments
You need to use the Sorts After operator ]] to do this.
See https://docs.intersystems.com/iris20223/csp/docbook/Doc.View.cls?KEY=GC…
- Log in to post comments
This could be prettier:
- Log in to post comments
I think DC lets you mark more than one response as an answer.
- Log in to post comments
I have logged this at https://github.com/george-james-software/gjLocate/issues/3
- Log in to post comments
There's already an extension to help you with that:
https://marketplace.visualstudio.com/items?itemName=georgejames.gjlocate
- Log in to post comments
Thanks Semion. I added that, and I have now set up an online demo and linked to it from OpenExchange. Please add this bonus.
- Log in to post comments
I've recently been using codetidy as an example codebase. See https://community.intersystems.com/post/gj-codespex-now-supports-exclus…
- Log in to post comments
Also, there's a containerized demo of DX Jetpack at https://github.com/gjsjohnmurray/dx-jetpack-demo (link in the README of the extension too), which I hope will count for the Docker bonus.
- Log in to post comments
Second article related to DX Jetpack is at https://community.intersystems.com/post/gj-codespex-now-supports-exclus…, and it includes a link to a YouTube video.
- Log in to post comments
This seems to be exactly the same vague question as at https://community.intersystems.com/post/queue
- Log in to post comments
And the same applies to https://community.intersystems.com/post/iris-tripleslash-lets-rock-toge…
- Log in to post comments
@Henrique Dias as a minimum please put that gif below the teaser break, so it doesn't show on the home page. People who have a physiological sensitivity to fast-moving images risk being made to feel physically sick when they visit DC to see what's new.
- Log in to post comments
What queue are you referring to here? What images?
- Log in to post comments
In VS Code the "editor.insertSpaces" boolean setting governs whether or not pressing Tab will insert a tab character or a number of space characters (specified in the "editor.tabSize" setting).
"editor.insertSpaces" is one of the settings which can be specified per-language. The command "Preferences: Configure Language Specific Settings..." gives you a language picker, then seeds the Settings Editor filter so you can easily set a language-specific value. Below is a screenshot showing how I can make the Tab key enter the tab character when in a document set to the objectscript-class language.
.png)
You make a good point about how Python-coded methods must be space-indented. VS Code can't help you with this, as it sees the entire .cls document as being objectscript-class language. So I suggest you leave "editor.insertSpaces" at its default (checked / true). The ObjectScript-coded methods won't mind being space-indented.
- Log in to post comments
If you use VS Code you might like to see how one of the extensions in https://openexchange.intersystems.com/package/DX-Jetpack-for-VS-Code shows you all the properties (and other class members, such as methods).
- Log in to post comments
I am now in the running with DX Jetpack for VS Code
- Log in to post comments
I think you need to contact WRC (aka InterSystems Support).
- Log in to post comments
Please see https://community.intersystems.com/post/unc-path-not-recognized#comment… and the post it refers to.
- Log in to post comments
Presumably those problems are only affecting the Community container build, seeing as Online Distribution is offering an ARM64 of the non-Community variant:
.png)
- Log in to post comments
NOTE: ARM Community containers are not available for this Developer Preview #6.
Why is this? The same happened for Preview #5.
- Log in to post comments
Today ICR no longer offers build 589 of Community. It has been replaced by 599. I know this is preview, but I do wish InterSystems wouldn't delete the old build immediately they upload a later build. Those of us using dev containers or CI/CD workflows will suddenly find things broken until we update our scripts. And if we're only watching this DC post to learn about the new version we won't even have been notified yet.
Plus, still no arm64 build...
- Log in to post comments
We need it on https://containers.intersystems.com
.png)
- Log in to post comments
Still no ARM64 version of the Community Edition of this build?
(Asking for a friend; my employer hasn't bought me an M1 / M2 machine yet
)
- Log in to post comments
One of my colleagues just tried using the registration link but got this response from the Global Masters page it leads to:
.png)
- Log in to post comments
You could use the technique I described in https://community.intersystems.com/post/class-projections-and-projectio…
- Log in to post comments
For VS Code's native Search facility to search the server-side code your ISFS workspace gives you access to you must follow the instructions in the "Enable Proposed APIs" section of the extension's README (which is also available here). One of the steps will have to be repeated each time your InterSystems ObjectScript extension gets upgraded from MarketPlace with a new version.
- Log in to post comments
my guess that if we specify port 57772 as the default port in the web server which I'm assuming that would be Apache , we don't have to specify the port in our url
No, if the web server (Apache or any other server) is listening on any port other than 80 (for http protocol) or 443 (for https protocol) your URL needs to tell the client app (e.g. your web browser) to connect to a port that is not the standard one for the specified protocol.
- Log in to post comments