go to post José Pereira · Feb 28, 2022 Really nice apps in this contest, I'm learning a lot! Congrats to all participants!
go to post José Pereira · Feb 8, 2022 @Henrique Dias True story! And let's go 2022! Congratulations community!
go to post José Pereira · Jan 14, 2022 Hi @Ben Spead! Thank you for warning me! :) Fixed! I usually double check my English writings in text editors like Google Docs, but I missed to check the title... A little explanation here, I'm Brazilian, so a Portuguese native speaker. But it's OK, Portuguese is a kind of brother of Spanish! =)
go to post José Pereira · Jan 7, 2022 For those who are looking for unziping features, Embedded Python (for IRIS 2021.2+) allows you to use zipfile Python lib. For instance: ClassMethod UnZip(pZipFileName As %String, pExtractToDir As %String) [ Language = python ] { #; solution based on this one: https://stackoverflow.com/a/3451150/345422 import zipfile with zipfile.ZipFile(pZipFileName, 'r') as zip_ref: zip_ref.extractall(pExtractToDir) } Or ClassMethod UnZip2(pZipFileName As %String, pExtractToDir As %String) { Set zipfile = $SYSTEM.Python.Import("zipfile") Do zipfile.ZipFile(pZipFileName, "r").extractall(pExtractToDir) } Tested on iris-ml-community:2021.2.0.617.0-zpm
go to post José Pereira · Dec 28, 2021 Hi! Thanks for your code, but I tried it and can't get a file in the directory in the end. In order to get it working, I had to call the method %Save() before the %Close() one: ... d file.CopyFrom(request.HttpResponse.Data) d file.%Save() w file.%Close() I found that by this article by @Gevorg Arutiunian: https://community.intersystems.com/post/save-file-using-nethttprequest
go to post José Pereira · Dec 28, 2021 It was the first time that I joined and could see how difficult the challenges are!! So, congratulations for all winners and other participants as well.
go to post José Pereira · Dec 14, 2021 Hi! Please, check out if this answer from @Eduard Lebedyuk works for you: https://community.intersystems.com/post/query-result-save-csv#comment-11...
go to post José Pereira · Aug 11, 2021 Hi Shreya. This server is temporary down... Please, check this post for more information: https://community.intersystems.com/post/temporary-online-documentation-s...
go to post José Pereira · Jul 28, 2021 My JBL Flip 5 has just arrived!! Great sound quality!!! 🎶🤘 Thanks GM!!
go to post José Pereira · Jun 26, 2021 Hi Thomas! Thanks for your answer. Is there any workaround for now? =)
go to post José Pereira · Mar 9, 2021 Very happy to had the chance of sharing a project with @Henrique.GonçalvesDias. More brains and hands working together it's better!