Yuri Marx · Jun 14 go to post

This error occurs when the Python library or Python itself that you are using is not yet available at the time the ClassMethod attempts compilation. You need to modify your script accordingly.

Yuri Marx · Jun 11 go to post

The community idea bonus criteria should include ideas with the "ideas contest" status, right? Because the "ideas contest" is also a type of community opportunity, isn't it?

Yuri Marx · Jun 11 go to post

How to earn 6 points in the YouTube video bonus (EpInsights app earned it)?

Yuri Marx · Jun 11 go to post

Hi, I claim the following bonuses:

1. First Article on Developer Community - 2:
2. Second Article On DC - 1:
3. Video on YouTube - 3:
4. Implement InterSystems Community Idea - 4: https://ideas.intersystems.com/ideas/DPI-I-388 (Custom Visualizations for Physicians: Enable physicians to track specific health data using charts and graphs. Physicians can easily monitor trends and make informed clinical decisions)

Yes, I love community articles and the AI bots reads the articles also to learn and return responses to the users.

It was a requirement for a public selection of an interoperability solution at the time.

I remembered when we talked about your initiative at Ready 2025, and I showed you how Apache Camel did it, and I thought it looked similar. Apache Camel is the best at programmatic integration on the market. But I liked the way you did it with your library. Great job!

Apache camel looks like this:

import org.apache.camel.builder.RouteBuilder;

public class FileRouteBuilder extends RouteBuilder {
    @Override
    public void configure() throws Exception {
        // Step 1: Consume text files from the input folder
        from("file:data/input?noop=true") // noop=true leaves source files unchanged
            .log("Processing file: ${header.CamelFileName}")
            
            // Step 2: Route based on file content (EIP Content Based Router)
            .choice()
                .when(body().contains("URGENT"))
                    .log("Routing to critical queue...")
                    .to("file:data/output/critical")
                .otherwise()
                    .log("Routing to regular queue...")
                    .to("file:data/output/regular")
            .end(); // Close choice block
    }
}
Yuri Marx · May 25 go to post

Yes, if you implement the Bank Helper Class to convert from Global String Stream to the Client Message Body like described into this article

Yuri Marx · May 22 go to post

Thank you for reviewing my applications, Robert; I always look forward to it.

Yuri Marx · May 14 go to post

Article Parcelc was translated to portuguese and spanish. So, I claim translation bunus

Yuri Marx · May 12 go to post

Yes, I configured IPC_LOCK using a root privilege into the image construction and worked, thanks

Yuri Marx · Apr 16 go to post

Great article! And you use the most popular languages with globals, including java, python and javascript/node