search:
News
Articles
Tech Tools
Subscribe
Archive
Whitepapers
Digisub
Write for Us!
Newsletter
Shop
DevOps
Cloud Computing
Virtualization
HPC
Linux
Windows
Security
Monitoring
Databases
all Topics...
Search
Login
Search
Refine your search
Sort order
Date
Score
Content type
Article (Print)
(265)
Article
(48)
Blog post
(1)
Keywords
Creation time
Last day
Last week
Last month
Last three months
Last year
« Previous
1
...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
...
32
Next »
14%
OrientDB document and graph database
09.08.2015
Home
»
Archive
»
2015
»
Issue 28: SSD RAID
»
.translation embeddedmap;
09
10 create class Relation extends E; 11 create property Relation.from date;
12
13 create class Appear extends E; 14 create property Appear.chapter embeddedlist integer 15 16 insert into Person
14%
Processing streaming events with Apache Kafka
02.02.2021
Home
»
Archive
»
2021
»
Issue 61: Secur...
»
: records) { 08 String key = record.key();
09
Payment value = record.value(); 10 System.out.printf("key = %s, value = %s%n", key, value); 11 }
12
} 13 } 14 [...] Kafka Ecosystem
14%
Elastic Beanstalk
29.10.2013
Home
»
Articles
»
-e-mnpsy5bpzk-stack-AWSEBCloudwatchAlarmHigh-198IBXQXHBDPH 2013-05-08 20:
09
:25 INFO Application available at DanApp-env-ceqwdhduep.elasticbeanstalk.
com
. 2013-05-08 20:
09
:25 INFO Successfully launched
14%
Programming with OpenMP
07.11.2011
Home
»
HPC
»
Articles
»
#pragma omp parallel for shared (sum) private (i)
12
for ( i=0; i < 1000000; i++) { 13 #pragma omp critical (sum_total) 14 sum = sum + a[i]; 15 } 16 printf("sum=%lf\n",sum);
17
14%
Extending OpenNebula with hooks
09.01.2013
Home
»
Archive
»
2013
»
Issue 18: New W...
»
=/var/log/one/accounting.log 04 05 case "$1" in 06 "on"|"off") 07 mode=$1 08 shift
09
;; 10 *) 11 echo "$0 error: wrong mode." >&2
12
exit 1 13 ;; 14 esac 15 16 if [ "$1
14%
Serverless run times with custom Bash AWS Lambda layers
25.03.2020
Home
»
Archive
»
2020
»
Issue 56: Secur...
»
"Effect": "Allow", 06 "Principal": { 07 "Service": "lambda.amazonaws.
com
" 08 },
09
"Action": "sts:AssumeRole" 10 } 11 ]
12
} You're almost there. You just need
14%
Web applications with Flask
14.03.2013
Home
»
Archive
»
2013
»
Issue 13: IPv6...
»
rel="stylesheet" href="style.css" /> 05 {% endblock %} 06 07 08
09
{% for item in seq %} 10
{{ item }}
11 {% endfor %}
12
13 14