The kintone Advent Calender is also nearing the end.
Cybozu.com developer network In order to successfully manage the popular cloud-based business system platform "kintone". There is zendesk.com/hc/ja). "Kintone Urban Legend" posted on the 21st day of kintone Advent Calendar 2015 was a hot content for those who are riding kintone.
The 22nd day of kintone Advent Calender was from YasutakaShinomiya How to use the cybozu.com developer network. The second article that was introduced. In addition, I would like to introduce the sequel (Part 2) with ** achievements ** in order to use (master) kintone conveniently.
** Developer treasure chest developer network **
As of December 21, 2015, "cybozu.com developer network" has ** 3150 ** registered members. It's been about a year and eight months since it opened, but it's been used by many people. You can see that PV is also rising gradually. (The graph is displayed in kintone!)
** Changes in the number of community members ** (Beautiful direct proportion)
** PV ** (I've grown thanks to many people)
The "cybozu.com developer network" has a community corner for members. At this time, more than ** 600 ** questions and more than ** 2000 ** answers. On average, you get three or more answers per question.
The number of kintone developer licenses issued exceeds ** 1500 **. It is one of the benefits of community members, but it is calculated to occupy ** 45% ** (number of issues / members). You can apply from the cybozu.com developer network. It is a kintone license for development purposes that can be used indefinitely in principle unless it is deleted by yourself.
So far, we have delivered ** 120 ** notifications speedily. Community members can catch up on the announcement immediately by following it. Keep an eye on the latest information. Click here for How to follow notifications.
--Advance notice of API update --Updates for Tips and sample articles --Update of plugin articles --Cybozu CDN additional notice etc
We have released ** 23 ** libraries such as jQuery, AngularJS, FullCalendar, Marked.js, Spin.js. As a general rule, I add the library once a month, but my personal favorite is Moment.js. In business systems, date processing such as the end of the month and the number of days in the period is convenient with this Moment.js. For example, it looks like this.
moment.js
//Display the difference between two dates in "◯ days △ hours"
var elText = "";
var fromDate = moment();
var toDate = moment(record['DateTime']['value']); // record:Value of argument event
if (toDate.diff(fromDate, 'days') > 0) {
elText += toDate.diff(fromDate, 'days') + "Day";
}
if (toDate.diff(fromDate, 'hours') >= 0) {
elText += toDate.diff(fromDate, 'hours') % 24 + "time";
}
There are other examples using Moment.js, so let's check it out.
--Use Moment.js to customize the format of date and time fields -Record work completion date and contact person using process management -Automatically number and register records -Add a background color to the record that the logged-in user is in charge of
The lineup for linking kintone and other systems with data is also substantial. In addition to the official Java and iOS, we have released a total of ** 8 ** SDKs such as Ruby, .NET, Python, PHP, R by volunteers. The feature is that the source code is open to the public on Github etc., so engineers can customize it so that it is easy for them to use. In addition, we have all the examples, so please look forward to future version upgrades.
Kintone can read CSV from the browser, but cannot read detailed data (sub-table function) such as slips. That's where the "kintone command line tool" comes in. Moreover, the lineup of Windows (32bit / 64bit), Mac, Unix versions.
You can learn a lot from the "cybozu.com developer network", but there are times when you want to ask the instructor directly and wish you had the right teaching materials. rest assured. Offline community activities are also active on the "cybozu.com developer network". We are also announcing the information on the holding of a study session "** kintone devCamp **" for engineers, mainly hands-on. We have already held ** 8 ** study sessions in 2015, so check out the recent reports.
-Kintone devCamp 2015 event report! (1/2) -Kintone devCamp 2015 event report! (2/2) ―― What is the kintone developer's commitment? Behind the scenes of kintone development
I introduced "How to use cybozu.com developer network" with achievements. In order to further increase the satisfaction of the ever-increasing community members, we would like to make the “cybozu.com developer network” easier to find, understand, and use in 2016.
So it was part 2.
-How to use cybozu.com developer network (Part 1) * * (Part 1) is named arbitrarily * --How to use cybozu.com developer network (Part 2) * * This post *
Tomorrow's kintone Advent Calender is uncle Cloud, saito_sakae.
Recommended Posts