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)
(195)
Article
(31)
Keywords
Creation time
Last day
Last week
Last month
Last three months
Last year
« Previous
1
2
3
4
5
6
7
8
9
10
11
12
13
14
...
23
Next »
19%
Single sign-on like the big guys
20.06.2022
Home
»
Archive
»
2022
»
Issue 69: Terra...
»
.4' 02 services: 03 keycloak: 04 container_name: keycloak 05 image: quay.io/keycloak/keycloak:17.0.1 06 ports: 07 - 8080:8080
08
environment:
09
- KEYCLOAK
19%
Blending Java with other programming languages
10.04.2015
Home
»
Archive
»
2015
»
Issue 26: OpenS...
»
import java.io.*; 04 import java.util.*; 05 06 public class Readline { 07
08
[...]
09
10 public static final void load(ReadlineLibrary lib) throws UnsatisfiedLinkError { 11 [...]
12
System
19%
Hybrid public/private cloud
30.01.2020
Home
»
Archive
»
2020
»
Issue 55: AWS L...
»
VPC: 04 Type: AWS::EC2::VPC 05 Properties: 06 CidrBlock: 07 Ref: VPCNet
08
Tags:
09
- Key: Name 10 Value: 11 Ref: VPCName
12
13 Forti
19%
How to configure and use jailed processes in FreeBSD
14.03.2013
Home
»
Archive
»
2013
»
Issue 13: IPv6...
»
struct jail 01 main(int argc, char **argv) 02 { 03 struct jail j; 04 int i; 05 [...] 06 /* Populate the jail struct */ 07 memset(&j, 0, sizeof(j));
08
j.version = 0;
09
j.path =
19%
Policy rulesets in cloud-native environments
06.10.2022
Home
»
Archive
»
2022
»
Issue 71: Kuber...
»
a non-private acl", [
08
changeset.name
09
]) 10 } 11 is_create_or_update(actions) { actions[_] == "create" }
12
is_create_or_update(actions) { actions[_] == "update" } opa eval --fail
19%
New features in jQuery 3
11.10.2016
Home
»
Archive
»
2016
»
Issue 35: Persi...
»
.then(
08
function() {console.log( "second callback function"); },
09
function(e) {console.log(e.message);} 10 ); 11
12
deferred.resolve(); If Listing 1 has registered
19%
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