Announcement Evgeny Shvarov · Sep 25, 2017

Hi, Community!

I'm pleased to announce that we deployed a new release of Developer Community.

With this release we introduce:

1. New post type is introduced: Announcement

Choose Announcement as a post type if you want to say about a new product or feature release, about some new services in your company, if it is event announcement or there is a new job position open in your company.

E.g. here is an announcement, this is another example of event announcement and this very post is an announcement too.

Announcement post has "loudspeaker" sign in the post feed. See the examples:

2.

10
0 488
Question Evgeny Shvarov · Sep 4, 2017

Hi, folks!

What could be the best backup/restore strategy for a small (less than 100MB) but very valuable database which is placed on AWS/DO virtual host?

1. Use AWS/DO backup/restore features?

2. External backup (as the most recommended)?

3. InterSystems backup?

4. Globals export to a zipped file?

5. cache.dat copy?

Looking for the most robust and easy to use/implement method of backup and restore in a way "setup and forget" (until it becomes needed :)

2
0 759
Question Evgeny Shvarov · Aug 28, 2017

Hi, folks!

I'm sending emails with %Net.MailMessage.

How can I add a new line for the email body?

The code is:

dim msg as %Net.MailMessage = ##class(%Net.MailMessage).%New()
set msg.Charset="UTF-8"
do msg.TextData.Write("Dear  "_Username)
do msg.TextData.Write("Line1")
do msg.TextData.Write("Line2")
Dear UserLine1Line2

How can I get:

Dear User

Line1

Line2
8
1 1942
Announcement Evgeny Shvarov · Aug 23, 2017

Hi, Community!

For those developers who are attending Global Summit 2017 this year: you have an opportunity to share your solutions, framework, and experience with the rest GS attendees and Developer Community.

On Monday 11th we would have Developer Community Sessions in Tech Exchange Open House (see the agenda).

Every presenter would have 10 minutes for slides and 5 minutes for questions. So we have 6 slots available at the moment.

We would have a live stream of the event on DC YouTube so you would be able to watch it and ask questions in comments to the streaming over Internet.

11
0 745
Announcement Evgeny Shvarov · Aug 8, 2017

Hi, Community!

I'm pleased to announce that we deployed a new release of Developer Community.

This release comes with improved Search.

The updated search feature introduces full-text scan, auto complete for the key words, filters on articles, questions, comments, members and works faster.

Here is the small video on how it works.

Also, we fixed a few bugs and made DC faster.

Hope you like it! 

Stay tuned for the next release and introduce your issues here in comments or and enhancement requests and other issues in the DC Feedback group!

0
0 363
Announcement Evgeny Shvarov · Aug 2, 2017

Hi, Community!

You know we would have a meetup in Boston on the 8th of July August with the following agenda:

   Time

    Topic

 Presenter
  5-30pm  

    Registration and welcome coffee

 
5-55pm     Opening Evgeny Shvarov
6-00pm     Atelier 1.1 Andreas Dieckow, Joyce Zhang, Michelle Stolwyk
6-30pm     REST API in Caché

Fabian Haupt

7-00pm     Coffee break  
7-30pm     Online Learning and Developer Community

Douglas Foster, Evgeny Shvarov

8-00pm     End of the Meetup.
6
0 502
Announcement Evgeny Shvarov · Jul 24, 2017

Hi, Community!

Recently we announced Developer Community Meetup in Cambridge, MA. Let me describe what is it. 

Meetup it's a one evening event where you can enjoy some sessions by presenters (today InterSystems engineers, tomorrow you can be a presenter) and chat with local developers and InterSystems developers, engineers and product managers (depends on who is in town) and discuss your problems, experience, and success with InterSystems technologies.

InterSystems would provide the place, technical sessions, some food and beverages. 

We think the Developer Community would benefit from it.

0
0 334
Announcement Evgeny Shvarov · Jun 30, 2017

Hi, Community!

Hope you have already put in your schedule the visit to InterSystems Global Summit 2017 which will take place on 10-13 of September in remarkable JW Marriott Desert Springs Resort and Spa.

This year we have Experience Lab, The Unconference, and 50 more other sessions, regarding performance, cloud, scalability, FHIR, high availability and other solutions and best practices.

1
0 576
Announcement Evgeny Shvarov · Jun 21, 2017

Hi, Community!

Today we deployed new DC release which delivers.

Better subscriptions

All subscription settings now placed in one page, unified and simplified.
 

You can subscribe to Posts, Tags, Groups and Members and you can view it all, or filter by category on one page.

you can search for the subscription in case it's a lot and alter if you want to subscribe for the comments for every post with a given tag or group.

If you want to turn on or turn off the emailing from the site - there is one switcher for it: receive notifications.

 

Permalinks and answers

Comments and Answers have permalinks now.

2
0 349
Question Evgeny Shvarov · Jun 20, 2017

Hi, Community!

How do you store the source files of your Caché project? What is the directories structure? What are the benefits?

I prefer the following structure:

/cls/package/subpackage/class.cls

/mac/package/routine.mac

/int/package/routine.int

/inc/macro.inc

/dfi/folder/sample.pivot.dfi

Example

Benefits: 

  • folders are packages.
  • easy to understand what type of sources are in the project.

What is your approach?

4
1 1463
Announcement Evgeny Shvarov · Jun 15, 2017

Hi, Community!

I'm pleased to introduce John Murray as a new Developer Community moderator.

John is constantly posting helpful articles and answering questions showing the great knowledge and experience in InterSystems technology.

Recently John kindly agreed to become InterSystems Developer Community moderator and joined InterSystems moderators team!

Here are some details John wants to share:

I am Senior Product Engineer at George James Software (http://georgejames.com), where I have worked for nearly two decades.

8
0 627
Question Evgeny Shvarov · Jun 9, 2017

Hi, Community!

Suppose I have class A with properties P1 and P2.

I want to introduce class B, which would have same records as Class A, but only  one property - P2.

What is the easiest  way to manage it assuming that I would like to use Class A to add records and be available for any operations to Users with Role A.

And I would like to introduce class B for Users with role B for read-only access.  Preferably they shouldn't even be aware of Class A and P1 existence .

What is the easiest way to introduce it and manage it?

Use some proxy-classes?  Property-level security?

10
0 853