go to post Evgeny Shvarov · Aug 17, 2016 Hi, Ponnumani. I've changed the title to closer to the question version.
go to post Evgeny Shvarov · Aug 17, 2016 For all the InterSystems Caché newcomers I would strongly recommend using curly braces syntax instead of dot syntax for stack management. So this: For I=1:1:10000 New X Do . Set X=I . Write !,X Can be rewritten to: For I=1:1:10000 New X Do { Set X=I Write !,X }
go to post Evgeny Shvarov · Aug 16, 2016 Tips & Tricks tag introduced. Use it for your Tips and Tricks experience regarding InterSystems Technology.
go to post Evgeny Shvarov · Aug 12, 2016 Hi, Amir!I use CacheUpdater to keep plenty of virtual machines (f.e. 30+ virtual machines) up to date with the certain set of Caché Utilities, which can be updated just with Caché classes download from github repo and compile.CachéGithubCI is continuous integration tool for development with Github repositories as Eduard already mentioned.
go to post Evgeny Shvarov · Aug 12, 2016 Hi, Ponnumani!The right name of the technology is InterSystems Caché, thank you!You can find more than 100 free online courses with exercises on InterSystems Caché and other InterSystems products on this site.
go to post Evgeny Shvarov · Aug 10, 2016 Hi, Doug!Yes, it doesn't work now properly. We plan to exclude this option from the menu to use only external links.
go to post Evgeny Shvarov · Aug 3, 2016 Hi, Michal! Just fixed it for you.You had the subscription to content types due to the bug, like described here.Now you have "healthy" subscription to new posts only (one time) and you can turn it off in your settings page.
go to post Evgeny Shvarov · Aug 1, 2016 Hi, Jose!You can use Log method of %Exception class.Here is the related discussion.
go to post Evgeny Shvarov · Jul 31, 2016 I can recommend also this very simple but robust source control tool. It simply exports class to the certain directory after every compilation in Studio and loads it to Studio if there is updated version on disk.It imports/exports all the classes, routines and dfi's in namespace and can do it even in UDL form.
go to post Evgeny Shvarov · Jul 29, 2016 Alex, thanks for the bright article!Does it mean that we should substitute all $I() for $S() immediately and get the performance boost?Are there any cases, where we should keep $Increment instead of $Sequence?
go to post Evgeny Shvarov · Jul 28, 2016 Lexi, you are right. I thought about Year->Month->Day hierarchy with Year->MonthYear-> DayMonthYear time functions for the levels of course.And the "wrong" hierarchy, in this case, would be Year->MonthNumber-DayNumber because if you have more than one year in the facts you'll get several years for one January.
go to post Evgeny Shvarov · Jul 28, 2016 Hi, Scott.There was a bug in subscriptions.In your subscriptions overview you should see 0 for Content type subscriptions.I just cleared that for you, hope you will not get any silly notifications.Colleagues!If you get annoying email notifications and cannot turn them off, please contact me, or comment in this post.
go to post Evgeny Shvarov · Jul 27, 2016 Hi, Laura!Not sure if it is an answer, but have you seen Class Explorer app?It can show all the classes in namespace or package.
go to post Evgeny Shvarov · Jul 26, 2016 Hi, Greg!It is filed.But, for the compact view mode there is a button on the home page which solves this:
go to post Evgeny Shvarov · Jul 26, 2016 Yes, it's a pain, but search within tag maybe worth it?BTW you shouldn't scroll through the list - just start typing in tag field, it will find the valid tag for you.
go to post Evgeny Shvarov · Jul 25, 2016 Hi, Greg!You can search within not Community but within a Tag.For example let's search your post with the word "way".There are a lot of results and it's a trick to find your post.But you can dropdown Tag menu in the search result and filter results to Tag. F.e. your post has 'online-learning' tag.Let's do it and see search results then:You can search within several tags simultaneously.Hope that helps.P.S. 'Online learning' is the not very fit tag for this post. Please consider to change it to 'Developer Community' tag.
go to post Evgeny Shvarov · Jul 23, 2016 Hi, Kyle! Thank you, great stuff!The guys in Russian forum says there is a bug in the line:Property Data as %String (MAXLEN=100, MINLEN=200);How can MINLEN be higher MAXLEN?