go to post Julius Kavay · Sep 13, 2022 Some comments... (1) you can generate a string with the necessary commas, (2) also, the variable "l" is unnecessary and (3) after assigning to "m" the length of the first word, start the for-loop with the next (second) word... According to problem description, the string will never be empty, so an early "q 0" is also not necessary and for the case, this happens, the first piece of the string will have a length of 0. Parameter WhiteSpace = {$C(9,10,13,32,160)}; ClassMethod Short(t) As %Integer { s t=$zstrip($TR(t,..#WhiteSpace,$tr($j("",$l(..#WhiteSpace))," ",",")),"<=>",",") s m=$L($P(t,",")) f i=2:1:$L(t,",") {s n=$L($P(t,",",i)) s:n<m m=n} q m }
go to post Julius Kavay · Sep 13, 2022 In case, it's not a typo, tell me the secret of how to "shave symbols"
go to post Julius Kavay · Sep 13, 2022 You count the alpha-only words, "Let's, 21inc, ..." would't pass the check. So I changed your code to ClassMethod findShort(s) As %Integer { s s=" "_s_" " f i=1:1 { ret:s?@(".e1"" """_i_"anp1"" "".e") i } } I hope, it's OK...
go to post Julius Kavay · Sep 13, 2022 In case, the shortest word is longer then 200 chars, than the result will be wrong. Instead of using a constant (200) s l=$L(t,","),m=200 f i=1:1:l {s n=$L($P(t,",",i)) s:((n>0)&&(n<m)) m=n} use a more generic approach s l=$L(t,","),m=$L($P(t,",")) f i=2:1:l {s n=$L($P(t,",",i)) s:((n>0)&&(n<m)) m=n} Also, removing the unnecessary delimiters (commas) simplifies the code too ClassMethod Short(t) As %Integer { s t=$zstrip($TR(t,$C(9,10,13,32,160),",,,,,"),"<=>",",") s m=$L($P(t,",")) f i=2:1:$l(t,",") {s n=$L($P(t,",",i)) s:n<m m=n} q m }
go to post Julius Kavay · Sep 13, 2022 A small change (two bytes longer) to your solution makes it perfect, I think, for all cases ClassMethod findShort(s) As %Integer { f i=1:1 ret:$locate(" "_s_" "," [^ ]{"_i_"} ") i } BUT, and that's, what I want to say: this function is an awesome demonstration of economic nature of ObjectScript in comparison to Java. Your one-liner vs. a whole page of code... I love ObjectScript! Sorry, that had to be said...
go to post Julius Kavay · Sep 2, 2022 Take a look on the documentation of an (old) Cache instance (download the latest Cache 2018.x from WRC, if neccessary). There is a ZEN tutorial. You can follow the samples on IRIS, the ZEN classes are part of IRIS installation. Do not ask me for details, I have never used ZEN.
go to post Julius Kavay · Aug 17, 2022 I'm sure, someone has a more elegant solution, anyway, I do it the quick-and-dirty way: ClassMethod Lines(nsp = {$namespace}) { s (cls,sum)="" s glo=$na(^|"^"_##class(%SYS.Namespace).GetGlobalDest(nsp,"oddDEF")|oddDEF) f {s cls=$o(@glo@(cls)),mth="" q:cls="" f s mth=$o(@glo@(cls,"m",mth)) q:mth="" s sum=sum+$g(^(mth,30)) } q sum }
go to post Julius Kavay · Aug 15, 2022 The only tricky thing is the (web)management portal. Put the following few lines into a "test.html" file and the open it with your favorite browser. <html> <head></head> <body> A simple text with some spaces<br> <pre>A simple text with some spaces</pre> </body> </html> You see the difference?
go to post Julius Kavay · Aug 15, 2022 Did you check this or are you just saying that? What does this query show? select MyColumn, length(MyColumn) from TableA
go to post Julius Kavay · Jul 27, 2022 You can take the line from your own code, but with a suitable parameter Set BASE64=BASE64_file.Read(someCount) // someCount = aNumber * 3 For example 30000 instead of 32000. By the way, you read (8 bit) bytes, so there is no need to do the output-UTF8 conversion.
go to post Julius Kavay · Jul 27, 2022 First of all, it's meaningless to post several KB of raw data. Either provide it somewhere for download or make an attachment (if possible). Second, Base64 encodings converts 3 (incoming) bytes into 4 (outgoing) bytes, this means you always (except the last one) have to read multiple of 3 bytes at once, convert it, and put into the output stream. Your file.Read() reads 32000 bytes, which is NOT a multiple of 3!
go to post Julius Kavay · Jul 9, 2022 After spending about 30 seconds on Google, I found following links https://www.astm.org/e1394-97.html // ?? https://toolkits.horiba-abx.com/documentation/download.php?id=71068 // downloads a pdf https://meganorms.com/st-astm-e1394-97.html https://www.iso.org/obp/ui/#iso:std:iso:18812:ed-1:v1:en ... and many other links Don't ask me,how accurate they are...
go to post Julius Kavay · Jul 4, 2022 I have an (some ten years old) one which I use in the %ZSTART routine. Sometimes (for maintenance or whatever other reasons) you have to (re)start Cache and nowdays IRIS, but you want to start just some of the automatic processes listed in %ZSTART. If you forgot to disable those other before shutdown a init-file comes handy to disable things before start. A sample section looks like this: [Start] # 0 = do not start # 1 = start LoginServer = 1 UserLogin = 0 SystemTasks = 1 UserTasks = 0 I added some more comments to the class, you can download the InitFile.xml (class export) from my FTP server (which will be open for the next few days). Addr: ftp.kavay.at User: dcmember Pass: member-of-DC
go to post Julius Kavay · Jul 1, 2022 sorry, in front of me is a linux... but what about iris terminal <instanceName> Does this work for you?
go to post Julius Kavay · Jun 28, 2022 The general syntax for calling routines from another namespace is: do label^|namesapce|routine where - you can omit the label and - namespace is either the name of the namespace (like set namesapce="USER") or the path to the database (preceded by two carets), where the routine resides. I see right now, Config.MapGlobals accesses the ^SYS global via the path to the database (take a look at the Storage section) - so in theory, you can call all classmethods from the above class as: do zClassmethodname^|"%SYS"|Config.MapGlobals.1(args...) merely, I do NOT recommend to do this (the cass is in deployed mode, so we do not know, what the code really does and (instance)methods are private, so you can't call them from outside).
go to post Julius Kavay · Jun 28, 2022 First, the correct (or better) way for the above code snipet were: new $NAMESPACE zn "%SYS" do ##class(Config.MapGlobals).Delete(...) quit second, one can call routines (and (class)methodes are compiled to rotines) from another namespace by using extended syntax, but in that case such a routine uses the globals (if the routine does a global access) from the CALLING namespace. In Your case this won't work because the Config.MapGlobals uses globals which resides in %SYS namespace and not in the namesspace you are in.
go to post Julius Kavay · Jun 14, 2022 Sure, you can check some key points:- the size of your PDF-file (in bytes) must be the same as the size of the context.strDocument- the size of the encoded stream must be 1.33 times of the unencoded stream (see below)- the second parameter of the Base64Encode() method must be set to 1, else you get a stream with line breaks! set docSize = context.strDocument.Size set encSize = context.strDocumentEncoded.Size if -docSize#3+docSize*4/3-encSize { write "Base64 stream has wrong size" } Your "old" version sent a string, the new version should send a stream - is there everything OK? Just double check all the recent changes.
go to post Julius Kavay · Jun 13, 2022 If you have a (whatever) class with an property like: Property propName As %Stream.GlobalCharacter; and you have an instance of that object in a variable obj then a command like the below write obj.propName --> nn@%Stream.GlobalCharacter shows you the object reference, which is (formal) an integer number followed by an '@' symbol followed by the name of the class. With other words, what you see is correct.