a c · Feb 10 go to post

On the side of javascript this will do the job.

str={test1:'true',test0:'false'}
Object { test1: "true", test0: "false" }

str1 = JSON.stringify(str)
'{"test1":"true","test0":"false"}'
str1 = str1.replaceAll('"true"','true').replaceAll('"false"','false')
'{"test1":true, "test0":false}'
str = JSON.parse(str1)
Object { test1: true, test0: false }

So i have to do it for python also. True and False replace by true and false.

a c · Mar 19, 2024 go to post

We registered over 40 public repositories. Installing an artifact or registering a repository cause me the same pain.

a c · Mar 19, 2024 go to post

Is using the local/enterprise .m2 repository for essential and checked libs a better alternativ?

a c · May 18, 2023 go to post

Without $Find

ClassMethod Rotations(As %String, As %String) As %Integer
{
    
     $L($P(b_b,a))
}

a c · May 18, 2023 go to post

ClassMethod Rotations(As %String, As %String) As %Integer
{
     $F(b_b,a)-$L(a)-1
}

a c · May 27, 2021 go to post

No good Java Developer uses Maven Central. 80% of needed artifacts are missing, even your own created artifacts. Good Java Developers use there local enterprise repo and keep there project lib clean. Put com.intersystems dependencies into this und you will be satisfied until the need an newer version.