Learning Documentation Community Open Exchange Global Masters Certification Partner Directory Ideas Portal
Developer Community
  • Posts
    • InterSystems Official
    • Articles
    • Questions
    • Announcements
    • Discussions
    • Tags
  • Events
    • Tech Article Contest
    • Programming Contest
    • InterSystems Ideas Contest
    • Event Calendar
  • Products
    • InterSystems IRIS
    • InterSystems IRIS for Health
    • HealthShare
    • TrakCare
    • Caché
    • Ensemble
    • InterSystems Analytics (DeepSee)
    • InterSystems Text Analytics (iKnow)
  • Jobs
    • Job Opportunity
    • Job Wanted
  • Members
  • About
    • About Us
    • FAQ
    • Feedback
    • Report an Issue
    • Share an Idea
    • Code of Conduct
    • Contact Us

EN

Search by posts, members, tags
Language
EN|
ESPTJPCNFREN
New post
  • Profile page
  • Posts (246)
  • Replies (3,099)
  • Mentions (383)
  • Official certification & Credly badges (0)
  • Global Masters badges (108)
  • Followers (67)
  • Following (1)
AllAccepted answers
    go to post
Robert Cemper · Feb 3, 2022

Big THANKS to the whole community for the interest and the trust in my contribution,
Not to forget to thank the excellent support team and the fruitful cooperation within the community!

2 0 https://community.intersystems.com/post/top-intersystems-community-contributors-2021?page=53#comment-180206
    go to post
Robert Cemper · Feb 3, 2022

yes  GREAT !  covers all situations.

0 0 https://community.intersystems.com/post/code-golf-paired-opposites?page=53#comment-180071
    go to post
Robert Cemper · Feb 2, 2022

this works unlimited but has no exit if none unmatched found
method length = 64,
and it shows only the abs. value  38 instead of -38

s y=$lfs(o) f i=1:1 s a=$lf(y,i),b=$lf(y,-i) ret:a+b&'(a*b) i

0 0 https://community.intersystems.com/post/code-golf-paired-opposites?page=53#comment-179976
    go to post
Robert Cemper · Feb 2, 2022

but it  fails if the unpaired is < -9 as in the ref.example

"-110,110,-38,-38,-62,62,-38,-38,-38"    and doesn't stop

0 0 https://community.intersystems.com/post/code-golf-paired-opposites?page=53#comment-179966
    go to post
Robert Cemper · Feb 2, 2022

NICE.  but runs forever if there is no unpared. 
And why starting with  -9 ?

0 0 https://community.intersystems.com/post/code-golf-paired-opposites?page=53#comment-179946
    go to post
Robert Cemper · Feb 2, 2022

size = 65   return 0 if all pared;   { 0 is excluded for pairing }

ClassMethod Solve(o As %String) As %Integer
{
 s y=$lfs(o) f i=1:1:$ll(y) s c=$li(y,i) ret:'$lf(y,-c) c
 q 0
}
3 0 https://community.intersystems.com/post/code-golf-paired-opposites?page=53#comment-179856
    go to post
Robert Cemper · Feb 2, 2022

and you get 0 if numbers are paired !

0 0 https://community.intersystems.com/post/code-golf-paired-opposites?page=53#comment-179821
    go to post
Robert Cemper · Feb 2, 2022

Special thanks for defining the clear rules and excluding 'dirty' tricks  yes

1 0 https://community.intersystems.com/post/code-golf-paired-opposites?page=53#comment-179781
    go to post
Robert Cemper · Feb 1, 2022

#1 convert both dates to $HOROLOG format and substract it

# 2 use $system.SQL.Functions.DATEDIFF()

3 0 https://community.intersystems.com/post/date-difference?page=53#comment-179686
    go to post
Robert Cemper · Feb 1, 2022

Welcome on board !yes

1 0 https://community.intersystems.com/post/meet-jos%C3%A9-pereira-%E2%80%93-new-developer-community-moderator?page=53#comment-179661
    go to post
Robert Cemper · Jan 31, 2022
set def=##class(%Dictionary.CompiledClass).%OpenId("Sample.Person.JSON")
write def.SqlSchemaName
Sample_Person
write def.SqlTableName
JSON
2 1 https://community.intersystems.com/post/getting-sql-table-name-given-class?page=53#comment-179556
    go to post
Robert Cemper · Jan 31, 2022

example:

set def=##class(%Dictionary.CompiledClass).%OpenId("oex.Dir")
write def.SqlSchemaName
oex
write def.SqlTableName
Dir 

0 0 https://community.intersystems.com/post/getting-sql-table-name-given-class?page=53#comment-179551
    go to post
Robert Cemper · Jan 30, 2022

Video added
 

0 0 https://community.intersystems.com/post/globaltojson-efficient?page=53#comment-179446
    go to post
Robert Cemper · Jan 30, 2022

Video added

0 0 https://community.intersystems.com/post/globaltojson-compact?page=53#comment-179436
    go to post
Robert Cemper · Jan 30, 2022

Video added
 

0 0 https://community.intersystems.com/post/globaltojson-academic?page=53#comment-179441
    go to post
Robert Cemper · Jan 27, 2022

A serious problem I also struggled with.
I think inside IRIS there is not much chance to get across the MAXSTRING limit.
 

0 0 https://community.intersystems.com/post/storing-dynamic-object-properties-larger-3641144-symbols?page=53#comment-179316
    go to post
Robert Cemper · Jan 27, 2022

??? OEX Conrests shows:  Start on March 7th, 2022.
I hope Feb. 7th is correct,  ???

0 0 https://community.intersystems.com/post/intersystems-python-contest?page=53#comment-179311
    go to post
Robert Cemper · Jan 27, 2022

factor 64.7 times faster yes

0 0 https://community.intersystems.com/post/how-get-current-date-and-time-yyyymmddhhmmss-format?page=53#comment-179266
    go to post
Robert Cemper · Jan 25, 2022

Take care PUBLIC is a SQL Reserved Verb and may cause some troubles.
https://openexchange.intersystems.com/package/migration-pg-iris-dataset?tab=reviews

0 0 https://community.intersystems.com/post/data-migration-tool-part-i-postgres-iris?page=53#comment-179036
    go to post
Robert Cemper · Jan 21, 2022

Hi Werner,
The default of Namespace USER is to be mapped as Interoperability (aka ENSEMBLE) - enabled.
If you create a new namespace, deselect the Interoperability-Enabled checkbox. 

You may of course also just delete Namespace USER and create a new one.
OR remove the mapping directly from iris.cpf. 
 

2 0 https://community.intersystems.com/post/how-delete-ensedi-globals?page=53#comment-178776
  • first
  • ‹ previous
  • …
  • 52
  • 53
  • 54
  • 55
  • 56
  • …
  • next ›
  • last
Robert Cemper
@Robert.Cemper1003
~~ retired but not tired ~~
MOD
Follow
Open Exchange profile

User statistics

Posts
246
Replies
3.1K
Likes
4K
Applications
81
Badges
108
Followers
67
People reached
127.9K
Accepted answers
1.1K
  • Privacy & Terms
  • Guarantee
  • Section 508
  • Contest Terms
  • Cookies Settings
© 2025 InterSystems Corporation, Cambridge, MA. All rights reserved.

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up

Log in or sign up

Log in or create a new account to continue

Log inSign up