27%
11.06.2014
installation of Kolab 3.0 and later is a matter of one or two cups of coffee and does not impose too many requirements on the admin. The Kolab developers recommend a recent CentOS (preferably 6.4) as the basis ... Open standards and open source are requisite in Kolab groupware. The alpha release of version 3.1 hugely extended the number of compatible clients with the CalDAV and CardDAV protocols, making Kolab
27%
09.10.2017
three to examine in this article. Two are popular Internet services from Twitter [2] and WordPress [3]. Because of the high number of users and open interfaces, you can expect an affinity with REST
27%
05.03.2013
other values passed in end up in the rest
array. The three dots (splats) show that the caller can pass in an arbitrary number of values. The
a 1,2,3,4,5,6
statement thus would output 3,4,5,6
.
If you
27%
12.09.2013
readable. In JavaScript, that would be comparable to the readystatechange event of the XMLHttpRequest object.
Listing 6
burn3.pl
01 #!/usr/bin/perl
02
03 use common::sense;
04 use DBI;
05
27%
25.03.2020
JhbGciOiJSUzI1NiIsImtpZCI6InNCRjdsTmJHeGVoUTdGR0ZTemsyalpCaGhqclhoQjVBLXdpZnVxdVNDbXcifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJkZWZhdWx0Iiwia3Vi
27%
09.12.2019
75150 29909.0 0.4 8.2 for j in range(0, p_num):
141 75000 100783.0 1.3 27.6 vel[i,j] = vel[i,j] + 0.5*dt*( force[i,j] * rmass + acc[i,j] )
142
27%
09.01.2013
free license from GitHub [3]. You can install the software using the Python Package Manager, Pip:
pip install boto
To use the library, you first need to generate a connection object that maps
27%
11.02.2016
, in_started date, in_expires date) RETURNS void
02 LANGUAGE plpgsql
03 STRICT
04 AS $$
05 BEGIN
06 <>
07 LOOP
08 UPDATE subscriptions
09 SET (started, expires) = (in_started, in
27%
09.06.2018
handling, string processing, and mathematical operations [3].
Communication between the DBS and the outside world can be established using either a database console in a terminal, intermediary software
27%
14.08.2017
=> 'sqlite3',
09 :database => 'contacts.sqlite'
10 )
11
12 class Contact < ActiveRecord::Base
13 end
14
15 get '/contacts' do
16 @contacts = Contact.all
17 @response_message = {data: @contacts, success